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.
80 lines
2.5 KiB
80 lines
2.5 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.devcmd.cmds; |
|
|
|
import engine.InterestManagement.InterestManager; |
|
import engine.devcmd.AbstractDevCmd; |
|
import engine.gameManager.ChatManager; |
|
import engine.objects.AbstractGameObject; |
|
import engine.objects.CharacterRune; |
|
import engine.objects.PlayerCharacter; |
|
|
|
/** |
|
* |
|
* @author Eighty |
|
* |
|
*/ |
|
public class SetRuneCmd extends AbstractDevCmd { |
|
|
|
public SetRuneCmd() { |
|
super("setRune"); |
|
} |
|
|
|
@Override |
|
protected void _doCmd(PlayerCharacter pcSender, String[] args, |
|
AbstractGameObject target) { |
|
int runeID = 0; |
|
boolean add = true; |
|
try { |
|
runeID = Integer.parseInt(args[0]); |
|
if (args.length > 1) |
|
add = (args[1].toLowerCase().equals("false")) ? false : true; |
|
} catch (NumberFormatException e) { |
|
this.sendUsage(pcSender); |
|
return; |
|
} |
|
if (runeID < 3001 || runeID > 3049) { |
|
throwbackError(pcSender, |
|
"Invalid setrune Command. must specify an ID between 3001 and 3048."); |
|
return; |
|
} |
|
boolean worked = false; |
|
if (add) { |
|
worked = CharacterRune.grantRune(pcSender, runeID); |
|
if (worked) |
|
ChatManager.chatSayInfo(pcSender, |
|
"rune of ID " + runeID + " added"); |
|
else |
|
throwbackError(pcSender, "Failed to add the rune of type " |
|
+ runeID); |
|
} else { |
|
worked = CharacterRune.removeRune(pcSender, runeID); |
|
if (worked) { |
|
ChatManager.chatSayInfo(pcSender, |
|
"rune of ID " + runeID + " removed"); |
|
InterestManager.reloadCharacter(pcSender); |
|
} else |
|
throwbackError(pcSender, "Failed to remove the rune of type " |
|
+ runeID); |
|
} |
|
this.setTarget(pcSender); //for logging |
|
} |
|
|
|
@Override |
|
protected String _getUsageString() { |
|
return "' /setrune runeID [true/false]'"; |
|
} |
|
|
|
@Override |
|
protected String _getHelpString() { |
|
return "Grant or remove the rune with the specified runeID"; |
|
} |
|
|
|
}
|
|
|