|
@@ -96,89 +96,88 @@ public class PlayerProfile {
|
|
|
if (userId == 0) {
|
|
|
return false;
|
|
|
}
|
|
|
- else {
|
|
|
- HashMap<Integer, ArrayList<String>> huds = database.read("SELECT hudtype FROM " + tablePrefix + "huds WHERE user_id = " + userId);
|
|
|
|
|
|
- if (huds.get(1) == null) {
|
|
|
- database.write("INSERT INTO " + tablePrefix + "huds (user_id) VALUES (" + userId + ")");
|
|
|
- }
|
|
|
- else {
|
|
|
- for (HudType type : HudType.values()) {
|
|
|
- if (type.toString().equals(huds.get(1).get(0))) {
|
|
|
- hudType = type;
|
|
|
- }
|
|
|
+ HashMap<Integer, ArrayList<String>> huds = database.read("SELECT hudtype FROM " + tablePrefix + "huds WHERE user_id = " + userId);
|
|
|
+
|
|
|
+ if (huds.get(1) == null) {
|
|
|
+ database.write("INSERT INTO " + tablePrefix + "huds (user_id) VALUES (" + userId + ")");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ for (HudType type : HudType.values()) {
|
|
|
+ if (type.toString().equals(huds.get(1).get(0))) {
|
|
|
+ hudType = type;
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- /*
|
|
|
- * I'm still learning MySQL, this is a fix for adding a new table
|
|
|
- * its not pretty but it works
|
|
|
- */
|
|
|
- HashMap<Integer, ArrayList<String>> cooldowns = database.read("SELECT mining, woodcutting, unarmed, herbalism, excavation, swords, axes, blast_mining FROM " + tablePrefix + "cooldowns WHERE user_id = " + userId);
|
|
|
- ArrayList<String> cooldownValues = cooldowns.get(1);
|
|
|
+ /*
|
|
|
+ * I'm still learning MySQL, this is a fix for adding a new table
|
|
|
+ * its not pretty but it works
|
|
|
+ */
|
|
|
+ HashMap<Integer, ArrayList<String>> cooldowns = database.read("SELECT mining, woodcutting, unarmed, herbalism, excavation, swords, axes, blast_mining FROM " + tablePrefix + "cooldowns WHERE user_id = " + userId);
|
|
|
+ ArrayList<String> cooldownValues = cooldowns.get(1);
|
|
|
|
|
|
- if (cooldownValues == null) {
|
|
|
- database.write("INSERT INTO " + tablePrefix + "cooldowns (user_id) VALUES (" + userId + ")");
|
|
|
- mcMMO.p.getLogger().warning(playerName + "does not exist in the cooldown table. Their cooldowns will be reset.");
|
|
|
- }
|
|
|
- else {
|
|
|
- skillsDATS.put(AbilityType.SUPER_BREAKER, Integer.valueOf(cooldownValues.get(0)));
|
|
|
- skillsDATS.put(AbilityType.TREE_FELLER, Integer.valueOf(cooldownValues.get(1)));
|
|
|
- skillsDATS.put(AbilityType.BERSERK, Integer.valueOf(cooldownValues.get(2)));
|
|
|
- skillsDATS.put(AbilityType.GREEN_TERRA, Integer.valueOf(cooldownValues.get(3)));
|
|
|
- skillsDATS.put(AbilityType.GIGA_DRILL_BREAKER, Integer.valueOf(cooldownValues.get(4)));
|
|
|
- skillsDATS.put(AbilityType.SERRATED_STRIKES, Integer.valueOf(cooldownValues.get(5)));
|
|
|
- skillsDATS.put(AbilityType.SKULL_SPLIITER, Integer.valueOf(cooldownValues.get(6)));
|
|
|
- skillsDATS.put(AbilityType.BLAST_MINING, Integer.valueOf(cooldownValues.get(7)));
|
|
|
- }
|
|
|
+ if (cooldownValues == null) {
|
|
|
+ database.write("INSERT INTO " + tablePrefix + "cooldowns (user_id) VALUES (" + userId + ")");
|
|
|
+ mcMMO.p.getLogger().warning(playerName + "does not exist in the cooldown table. Their cooldowns will be reset.");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ skillsDATS.put(AbilityType.SUPER_BREAKER, Integer.valueOf(cooldownValues.get(0)));
|
|
|
+ skillsDATS.put(AbilityType.TREE_FELLER, Integer.valueOf(cooldownValues.get(1)));
|
|
|
+ skillsDATS.put(AbilityType.BERSERK, Integer.valueOf(cooldownValues.get(2)));
|
|
|
+ skillsDATS.put(AbilityType.GREEN_TERRA, Integer.valueOf(cooldownValues.get(3)));
|
|
|
+ skillsDATS.put(AbilityType.GIGA_DRILL_BREAKER, Integer.valueOf(cooldownValues.get(4)));
|
|
|
+ skillsDATS.put(AbilityType.SERRATED_STRIKES, Integer.valueOf(cooldownValues.get(5)));
|
|
|
+ skillsDATS.put(AbilityType.SKULL_SPLIITER, Integer.valueOf(cooldownValues.get(6)));
|
|
|
+ skillsDATS.put(AbilityType.BLAST_MINING, Integer.valueOf(cooldownValues.get(7)));
|
|
|
+ }
|
|
|
|
|
|
- HashMap<Integer, ArrayList<String>> stats = database.read("SELECT taming, mining, repair, woodcutting, unarmed, herbalism, excavation, archery, swords, axes, acrobatics, fishing FROM " + tablePrefix + "skills WHERE user_id = " + userId);
|
|
|
- ArrayList<String> statValues = stats.get(1);
|
|
|
+ HashMap<Integer, ArrayList<String>> stats = database.read("SELECT taming, mining, repair, woodcutting, unarmed, herbalism, excavation, archery, swords, axes, acrobatics, fishing FROM " + tablePrefix + "skills WHERE user_id = " + userId);
|
|
|
+ ArrayList<String> statValues = stats.get(1);
|
|
|
|
|
|
- if (statValues == null) {
|
|
|
- database.write("INSERT INTO " + tablePrefix + "skills (user_id) VALUES (" + userId + ")");
|
|
|
- mcMMO.p.getLogger().warning(playerName + "does not exist in the skills table. Their stats will be reset.");
|
|
|
- }
|
|
|
- else {
|
|
|
- skills.put(SkillType.TAMING, Integer.valueOf(statValues.get(0)));
|
|
|
- skills.put(SkillType.MINING, Integer.valueOf(statValues.get(1)));
|
|
|
- skills.put(SkillType.REPAIR, Integer.valueOf(statValues.get(2)));
|
|
|
- skills.put(SkillType.WOODCUTTING, Integer.valueOf(statValues.get(3)));
|
|
|
- skills.put(SkillType.UNARMED, Integer.valueOf(statValues.get(4)));
|
|
|
- skills.put(SkillType.HERBALISM, Integer.valueOf(statValues.get(5)));
|
|
|
- skills.put(SkillType.EXCAVATION, Integer.valueOf(statValues.get(6)));
|
|
|
- skills.put(SkillType.ARCHERY, Integer.valueOf(statValues.get(7)));
|
|
|
- skills.put(SkillType.SWORDS, Integer.valueOf(statValues.get(8)));
|
|
|
- skills.put(SkillType.AXES, Integer.valueOf(statValues.get(9)));
|
|
|
- skills.put(SkillType.ACROBATICS, Integer.valueOf(statValues.get(10)));
|
|
|
- skills.put(SkillType.FISHING, Integer.valueOf(statValues.get(11)));
|
|
|
- }
|
|
|
+ if (statValues == null) {
|
|
|
+ database.write("INSERT INTO " + tablePrefix + "skills (user_id) VALUES (" + userId + ")");
|
|
|
+ mcMMO.p.getLogger().warning(playerName + "does not exist in the skills table. Their stats will be reset.");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ skills.put(SkillType.TAMING, Integer.valueOf(statValues.get(0)));
|
|
|
+ skills.put(SkillType.MINING, Integer.valueOf(statValues.get(1)));
|
|
|
+ skills.put(SkillType.REPAIR, Integer.valueOf(statValues.get(2)));
|
|
|
+ skills.put(SkillType.WOODCUTTING, Integer.valueOf(statValues.get(3)));
|
|
|
+ skills.put(SkillType.UNARMED, Integer.valueOf(statValues.get(4)));
|
|
|
+ skills.put(SkillType.HERBALISM, Integer.valueOf(statValues.get(5)));
|
|
|
+ skills.put(SkillType.EXCAVATION, Integer.valueOf(statValues.get(6)));
|
|
|
+ skills.put(SkillType.ARCHERY, Integer.valueOf(statValues.get(7)));
|
|
|
+ skills.put(SkillType.SWORDS, Integer.valueOf(statValues.get(8)));
|
|
|
+ skills.put(SkillType.AXES, Integer.valueOf(statValues.get(9)));
|
|
|
+ skills.put(SkillType.ACROBATICS, Integer.valueOf(statValues.get(10)));
|
|
|
+ skills.put(SkillType.FISHING, Integer.valueOf(statValues.get(11)));
|
|
|
+ }
|
|
|
|
|
|
- HashMap<Integer, ArrayList<String>> experience = database.read("SELECT taming, mining, repair, woodcutting, unarmed, herbalism, excavation, archery, swords, axes, acrobatics, fishing FROM " + tablePrefix + "experience WHERE user_id = " + userId);
|
|
|
- ArrayList<String> experienceValues = experience.get(1);
|
|
|
+ HashMap<Integer, ArrayList<String>> experience = database.read("SELECT taming, mining, repair, woodcutting, unarmed, herbalism, excavation, archery, swords, axes, acrobatics, fishing FROM " + tablePrefix + "experience WHERE user_id = " + userId);
|
|
|
+ ArrayList<String> experienceValues = experience.get(1);
|
|
|
|
|
|
- if (experienceValues == null) {
|
|
|
- database.write("INSERT INTO " + tablePrefix + "experience (user_id) VALUES (" + userId + ")");
|
|
|
- mcMMO.p.getLogger().warning(playerName + "does not exist in the experience table. Their experience will be reset.");
|
|
|
- }
|
|
|
- else {
|
|
|
- skillsXp.put(SkillType.TAMING, Integer.valueOf(experienceValues.get(0)));
|
|
|
- skillsXp.put(SkillType.MINING, Integer.valueOf(experienceValues.get(1)));
|
|
|
- skillsXp.put(SkillType.REPAIR, Integer.valueOf(experienceValues.get(2)));
|
|
|
- skillsXp.put(SkillType.WOODCUTTING, Integer.valueOf(experienceValues.get(3)));
|
|
|
- skillsXp.put(SkillType.UNARMED, Integer.valueOf(experienceValues.get(4)));
|
|
|
- skillsXp.put(SkillType.HERBALISM, Integer.valueOf(experienceValues.get(5)));
|
|
|
- skillsXp.put(SkillType.EXCAVATION, Integer.valueOf(experienceValues.get(6)));
|
|
|
- skillsXp.put(SkillType.ARCHERY, Integer.valueOf(experienceValues.get(7)));
|
|
|
- skillsXp.put(SkillType.SWORDS, Integer.valueOf(experienceValues.get(8)));
|
|
|
- skillsXp.put(SkillType.AXES, Integer.valueOf(experienceValues.get(9)));
|
|
|
- skillsXp.put(SkillType.ACROBATICS, Integer.valueOf(experienceValues.get(10)));
|
|
|
- skillsXp.put(SkillType.FISHING, Integer.valueOf(experienceValues.get(11)));
|
|
|
- }
|
|
|
-
|
|
|
- loaded = true;
|
|
|
- return true;
|
|
|
+ if (experienceValues == null) {
|
|
|
+ database.write("INSERT INTO " + tablePrefix + "experience (user_id) VALUES (" + userId + ")");
|
|
|
+ mcMMO.p.getLogger().warning(playerName + "does not exist in the experience table. Their experience will be reset.");
|
|
|
}
|
|
|
+ else {
|
|
|
+ skillsXp.put(SkillType.TAMING, Integer.valueOf(experienceValues.get(0)));
|
|
|
+ skillsXp.put(SkillType.MINING, Integer.valueOf(experienceValues.get(1)));
|
|
|
+ skillsXp.put(SkillType.REPAIR, Integer.valueOf(experienceValues.get(2)));
|
|
|
+ skillsXp.put(SkillType.WOODCUTTING, Integer.valueOf(experienceValues.get(3)));
|
|
|
+ skillsXp.put(SkillType.UNARMED, Integer.valueOf(experienceValues.get(4)));
|
|
|
+ skillsXp.put(SkillType.HERBALISM, Integer.valueOf(experienceValues.get(5)));
|
|
|
+ skillsXp.put(SkillType.EXCAVATION, Integer.valueOf(experienceValues.get(6)));
|
|
|
+ skillsXp.put(SkillType.ARCHERY, Integer.valueOf(experienceValues.get(7)));
|
|
|
+ skillsXp.put(SkillType.SWORDS, Integer.valueOf(experienceValues.get(8)));
|
|
|
+ skillsXp.put(SkillType.AXES, Integer.valueOf(experienceValues.get(9)));
|
|
|
+ skillsXp.put(SkillType.ACROBATICS, Integer.valueOf(experienceValues.get(10)));
|
|
|
+ skillsXp.put(SkillType.FISHING, Integer.valueOf(experienceValues.get(11)));
|
|
|
+ }
|
|
|
+
|
|
|
+ loaded = true;
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
public void addMySQLPlayer() {
|
|
@@ -1175,9 +1174,8 @@ public class PlayerProfile {
|
|
|
if (invite != null) {
|
|
|
return true;
|
|
|
}
|
|
|
- else {
|
|
|
- return false;
|
|
|
- }
|
|
|
+
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
public void setParty(Party party) {
|
|
@@ -1193,9 +1191,8 @@ public class PlayerProfile {
|
|
|
if (party != null) {
|
|
|
return true;
|
|
|
}
|
|
|
- else {
|
|
|
- return false;
|
|
|
- }
|
|
|
+
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
public void removeParty() {
|