• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Ki Pool - Extra Attack

Sphynx

Well-known member
Is there already something in place that I'm missing to allow you to 'activate' that you're spending a Ki Pool point to get that ExtraHigh attack for Unchained Monks?

And since Haste seems to be hard-coded in (I can't read the source), am I right that I basically just need something like this (Stolen from flurry-unchained)?

Eval Rule: Post-Level 10,000
Code:
perform assign[Helper.ExtraHigh]

~ find all qualifying weapons and apply extra high attacks
foreach pick in hero from BaseWep where "IsWeapon.wUnarmed | wSpecial.Monk"
    perform eachpick.pushtags[Helper.ExtraHigh]
nexteach

I ask because it didn't work.... :P

PS. Are there plans to add this to an upcoming release?
 
Yes, I've reported many bugs, I know where to report them. The question wasn't if it was a bug, it was to ask if the code should work.

Anyhows, I discovered that the code works, the problem is that activating it doesn't matter, it's always activated (I just didn't notice that there were too many attacks when non-activated). :/ There's an if-statement I need in that code which will tell it to only run if the ability is activated, and I'm just trying to find the if-statement.
 
In order to pushtags you have to have the tag on your thing. Change that to assign instead of pushtags

EDIT: I was looking at the for loop. I didn't see that you were assigning before.

What is your whole code?
 
Last edited:
OK More awake, going back and looking. Everything works fine for me. I had 3 levels of Unchained Monk to get Ki Pool, I go to the In-Play tab and click the check box for "Ki Flurry: 1 Ki: +1 attack during a flurry" and I get the extra attack. so it's all already working.
 
Sorry, yeah... my last doneif did the trick, I was just missing a check for if it was activated. :) Thanks anyhows. :)
 
Back
Top