PoA_PRC8/_module/nss/givearenatoken.nss

16 lines
302 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
//Created By Genisys 5/20/08
//Put this script in the OnEnter Event of a tracks trigger or Area-(preferred).
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "arenatoken")== OBJECT_INVALID)
{
CreateItemOnObject("arenatoken", oPC);
}
}