• 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

Scaling Magic Items

runnetib

Active member
From what I could find, only the example scaling items from PU were added. There doesn't seem to be a way to create these without using the editor. I tried using the editor along with the existing items to try to create my own, but something was missing and not allowing it to populate correctly during tests.

Is this the only way to make custom scaling items? Will a way be to do this without using the editor be added if it's not already there?
 
if (hero.tagcount[Classes.?] >= 15) then
~ armor is +3 chainshirt
field[BonEnhance].value = 3
elseif (hero.tagcount[Classes.?] >= 11) then
~ armor is +2 chainshirt, max Dex +4, ACP -1
field[BonEnhance].value = 2
endif

I was trying to model it off the code (copy pasted, actually) for the armor of the celestial host but I didn't want all the extra bits in there. I also have it set up for gaining martyring and determination at specified levels, but the part above is where I got stuck and haven't tried tweaking it any since then. There are other things I wish to create as well, but this seemed like it'd be a nice starting point to figure it out; seems instead I've hit a road block.
 
Aaron, since this is related code-wise is there a reason to use the tagcount[Classes.?] instead of #totallevelcount[]?
 
Back
Top