Files
HeroesStone_PRC8/_module/nss/enc_sparkytog.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

12 lines
325 B
Plaintext

void main()
{
object oArea = GetArea(OBJECT_SELF);
int iDisabled = GetLocalInt(oArea, "iSparkyDisabled");
iDisabled = abs(iDisabled - 1);
SetLocalInt(oArea, "iSparkyDisabled", iDisabled);
string sStatus = iDisabled ? "OFF" : "ON";
SendMessageToPC(OBJECT_SELF, "Sparky Spawns are now " + sStatus);
}