PRC8_fork/nwn/nwnprc/trunk/scripts/mh_s2_instrument.nss

17 lines
265 B
Plaintext
Raw Normal View History

#include "prc_inc_clsfunc"
void main()
{
//object oCaster = GetLastSpellCaster();
object oCaster = OBJECT_SELF;
if(GetLocalInt(oCaster,"use_CIMM"))
{
UnactiveModeCIMM(oCaster);
}
else
{
ActiveModeCIMM(oCaster);
}
}