package engine.devcmd.cmds; import engine.Enum; import engine.devcmd.AbstractDevCmd; import engine.gameManager.BuildingManager; import engine.gameManager.NPCManager; import engine.objects.*; import java.util.ArrayList; public class simulateBootyCmd extends AbstractDevCmd { public simulateBootyCmd() { super("simulatebooty"); } @Override protected void _doCmd(PlayerCharacter pc, String[] words, AbstractGameObject target) { // Arg Count Check if (words.length != 1) { this.sendUsage(pc); return; } if (pc == null) { return; } String newline = "\r\n "; try { int targetID = Integer.parseInt(words[0]); Building b = BuildingManager.getBuilding(targetID); if (b == null) throwbackError(pc, "Building with ID " + targetID + " not found"); else target = b; } catch (Exception e) { } if (target == null) { throwbackError(pc, "Target is unknown or of an invalid type." + newline + "Type ID: 0x" + pc.getLastTargetType().toString() + " Table ID: " + pc.getLastTargetID()); return; } Enum.GameObjectType objType = target.getObjectType(); int objectUUID = target.getObjectUUID(); String output; output = "Booty Simulation:" + newline; switch (objType) { case Building: break; case PlayerCharacter: break; case NPC: break; case Mob: Mob mob = (Mob) target; output += "Name: " + mob.getName() + newline; int max = (int)(4.882 * mob.level + 127.0); if(max > 320){ max = 320; } int min = (int)(4.469 * mob.level - 3.469); output += "Roll Range: " + min + " - " + max + newline; output += "Special Loot:" + newline; if (mob.bootySet != 0) { for (BootySetEntry entry : NPCManager._bootySetMap.get(mob.bootySet)) { ItemBase item = ItemBase.getItemBase(entry.itemBase); if (item != null) { output += "[" + entry.bootyType + "] " + item.getName() + " [Chance] " + entry.dropChance + newline; } } } ArrayList GlassItems = new ArrayList(); ArrayList Resources = new ArrayList(); ArrayList Runes = new ArrayList(); ArrayList Contracts = new ArrayList(); ArrayList Offerings = new ArrayList(); ArrayList OtherDrops = new ArrayList(); int failures = 0; for (int i = 0; i < 100; ++i) { try { mob.loadInventory(); for (Item lootItem : mob.getCharItemManager().getInventory()) { switch (lootItem.getItemBase().getType()) { case CONTRACT: //CONTRACT Contracts.add(lootItem); break; case OFFERING: //OFFERING Offerings.add(lootItem); break; case RESOURCE: //RESOURCE Resources.add(lootItem); break; case RUNE: //RUNE Runes.add(lootItem); break; case WEAPON: //WEAPON if (lootItem.getItemBase().isGlass()) { GlassItems.add(lootItem); } else { OtherDrops.add(lootItem); if (lootItem.getName().toLowerCase().contains("crimson") || lootItem.getName().toLowerCase().contains("vorgrim") || lootItem.getName().toLowerCase().contains("bell")) { output += lootItem.getName() + newline; } } break; default: OtherDrops.add(lootItem); if (lootItem.getName().toLowerCase().contains("crimson") || lootItem.getName().toLowerCase().contains("vorgrim") || lootItem.getName().toLowerCase().contains("bell")) { output += lootItem.getName() + newline; } break; } } } catch (Exception ex) { failures++; } } int respawnTime = mob.getMobBase().getSpawnTime(); if (mob.spawnTime > 0) { respawnTime = mob.spawnTime; } output += "MobBase BootySet: " + mob.getMobBase().bootySet + newline; output += "Mob BootySet: " + mob.bootySet + newline; output += "Tables Rolled On: " + newline; for (BootySetEntry entry : NPCManager._bootySetMap.get(mob.getMobBase().bootySet)) { output += "[" + entry.bootyType + "] " + entry.lootTable + newline; } output += "Time Required To Gain Simulated Booty: " + respawnTime * 100 + " Seconds" + newline; output += "GLASS DROPS: " + GlassItems.size() + newline; output += "RUNE DROPS: " + Runes.size() + newline; output += "CONTRACTS DROPS: " + Contracts.size() + newline; for (Item contract : Contracts){ output += contract.getName() + newline; } output += "RESOURCE DROPS: " + Resources.size() + newline; output += "OFFERINGS DROPPED: " + Offerings.size() + newline; output += "OTHER ITEMS DROPPED: " + OtherDrops.size() + newline; output += "FAILED ROLLS: " + failures + newline; break; } throwbackInfo(pc, output); } @Override protected String _getHelpString() { return "Gets information on an Object."; } @Override protected String _getUsageString() { return "' /info targetID'"; } }