• 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

Liber Vampyr book

karrel

Well-known member
i have been messing around with hero lab editor for pathfinder, how ever i have no real skills at scripts. The book I am wanting to do is Liber Vampyr from Necromancers of the Northwest, LLC. WWW.necromancers-online.com, can or will anyone step up to make this happen?
 
Can't do it for you, but if you wanted to take a crack at it there's lots of folks to give you a hand around here.
 
Yep many are willing to help here. Start small and break down what you want to do first into small pieces. Even entering the Things just as Text is a great start at using the editor.

The scripting can very often come as phase two and lots can be down with just mouse clicks if it follows normal Pathfinder rules.
 
ok trying my hand at adding two contions in Hl. 1st off I got thiem to show up on the list of contions but now i need to figure out how to get them to adjust the charater. 1st one gives half movement and -2 to str and dex. 2nd gives half movement and -6 to str and dex
 
ok trying my hand at adding two contions in Hl. 1st off I got thiem to show up on the list of contions but now i need to figure out how to get them to adjust the charater. 1st one gives half movement and -2 to str and dex. 2nd gives half movement and -6 to str and dex

The easy way to learn is find something that does a similar thing and then look at the script attached to it.

For example the Haste spell increases speed, bulls strength, cats grace, bears endurance and owls wisdom increase ability scores.

Look at these for script examples and try to decipher the code. Make a copy and adjust, test, tweak.

Any problems just return and post specific questions, we'll help if we can.
:D
 
FYI in my opinion, typically spells and gear are the easiest to code since they usually have very little to no scripting code. After that feats are the next easiest. Races/monsters and classes, and class variants tend to be the most involved due the great variety of abilities they can have. I would also leave these to the last you code in the book since typically races and classes reference other abilities in the book.

Good luck!
 
I looked at the condtion fatigue and there was no scrpit to be found. how ever when u check the box it adds the adjustments. i input the condtion on the adjustment tab in the editor but is there some place else that you have to input data for the adjustments to work off of
 
here is what i have done with this book so far any helping would go a long way
 
Last edited:
I am glad to see someone is working on this. I wish I could help but I am really new to hero lab custom content.
 
here is what i have done so far. i am only doing what stuff i am using so feel free to continue the work
 
Last edited:
well here is what i got if anyone really cares, dont know if I will go any farther for the fact i dont know how to write scripts at all, so feel free to do what u will with this file
 
Last edited:
hi guys its been a while but i was sitting around and started working on this again. what would be the best way to have the the program to do the following:

Feat requires feat a and feat b or feat c and feat d
the feat requires you to have both feat a & b or feat c & d

i dont know the best way ot have the program do this any help out there
 
To test for two feats, lets say Acrobatic & Alertness, you can use the following code in the Pre-reqs button.

Code:
validif (#hasfeat[fAcrobatic] + #hasfeat[fAlertness] = 2)

See if that helps you figure out the rest of it.
 
how ever one more thing i have a feat that lets you pick from a list of animal types (example: beast form: lesser (wolf, bat,spider)) you can only pick one animal per time you take this feat but you can take it multi time, once for each animal form. I have come across a feat that reqiures you to have all three animal type. any ideas on how to work this? thanks for your help in advance
 
Not really sure what it is you are asking. You want a selection of everything in the game that has the animal type, or just a certain number of them?
 
ok there is a feat (beast form: lesser it has 3 choices of beast forms you can take wolf,spider,and bat) now for each time you take the feat you can chose one of the three forms, but no more then one time each. so you will end up with beast form:lesser; bat, beast form:lesser;wolf, and beast form:lesser;spider. now the animals types are in a drop down menu so when you take the feat you can chose. there is another feat that requires you to have all three types of beast forms before you can take it, Im not sure how to make the program look for the three types of beast forms before allowing it to be taken. here is what i have done so far feel free to take a look and make sugestions. the feat im working on is called Blood Power: Dragon Form
 
Last edited:
Back
Top