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.
67 lines
2.2 KiB
67 lines
2.2 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.devcmd.cmds; |
|
|
|
import engine.devcmd.AbstractDevCmd; |
|
import engine.objects.*; |
|
|
|
import java.util.HashMap; |
|
|
|
/** |
|
* |
|
*/ |
|
|
|
public class PrintRunesCmd extends AbstractDevCmd { |
|
|
|
public PrintRunesCmd() { |
|
super("printrunes"); |
|
// super("printstats", MBServerStatics.ACCESS_LEVEL_ADMIN); |
|
} |
|
|
|
public static ItemBase getWeaponBase(int slot, HashMap<Integer, MobEquipment> equip) { |
|
if (equip.containsKey(slot)) { |
|
MobEquipment item = equip.get(slot); |
|
if (item != null && item.getItemBase() != null) { |
|
return item.getItemBase(); |
|
} |
|
} |
|
return null; |
|
} |
|
|
|
@Override |
|
protected void _doCmd(PlayerCharacter pc, String[] words, |
|
AbstractGameObject target) { |
|
|
|
AbstractCharacter tar; |
|
|
|
if (target != null && target instanceof AbstractCharacter) { |
|
tar = (AbstractCharacter) target; |
|
|
|
String newline = "\r\n "; |
|
String output = "Applied Runes For Character: " + ((AbstractCharacter) target).getName() + newline; |
|
|
|
for(CharacterRune rune : ((AbstractCharacter)target).runes){ |
|
output += rune.getRuneBaseID() + " " + rune.getRuneBase().getName() + newline; |
|
} |
|
throwbackInfo(pc, output); |
|
} |
|
} |
|
|
|
@Override |
|
protected String _getHelpString() { |
|
return "Returns the player's current stats"; |
|
} |
|
|
|
@Override |
|
protected String _getUsageString() { |
|
return "' /printstats'"; |
|
} |
|
|
|
}
|
|
|