PRC8/nwn/nwnprc/trunk/scripts/prc_ft_dblwnd.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -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);
}
}