Page 1 of 1

Disabling raidcurse

Posted: Sun Oct 31, 2010 1:20 pm
by returNix
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:4420
L2JDP Revision Number:7668
Hey guys, when I disable a GrandBoss curse, it doesnt work.
What can I do?
NPC.properties:
# Disable Raid Curse if raid more than 8 levels lower.
# Caution: drop will be reduced or even absent if DeepBlue drop rules enabled.
# Default: False
DisableRaidCurse = True
And i get curse, even if rb is lv 80..

EDIT:
The raidcurse dont activate when hitting a RaidBoss, it activates when getting into area
So what can i do?

Re: Disabling raidcurse

Posted: Sun Oct 31, 2010 2:18 pm
by LasTravel
What rbs you tried? I tested with 3 rbs and all works fine for me

Re: Disabling raidcurse

Posted: Sun Oct 31, 2010 2:26 pm
by returNix
LasTravel wrote:What rbs you tried? I tested with 3 rbs and all works fine for me
I tried all now, and it happens with Ant Queen and Zaken.
If i hit them out of their area, it works properly.

Re: Disabling raidcurse

Posted: Sun Oct 31, 2010 2:55 pm
by LasTravel
You get raid curse from the data/zones/zone.xml

Code: Select all

    <!-- Zaken -->    <zone id="12020" type="EffectZone" shape="NPoly" minZ="-4815" maxZ="-315">        <stat name="skillIdLvl" val="4515-1;" />        <stat name="chance" val="100" />        <stat name="initialDelay" val="2000" />        <stat name="reuse" val="6000" />        <stat name="affectedLvlMin" val="70" />    </zone>    <!-- Queen Ant -->    <zone id="12022" type="EffectZone" shape="NPoly" minZ="-5947" maxZ="-5547">        <stat name="skillIdLvl" val="4515-1;" />        <stat name="chance" val="100" />        <stat name="initialDelay" val="2000" />        <stat name="reuse" val="6000" />        <stat name="affectedLvlMin" val="50" />    </zone>

Re: Disabling raidcurse

Posted: Sun Oct 31, 2010 3:51 pm
by returNix
LasTravel wrote:You get raid curse from the data/zones/zone.xml

Code: Select all

    <!-- Zaken -->    <zone id="12020" type="EffectZone" shape="NPoly" minZ="-4815" maxZ="-315">        <stat name="skillIdLvl" val="4515-1;" />        <stat name="chance" val="100" />        <stat name="initialDelay" val="2000" />        <stat name="reuse" val="6000" />        <stat name="affectedLvlMin" val="70" />    </zone>    <!-- Queen Ant -->    <zone id="12022" type="EffectZone" shape="NPoly" minZ="-5947" maxZ="-5547">        <stat name="skillIdLvl" val="4515-1;" />        <stat name="chance" val="100" />        <stat name="initialDelay" val="2000" />        <stat name="reuse" val="6000" />        <stat name="affectedLvlMin" val="50" />    </zone>
Thx, I will try.