UW2_PRC8/_module/nss/takearenatoken.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

20 lines
299 B
Plaintext

//Put this script OnExit
void main()
{
object oPC = GetExitingObject();
if (!GetIsPC(oPC)) return;
object oItem;
oItem = GetFirstItemInInventory(oPC);
while (GetIsObjectValid(oItem))
{
if (GetTag(oItem)=="arenatoken") DestroyObject(oItem);
oItem = GetNextItemInInventory(oPC);
}
}