Aantioch_Infernum/_module/nss/olina_ball_spawn.nss

22 lines
355 B
Plaintext
Raw Normal View History

2023-08-08 16:22:17 -04:00
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "olinasball")!= OBJECT_INVALID)
{
2023-08-08 16:22:17 -04:00
return;
}
{
object oTarget;
object oSpawn;
oTarget = GetWaypointByTag("wp_olina_ball");
oSpawn = CreateObject(OBJECT_TYPE_ITEM, "olinasball", GetLocation(oTarget));
}
}