Hello guys. I have imp,emented the nobess command. It work partial. It set you nobless but don't delete the items needed for nobless. Here is the code:
package handlers.voicedcommandhandlers;
import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
public class Nobless implements IVoicedCommandHandler
{
private static final String[] VOICED_COMMANDS = {"nobless"};
public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
if (command.equalsIgnoreCase("nobless"))
{
if (activeChar.isNoble())
{
activeChar.sendMessage("You are allready Nobless.");
return true;
}
else if (activeChar.getLevel() < 76)
{
activeChar.sendMessage("You need level 75 for Nobless");
return true;
}
else if (activeChar.getSubClasses().isEmpty())
{
activeChar.sendMessage("Try again when you make a subclass");
return true;
}
else if(activeChar.getInventory().getItemByItemId(20191) != null && activeChar.getInventory().getItemByItemId(20191).getCount() >= 30)
{
activeChar.getInventory().destroyItemByItemId("Noblesse", 20191, 30, activeChar, activeChar.getTarget());
activeChar.setNoble(true);
activeChar.broadcastUserInfo();
}
else
{
activeChar.sendMessage("You need 30 Valentine Cake Recipe for have Nobless Status.");
return true;
}
}
return false;
}
public String[] getVoicedCommandList()
{
return VOICED_COMMANDS;
}
}
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
DISCORD :
https://discord.com/users/325653525793210378
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/uthciha-services
https://campsite.bio/utchihaamkt
Question
XtreMpOweR
Hello guys. I have imp,emented the nobess command. It work partial. It set you nobless but don't delete the items needed for nobless. Here is the code:
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.