Well, he means every position server gets (10,9,8 and up), there is a double reward.
Your code works like this, or just if server go to the 1st page? Because I have doubt :P
Ahh, that's good then ;)
Surely, it's useful share since there is many old crappy non working codes. Good job :)
For sure it's good and unique* idea :)
* - Here I can quote our Mama Tryskell :D
Try to register it in here java/com/l2jserver/gameserver/handler/VoicedCommandHandler.java inside private VoicedCommandHandler()
also, if _voicedCommandHandler.registerVoicedCommandHandler(new sellbuff()); will show u an error, change it to registerVoicedCommandHandler(new sellbuff());
I don't know exactly how it is on freya, since I don't use it.. :D
Wind rider? I think you mean sword singer? Anyway, go to skills folder, find ID and change <set name="target" val="TARGET_PARTY"/> to <set name="target" val="TARGET_SELF"/>
Search for
else if (command.startsWith("Subclass"))
{
// Subclasses may not be changed while a skill is in use.
if (player.isCastingNow() || player.isAllSkillsDisabled())
{
player.sendPacket(SystemMessageId.SUBCLASS_NO_CHANGE_OR_CREATE_WHILE_SKILL_IN_USE);
return;
}
or something like that and add there player.isInCombat() :)