• 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

Adding bonuses to skills

Arthurrw

Active member
How would I make it so that something could add say a +4 bonus to a skill? I am putting in the template "Reptilian" for instance from the Savage Species book and they have a racial +4 to balance and jump.

What I did was create a "Special" called "Racial Jump +4" but I need to actually know how to make it add 4 to the skill. Thanks for the help.

Thanks for the help.
 
Arthurrw wrote:
>
>
> How would I make it so that something could add say a +4 bonus to a
> skill? I am putting in the template "Reptilian" for instance from the
> Savage Species book and they have a racial +4 to balance and jump.
>
> What I did was create a "Special" called "Racial Jump +4" but I need to
> actually know how to make it add 4 to the skill. Thanks for the help.
>
> Thanks for the help.


Check out the "How To" section of the editor manual - it has a section
specifically on adding skill bonuses that should have what you need.
 
Finally found the manual you guys are talking about, it is installed locally, I kept looking at the resources online and couldn't find anything. You guys should really put the local files online as well for people to look through, this is going to be so much better now!

Thanks for the help, I should be ok now
 
Ok I am not ok,

I put these things into the boostrap area (is that where they are supposed to be? and where can I find a description of what should go in the different areas like boostraps etc?)

Thing: Skill Bonus (InPlay)
Choose: pSklBonus

Condition:
Phase: First (users) Priority: 101
Tag Expression: #skillbonus[kBalance] = #skillbonus[kBalance] + 4

I did this for all 3 skills, Hide, Move Silently and Balance

#skillbonus[kHide] = #skillbonus[kHide] + 4
#skillbonus[kMoveSil] = #skillbonus[kMoveSil] + 4

When I do I get the following error...


Compilation was forced to stop after the following errors were detected:

Syntax error in 'bootstrap #1 condition' tag expression for Thing 'rWereTgr'
-> Invalid tag template specified: '#skillbonus[kBalance]'
Syntax error in 'bootstrap #1 condition' tag expression for Thing 'rWereTgr'
-> Invalid tag template specified: '#skillbonus[kHide]'
Syntax error in 'bootstrap #1 condition' tag expression for Thing 'rWereTgr'
-> Invalid tag template specified: '#skillbonus[kMoveSil]'

So what am I doing wrong?
 
#skillbonus goes in Eval Scripts.

#skillbonus[kHide] += 4 is the usage, BTW.

May I suggest you open srd_races.dat in the source folder (c:/HeroLab/data/d20/source on my computer) and look through the races there? Most of those races have skill bonuses. srd_monstrous.dat has all the non-standard races if you want examples of complex things like flight, spell resistance, Common not being on a race's language list, etc.
 
Back
Top