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

19 lines
402 B
Plaintext

/*
Activates Master Wand
*/
void main()
{
object oPC = OBJECT_SELF;
if(GetLocalInt(oPC, "MasterWand"))
{
FloatingTextStringOnCreature("Master Wand Deactivated.", oPC, FALSE);
DeleteLocalInt(oPC, "MasterWand");
}
else
{
FloatingTextStringOnCreature("Master Wand Activated.", oPC, FALSE);
SetLocalInt(oPC, "MasterWand", TRUE);
}
}