• 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

Forcing a specific size and befuddling a macro?

bodrin

Well-known member
How do I force a specific size on a creature overriding the existing size.? tag?
I need to allocate Size.Large for frightful aspect.

Also in a related note this equation

Code:
 ~ Give us SR 10 + half caster level

     var CL as number

if (#levelcount[Cleric] >= 15) then CL = 10 + #levelcount[Cleric].value/2
gives me this error

Syntax error in 'eval' script for Thing 'pFrighAspe' (Eval Script '#3') on line 9
-> Extra characters at end of line

I presume the macro can't be used in this way but I don't have the necessary coding acumen to strip it down. It would be a nice feature if you could use the macros in this manner.

As always thank you for any assistance.

P.s I have searched the forums for code examples and revealed nothing!
 
Last edited:
The extra characters error is because you have to stop typing after "then" - put the next part on the next line.
 
Back
Top