PRC8/trunk/scripts/prc_ft_dblwnd.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

19 lines
418 B
Plaintext

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