PRC8_fork/trunk/scripts/prc_ft_mstrwnd.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -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);
}
}