Browse Source

More itembase refactor

combat-2
MagicBot 8 months ago
parent
commit
85a179ad47
  1. 60
      src/engine/gameManager/ChatManager.java

60
src/engine/gameManager/ChatManager.java

@ -606,7 +606,7 @@ public enum ChatManager {
if (item != null) //Steal if (item != null) //Steal
if (success) { if (success) {
String name = ""; String name = "";
if (item.getItemBase().getUUID() == 7) if (item.template.item_type.equals(Enum.ItemType.GOLD))
name = amount + " gold "; name = amount + " gold ";
else { else {
String vowels = "aeiou"; String vowels = "aeiou";
@ -619,7 +619,7 @@ public enum ChatManager {
name = "a " + iName + ' '; name = "a " + iName + ' ';
} }
textToThief = "You have stolen " + name + "from " + tar.getFirstName() + '!'; textToThief = "You have stolen " + name + "from " + tar.getFirstName() + '!';
textToVictim = sender.getFirstName() + "is caught with thier hands in your pocket!"; textToVictim = sender.getFirstName() + "is caught with their hands in your pocket!";
//textToOthers = sender.getFirstName() + " steals " + name + "from " + target.getFirstName() + "."; //textToOthers = sender.getFirstName() + " steals " + name + "from " + target.getFirstName() + ".";
} else } else
textToThief = "Your attempt at stealing failed..."; //textToVictim = sender.getFirstName() + " fails to steal from you."; textToThief = "Your attempt at stealing failed..."; //textToVictim = sender.getFirstName() + " fails to steal from you.";
@ -673,22 +673,6 @@ public enum ChatManager {
sendInfoMsgToPlayer(pc, text, 1); sendInfoMsgToPlayer(pc, text, 1);
} }
public static void chatCommanderError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 3);
}
public static void chatNationError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 5);
}
public static void chatLeaderError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 6);
}
public static void chatShoutError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 7);
}
public static void chatInfoError(PlayerCharacter pc, String text) { public static void chatInfoError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 10); sendErrorMsgToPlayer(pc, text, 10);
} }
@ -713,35 +697,16 @@ public enum ChatManager {
sendErrorMsgToPlayer(pc, text, 16); sendErrorMsgToPlayer(pc, text, 16);
} }
public static void chatEmoteError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 17);
}
public static void chatTellError(PlayerCharacter pc, String text) { public static void chatTellError(PlayerCharacter pc, String text) {
sendErrorMsgToPlayer(pc, text, 19); sendErrorMsgToPlayer(pc, text, 19);
} }
// Send Info Message to channels // Send Info Message to channels
public static void chatCommanderInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 3, 2);
}
public static void chatNationInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 5, 2);
}
public static void chatNationInfo(Guild nation, String text) { public static void chatNationInfo(Guild nation, String text) {
chatSystemGuild(nation, text, 5, 2); chatSystemGuild(nation, text, 5, 2);
} }
public static void chatLeaderInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 6, 2);
}
public static void chatShoutInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 7, 2);
}
public static void chatInfoInfo(PlayerCharacter pc, String text) { public static void chatInfoInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 10, 2); chatSystem(pc, text, 10, 2);
} }
@ -750,30 +715,14 @@ public enum ChatManager {
chatSystem(pc, text, 12, 2); chatSystem(pc, text, 12, 2);
} }
public static void chatICInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 13, 2);
}
public static void chatGroupInfo(PlayerCharacter pc, String text) { public static void chatGroupInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 14, 2); chatSystem(pc, text, 14, 2);
} }
public static void chatCityInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 15, 2);
}
public static void chatSayInfo(PlayerCharacter pc, String text) { public static void chatSayInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 16, 2); chatSystem(pc, text, 16, 2);
} }
public static void chatEmoteInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 17, 2);
}
public static void chatTellInfo(PlayerCharacter pc, String text) {
chatSystem(pc, text, 19, 2);
}
public static void chatGroupInfoCanSee(PlayerCharacter pc, String text) { public static void chatGroupInfoCanSee(PlayerCharacter pc, String text) {
HashSet<AbstractWorldObject> distroList = null; HashSet<AbstractWorldObject> distroList = null;
@ -857,11 +806,6 @@ public enum ChatManager {
DispatchMessage.dispatchMsgToAll(msg); DispatchMessage.dispatchMsgToAll(msg);
} }
public static void chatInfo(String text) {
HashSet<AbstractWorldObject> distroList = ChatManager.getAllPlayers(null);
chatSystemSend(distroList, text, 1, 2);
}
public static ChatSystemMsg CombatInfo(AbstractWorldObject source, AbstractWorldObject target) { public static ChatSystemMsg CombatInfo(AbstractWorldObject source, AbstractWorldObject target) {
String text = "The " + target.getName() + " attacks " + source.getName(); String text = "The " + target.getName() + " attacks " + source.getName();
ChatSystemMsg msg = new ChatSystemMsg(null, text); ChatSystemMsg msg = new ChatSystemMsg(null, text);

Loading…
Cancel
Save