92 lines
3.2 KiB
Java
92 lines
3.2 KiB
Java
/*
|
|
This file is part of the HeavenMS MapleStory Server, commands OdinMS-based
|
|
Copyleft (L) 2016 - 2019 RonanLana
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
@Author: Arthur L - Refactored command content into modules
|
|
*/
|
|
package client.command.commands.gm4;
|
|
|
|
import client.MapleCharacter;
|
|
import client.MapleClient;
|
|
import client.command.Command;
|
|
import client.inventory.Equip;
|
|
import client.inventory.InventoryType;
|
|
import client.inventory.Item;
|
|
import client.inventory.manipulator.MapleInventoryManipulator;
|
|
import constants.inventory.ItemConstants;
|
|
import server.MapleItemInformationProvider;
|
|
|
|
public class ProItemCommand extends Command {
|
|
{
|
|
setDescription("Spawn an item with custom stats.");
|
|
}
|
|
|
|
@Override
|
|
public void execute(MapleClient c, String[] params) {
|
|
MapleCharacter player = c.getPlayer();
|
|
if (params.length < 2) {
|
|
player.yellowMessage("Syntax: !proitem <itemid> <stat value> [<spdjmp value>]");
|
|
return;
|
|
}
|
|
|
|
MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
|
|
int itemid = Integer.parseInt(params[0]);
|
|
|
|
if(ii.getName(itemid) == null) {
|
|
player.yellowMessage("Item id '" + params[0] + "' does not exist.");
|
|
return;
|
|
}
|
|
|
|
short stat = (short) Math.max(0, Short.parseShort(params[1]));
|
|
short spdjmp = params.length >= 3 ? (short) Math.max(0, Short.parseShort(params[2])) : 0;
|
|
|
|
InventoryType type = ItemConstants.getInventoryType(itemid);
|
|
if (type.equals(InventoryType.EQUIP)) {
|
|
Item it = ii.getEquipById(itemid);
|
|
it.setOwner(player.getName());
|
|
|
|
hardsetItemStats((Equip) it, stat, spdjmp);
|
|
MapleInventoryManipulator.addFromDrop(c, it);
|
|
} else {
|
|
player.dropMessage(6, "Make sure it's an equippable item.");
|
|
}
|
|
}
|
|
private static void hardsetItemStats(Equip equip, short stat, short spdjmp) {
|
|
equip.setStr(stat);
|
|
equip.setDex(stat);
|
|
equip.setInt(stat);
|
|
equip.setLuk(stat);
|
|
equip.setMatk(stat);
|
|
equip.setWatk(stat);
|
|
equip.setAcc(stat);
|
|
equip.setAvoid(stat);
|
|
equip.setJump(spdjmp);
|
|
equip.setSpeed(spdjmp);
|
|
equip.setWdef(stat);
|
|
equip.setMdef(stat);
|
|
equip.setHp(stat);
|
|
equip.setMp(stat);
|
|
|
|
short flag = equip.getFlag();
|
|
flag |= ItemConstants.UNTRADEABLE;
|
|
equip.setFlag(flag);
|
|
}
|
|
}
|