• 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 Editor Race

Mythrain

Member
Ok, I am making a race and have two questions.
How do I give a race a bonus to certain skills? Like the elves perception bonus?
Also how do I add a Elemental resistance?
 
1 - Adding a Skill bonus
#skillbonus[UNIQUEID] += X

Where UNIQUEID is the unique ID of the skill in question, and X is the bonus. So to give a +2 bonus to swim it would be:

#skillbonus[skSwim] += 2

2 - Elemental Resistance
#applyresist[UNIQUEID, X]

Where UNIQUEID is the unique ID of the resistance special in question, and X is the value to apply. So to give acid resistance 30 it would be:

#applyresist[xDamRsAcid, 30]
 
1 - Adding a Skill bonus
#skillbonus[UNIQUEID] += X

Where UNIQUEID is the unique ID of the skill in question, and X is the bonus. So to give a +2 bonus to swim it would be:

#skillbonus[skSwim] += 2

2 - Elemental Resistance
#applyresist[UNIQUEID, X]

Where UNIQUEID is the unique ID of the resistance special in question, and X is the value to apply. So to give acid resistance 30 it would be:

#applyresist[xDamRsAcid, 30]

I appreciate the responce. But where do I do this? Is this under race? If so where, what section? Or is theis a Racial Special?

Sorry to be such a n00b but My brain is not wrapping around this easily.
 
You'd do this in the Eval scripts. I recommend you look over the tutorial, or check out some of chiefweasel's HL scripting videos on Youtube for a start.
 
Back
Top