• 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

need help making a custom item

karrel

Well-known member
I need help in making a cloak that adds 4 effective levels to any creature wearing it's bloodline ability. say a person of 5th level putson his bloodline is treated as if it's 4 levels higher
 
i am looking for someone to right a simple script that will work because i am unable to do that type of thing
 
Last edited:
any ideas one how to make this work for any class that has a bloodline?

this is first script:
~ The timing is important here - the gIsEquip field is calculated at First/495,
~ and the bootstraps for things such as immunities granted by bloodlines evaluate at First/500
if (field[gIsEquip].value <> 0) then
perform hero.assign[ClsAblLive.Bloodrager]
perform hero.assign[ClsAblLive.Bloodrager]
perform hero.assign[ClsAblLive.Bloodrager]
perform hero.assign[ClsAblLive.Bloodrager]
endif

this is second script:
if (field[gIsEquip].value <> 0) then
foreach pick in hero from BaseCustSp where "abCategory.BlrorBlood | abCategory.BlrBloMut"
eachpick.field[xExtraLev].value += 4
nexteach
endif
 
Last edited:
never ind got it to work i think. dropped the first script and changed second to this:

if (field[gIsEquip].value <> 0) then
foreach pick in hero from BaseCustSp where "abCategory.BlrBlood | abCategory.BlrBloMut"
eachpick.field[xExtraLev].value += 4
nexteach
endif
 
I need to create a Breastplate of Dispel Magic 1/day & +1 spell DC (Dispelling Breastplate of Spell Focus). Any help would be much appreciated.

Just need a script to up the DC of my spells by one. Seems a little more complicated than boot strapping Feat Spell Focus. This armor effects any spell from any school that has a saving throw.
Code:
      if (field[gIsEquip].value <> 0) then
          hero.child[dcKingCont].field[Bonus].value += 1
        endif
 

Attachments

Last edited:
Back
Top