LordSerathDarklands Posted November 16, 2022 Share Posted November 16, 2022 I'm making an enchanted sword, and I want it to behave similarly to Sunder and Keening, where once it's equipped, it starts dealing damage to the player. However, I'd like this to be Frost damage, and I can't have that as a constant effect on the blade, because I want to give the blade a Frost damage on strike effect. Can someone please help me with a script that will inflict Frost damage when the sword is equipped and stop inflicting damage once the sword is unequipped. There will be no Wraithguard analog, no gauntlet that can be worn to prevent the damage. I'd like the damage to be three points per second. Thanks in advance. Link to comment Share on other sites More sharing options...
FIMzzZzz Posted November 17, 2022 Share Posted November 17, 2022 (edited) not sure this is the correct way, but it works "zz_iceC" is a spell using the curse option, not sure what the damage interval is, set to 1 digit begin zz_ice_curse short OnPCEquip short state if ( menumode == 1 ) return endif if ( state == 0 ) if ( OnPCEquip == 1 ) Player->AddSpell "zz_iceC" set state to 1 endif endif if ( state == 1 ) if ( OnPCEquip == 0 ) Player->RemoveSpell "zz_iceC" set state to 0 endif endif end There will be no Wraithguard analog, no gauntlet that can be worn to prevent the damage. Nord enters the chat xD Edited November 17, 2022 by FIMzzZzz Link to comment Share on other sites More sharing options...
LordSerathDarklands Posted November 17, 2022 Author Share Posted November 17, 2022 not sure this is the correct way, but it works "zz_iceC" is a spell using the curse option, not sure what the damage interval is, set to 1 digit begin zz_ice_curse short OnPCEquip short state if ( menumode == 1 ) return endif if ( state == 0 ) if ( OnPCEquip == 1 ) Player->AddSpell "zz_iceC" set state to 1 endif endif if ( state == 1 ) if ( OnPCEquip == 0 ) Player->RemoveSpell "zz_iceC" set state to 0 endif endif end There will be no Wraithguard analog, no gauntlet that can be worn to prevent the damage. Nord enters the chat xD That's perfect! Thank you so much! Link to comment Share on other sites More sharing options...
Recommended Posts