Ok pretty simple, I need to make same faction members to be able to slayer each other's eyes out in a siege zone.
I have already implemented an olympiad fix and it looks like this: (L2J Equal int)
if (((L2PcInstance) this).isgood() && ((L2PcInstance) target).isgood() && Config.MOD_GVE_ENABLE_FACTION && !((L2PcInstance) this).isInOlympiadMode() && !((L2PcInstance) target).isInOlympiadMode())
{
((L2PcInstance) this).sendMessage("Cant attack a player from your faction");
sendPacket(new ActionFailed());
return;
}
I just couldn't find the state I had to call for the siege zone and I have very limited free time so I would appreciate it if someone could tell me the condition I had to use in there
Question
xMrPwN
Ok pretty simple, I need to make same faction members to be able to slayer each other's eyes out in a siege zone.
I have already implemented an olympiad fix and it looks like this: (L2J Equal int)
I just couldn't find the state I had to call for the siege zone and I have very limited free time so I would appreciate it if someone could tell me the condition I had to use in there
Thanks in advance
2 answers to this question
Recommended Posts