• 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

Fame points

How can I add fame and prestige to an NPC? I know it's intended as a PC mechanic, but I see no reason why it can't be used for NPCs as well.

I'm going to necro this, because it doesn't look like you ever got an answer and I'd like to know this as well.
 
Last edited:
Ah, at first I was confused, because I thought you guys were talking about reputation from Ultimate campaign, which didn't exist last year.

But I think what you're asking is, "How can I add Prestige Points to an NPC since there is no journal tab?"

There are 2 ways to go about this:
1. Make a mechanic which shows the journal tab for NPCs.
2. Create an adjustment which can add PP to a selected faction.

Of the two, #1 is simpler. Which would you prefer?
 
Ooh, Journal tab for NPCs? I like the sound of that - it'd mean I could actually make the character that appears in all of my Player Portfolios an NPC. His name is "Party Pot", and he stores all of the group treasure (usually in a portable hole or bag of holding). Adding cash to him requires him to be a PC with the way HeroLab is currently set up.
 
Create a Mechanic, and add this eval script at PostAttr 10000

Code:
        if (hero.tagis[CharType.typNPC] <> 0) then
          perform hero.delete[HideTab.journal]
          perform hero.delete[Hero.NoAdvance]
          perform hero.delete[Hero.ClsErLev?]
          endif
 
I tested it a little bit myself, and it seems to be working fine but if you see any strange stuff you may have to tweak it.
 
Back
Top