• 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

How to assign names to a hero?

Aril

Well-known member
I'm working on creating a Natural Werewolf race, from the "Bite Me! Werewolves" book by Misfit Press.

I've been using code from the Kobold Press "Werelion" race to prepare some of this.

One of the things I'm trying to replicate is a feat for werewolves called "Primal Form" that allows the werewolf to choose to transform into a Huge wolf. The way it was done for the "Werelion" race is a feat called "Greater Lion Form".

What the feat has is an Eval Script that is:

Phase: First
Priority: 55
Index: 1

" doneif (tagis[Helper.FtDisable] <> 0)

perform hero.assign[Custom.KPGreatLio]"

So, it seems to be assigning this value "Custom.KPGreatLio" to the PC. Then, in the *race* entry, they give definitions for what adjustments to make to the PC if that form is used.

The problem is that I can't seem to just change "Custom.KPGreatLio" to something else, as it just starts throwing errors. I tried "Custom.MSPrimWolf"

The error I get is:

Syntax error in 'eval' script for Thing 'fPrimalForm_' (Eval Script '#1') on line 4
->Tag 'Custom.MSPrimWolf' not defined

Any ideas what I might be doing wrong?
 
In the editor, in the Tags button (top right of the screen) on your item, click "add new". In the "Group Id", fill in "Custom", and in "Tag Id", enter the Id of the tag you want to create.
 
Back
Top