mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-16 17:17:16 -05:00
17 lines
265 B
Plaintext
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);
|
|
}
|
|
}
|