• 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

I'm Baaack. And I have a question

Erich

Well-known member
Hi Guys,
First off, if this is a double post I apologize, my internet connection is acting screwy.

So, I've been gone for a while (real life) but did manage to submit the Space 1889 file for review.
I have to make a few minor adjustments and then it will be ready for release.

This brings me to my question, since I'm back into the code anyway I decided to go ahead and list swim speed for lizard men.


I know the code to set a pace speed is
Code:
hero.child[trPace].field[trtSpecial].value = 8
Does anyone happen to know how to code things to allow the swim pace equal the swim skill die?

Thanks
-Erich
 
You'd just need to set it at a late enough time to pick it up, probably, I think around Final/1000, but essentially:

Code:
hero.child[trPace].field[trtSpecial].value = hero.child[skSwim].field[trtFinal].value*2

I think that's it, anyway.
 
Back
Top