void main() { object oPC = GetEnteringObject(); if (!GetIsPC(oPC)) return; if (GetItemPossessedBy(oPC, "dragoncall")!= OBJECT_INVALID) { string oDeny="You search and search, but find nothing...."; SendMessageToPC(oPC, oDeny); return; } { object oTarget; object oSpawn; oTarget = GetWaypointByTag("wp_dragoncall_ginge"); oSpawn = CreateObject(OBJECT_TYPE_ITEM, "dragoncall", GetLocation(oTarget)); } }