I want to write a script that adds a magic to hand to hand {I know there are mods that do that already but I want it to be an effect with out a timer eg. I don't want fire on target for 5 seconds}
Heres what I got so far!
*******************************************
scriptname MyHandtoHandScript
float timer
Begin ScriptEffectStart
if ( timer < 0 && MM.h2hOut == 1 ) :{If the spell is ineffect and Handtohand is active}
set self to getself
RemoveAllItems :{this line is where I want to put interchangible magic effects, fire, ice, light.etc.}
endif
End
******************************************
I keep getting an error about "MM.h2hOut" being an unrecognized command or function.
I got the "if ( timer < 0 && MM.h2hOut == 1 )" from one of the fieryfists scripts but that was the limit of my understanding.
Can anyone offer some help?