Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - d20 System (http://forums.wolflair.com/forumdisplay.php?f=46)
-   -   How to increase fly speed by level? (http://forums.wolflair.com/showthread.php?t=11421)

solscar October 6th, 2010 04:02 AM

How to increase fly speed by level?
 
Can anyone help me or point me to the thread that explains this?

I am trying to make a monster class specifically a psuedodragon, playable from level 1.

I can do most of it but can not figure out how to adjust the following:

fly speed - starting at 20' and average, and gaining +10' per level, achieving 60' and good at level 5

Telepathy - starting at 20' and gaining +10' per level, achieving 60' at level 5

thanks in advance.

Lawful_g October 6th, 2010 07:24 PM

First, for the fly speed, make sure to bootstrap the xFly thing to your monster class.

Now you will need an Eval script to set the fly speed and assign the maneauverability tag. Phase Post-Level, probably early, like 5000

var speed as number
speed = (1 + #levelcount[XXX]) * 10
speed = minimum(speed, 60)

hero.childfound[xFly].field[Vaue].value = maximum(hero.childfound[xFly].field[Vaue].value, speed)

if (#levelcount[XXX] >= 6) then
perform hero.childfound[xFly].assign[Maneuver.Good]
else
perform hero.childfound[xFly].assign[Maneuver.Average]
endif


Where XXX is the monster class' identifier


For Telepathy, do you already have my files? I made a special with a CalcValue called Telepath2. Assuming you use that special, you could bootstrap it and copy part of the above:

var range as number
range = (1 + #levelcount[XXX]) * 10
range = minimum(speed, 60)

hero.childfound[xTelepath2].field[Vaue].value = maximum(hero.childfound[xTelepath2].field[Vaue].value, range)

Alternately you could make your own CalcValue special.

solscar October 14th, 2010 04:41 PM

Lawful_g, thanks for the information.

I do not have your files, can you direct me to the right location to get them, or alternatively can you PM me the Telepath2 one.

thanks.


All times are GMT -8. The time now is 08:07 PM.

Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.