View Single Post
Elltear
Member
 
Join Date: Nov 2012
Posts: 57

Old March 11th, 2020, 03:43 PM
Quote:
Originally Posted by ShadowChemosh View Post
Well you will have to go into the editor for this. I would advise reading some of the help from question #2 of the FAQ.

1) But for a crash course go to "Tools->Launch Editor".
2) File->Open Data File...
3) Select "PFRPG_Race_Dragonborn.user"
4) Click the "Racial Special" tab.
5) bottom left blue button "New (Blank)"
6) Change name ??? to Wings
7) Change unique ID ra? to raDBWings
8) Description text type in "I have wings".
9) Click blue button "Eval Scripts"
9a) add new eval.
10) Select Phase: Post-levels/10000
11) copy in this script:
Code:
~ Plus 10 to acrobatics at 1 HD
#skillbonus[skAcrobat] += 10
~ If 12+ HD give 60ft fly speed
If (herofield[tHitDice].value >= 12) Then
   ~ Give 60ft fly speed
   #value[xFly] += 60
   ~ Set maneuverability rating to Good
   perform hero.child[xFly].assign[Maneuver.Good]
~ If 6+ hit dice give 30ft and average rating
elseIf (herofield[tHitDice].value >= 6) Then
   ~ Give 30ft fly speed
   #value[xFly] += 30
   ~ Set maneuverability rating to Average
   perform hero.child[xFly].assign[Maneuver.Average]
endif
12) top left blue button "Test Now!".
13) Click on "Race"
14) Click on Dragonborn.
15) Click on top right "Bootstraps"
16) add new bootstrap
17) type in "raDBWings"
18) OK out of the window.
19) Save
20) Test Now! again.
21) add your new dragonborn with wings!
Basically what i am asking if i use this code how much would have change to get it to work with race.
Elltear is offline   #15 Reply With Quote