• 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

Eval script question

Kaleb

Well-known member
what does Comb mean in this line

Call HasteComb

if I wanted to call another spell would I just do this

~ if we're not active, just get out now
doneif (field[abilActive].value = 0)

call HasteComb

insert spell name call then put the Comb like the example above?

I want to make a higher level Haste spell that changes the duration of the spell from 10 rounds day to 10 miniutes day. I know I will have to make a new higher level spell that's no problem but will it work the same in the script above if I add the new spell name?
 
"call" means call a procedure.

On the General grouping in the editor, you can use the *Procedures tab to look up that specific procedure.

That way, you can look at the procedure and see what HasteComb actually does, so that you know whether it's something you want to reuse for your new version.
 
Back
Top