PRC8/nwn/nwnprc/trunk/scripts/mh_s2_instrument.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

17 lines
265 B
Plaintext

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