Page 1 of 1
Seal of Ruler - Core Support
Posted: Sun Apr 11, 2010 5:35 pm
by airyina
I've searched for forums for about 3 hours for an answer to this question. How can I make Seal of Ruler uninteruptable by aggression or hate? The closest answer I've come to is make the skill act like "Scroll of Escape" does. Ok, that is fine and dandy, how do I do that? I'm no noob to Java etc, however I am having problems finding the support for skills in the core. Can someone direct me as to where I can find the functions for skills, more specifically, SoE and SoR?
Thank you.
Re: Seal of Ruler - Core Support
Posted: Sun Apr 11, 2010 5:39 pm
by Probe
you can add a new parameter for skills
<set name="canBeInterrupted" val="false" />
by adding another boolean to L2Skill,
and then search for where skills are interrupted in core and put a check the to not interrupt if !skill.canBeInterrupted()
Re: Seal of Ruler - Core Support
Posted: Sun Apr 11, 2010 5:47 pm
by airyina
Probe wrote:you can add a new parameter for skills
<set name="canBeInterrupted" val="false" />
by adding another boolean to L2Skill,
and then search for where skills are interrupted in core and put a check the to not interrupt if !skill.canBeInterrupted()
This isn't exactly what I want. I don't want to add another boolean to L2Skill, that is way too much work for something so simple. Aside from that, I don't think I'm good enough with L2j to be adding things to the core.
Re: Seal of Ruler - Core Support
Posted: Sun Apr 11, 2010 6:17 pm
by Probe
what do you want then? to hardcode seal of ruler into not being interrupted? sry I like my way better, and it's really not that complicated, you're gonna have to learn the core anyway if you plan on adding features etc, why not start now?
Re: Seal of Ruler - Core Support
Posted: Sun Apr 11, 2010 6:21 pm
by airyina
Probe wrote:what do you want then? to hardcode seal of ruler into not being interrupted? sry I like my way better, and it's really not that complicated, you're gonna have to learn the core anyway if you plan on adding features etc, why not start now?
Then help me with it, I barely know anything about the core. I haven't done much with it since I started. Learning about it is hard as there are not many threads here about core.