• 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

Issue modifying cleric Divine Strike

HereComesPete

New member
Hi all,

Been lurking here for a long time but only recently ventured in to the editor to build classes etc, now I'm trying to build a domain and I'm stuck. Managed to get everything else to show as I want so far but divine strike is bugging me.

I'm making a fire cleric and I've used an existing necrotic damage divine strike as a template and I can get the pop out text from the '?' to display fire damage in brackets (even though it shows as 0d8 fire damage, 1/round), but just can't seem to find where I change it in the actual class special ability output as that continues to show as (1d8 necrotic damage).

I know there's another divine strike that says you can pick damage type and I could just settle for that, but I don't want to give up and not know the answer!

Can anyone point me at where I'm missing? Any help gratefully received!
 
Aside from the description text, some of those abilities have an additional summary text. If you go into the editor, the summary text is to the right of the name and ID and it sometimes clips the full text so you might not be seeing it.

The cleric abilities screen shows the summary text, where the popup shows the description text.

The two text fields are not related, so easy to miss updating one if you're copying abilities.
 
Thanks Dungeonguru, I've modified the summary text and there is one less reference to necrotic.

Still one there though! I've attached an image to see if that helps.
 

Attachments

  • S1134S.jpg
    S1134S.jpg
    73.5 KB · Views: 3
Have you modified the eval scripts?

On the necrotic one, here is eval script #2 (when you pull up eval scripts, you have to scroll through each script separately - should be a scroll to the far right).

Code:
      if (field[xIndex].value >= 2) then
        field[listname].text = field[thingname].text & " (2d8 necrotic damage)"
      else
        field[listname].text = field[thingname].text & " (1d8 necrotic damage)"
        endif

You just replace fire for necrotic.
At this point, you can also open up the .user file you created with a good text editor (I use notepad++) and search for the word necrotic to see where the word is located.
 
Back
Top