• 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

HL Scripting Changes - Notes for those with .user files...

ShadowChemosh

Well-known member
So I figured I would let everyone know here about a recent change as its affecting allot of .user files in the community. This includes many of the 3PP .user files I have seen including Razor Coast.

Any script that tries to set a global Attack Bonus or Penalty (ie hero.child[Attack].field[tAtk].value) no longer works. The field tAtk no longer adjusts Attack value up or down instead it is only display. You have to change all your scripts to use "Bonus" or "Penalty". In example:
Code:
~ Give +1 to hit to all weapons
hero.child[Attack].field[Bonus].value += 1

As I get time I will be fixing the Community Packages but I figured any 3PP may wish to know they need to get fixing also.
 
I was actually just about to search to see how to do this. I'm coincidentally needing it for something I'm entering. Perfect timing!
 
I'll see about getting this fixed - this is a case where we should have maintained backwards compatability.
 
Back
Top