forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.6 KiB
83 lines
2.6 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.devcmd.cmds; |
|
|
|
import engine.devcmd.AbstractDevCmd; |
|
import engine.gameManager.ZoneManager; |
|
import engine.objects.*; |
|
|
|
public class ZoneSetCmd extends AbstractDevCmd { |
|
|
|
public ZoneSetCmd() { |
|
super("zoneset"); |
|
} |
|
|
|
@Override |
|
protected void _doCmd(PlayerCharacter playerCharacter, String[] words, |
|
AbstractGameObject target) { |
|
Zone zone; |
|
|
|
if (playerCharacter == null) |
|
return; |
|
|
|
if (words.length == 0) { |
|
throwbackError(playerCharacter, "Usage: zoneset npc/mob"); |
|
return; |
|
} |
|
|
|
if (!words[0].equalsIgnoreCase("npc") && |
|
!words[0].equalsIgnoreCase("mob")) { |
|
throwbackError(playerCharacter, "Usage: zoneset npc/mob"); |
|
return; |
|
} |
|
|
|
zone = ZoneManager.findSmallestZone(playerCharacter.getLoc()); |
|
|
|
throwbackInfo(playerCharacter, zone.zoneName + " (" + zone.loadNum + ") " + zone.getObjectUUID()); |
|
|
|
// NPC |
|
|
|
if (words[0].equalsIgnoreCase("mob")) { |
|
|
|
for (NPC npc : zone.zoneNPCSet) { |
|
String out = npc.getName() + '(' + npc.getDBID() + "): "; |
|
throwbackInfo(playerCharacter, out); |
|
} |
|
return; |
|
} |
|
|
|
// Mob |
|
|
|
for (Mob mob : zone.zoneMobSet) { |
|
|
|
String out = mob.getName() + '(' + mob.getDBID() + "): "; |
|
|
|
if (mob.isAlive()) |
|
out += mob.getLoc().x + "x" + mob.getLoc().z + "; isAlive: " + mob.isAlive(); |
|
else |
|
out += " isAlive: " + mob.isAlive(); |
|
|
|
throwbackInfo(playerCharacter, out); |
|
return; |
|
} |
|
|
|
} |
|
|
|
@Override |
|
protected String _getUsageString() { |
|
return "' /zoneset npc|mob'"; |
|
} |
|
|
|
@Override |
|
protected String _getHelpString() { |
|
return "lists entries in zone npc set"; |
|
} |
|
|
|
}
|
|
|