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

19 lines
431 B
Plaintext

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