Sarum City has been rebuilt with the new tileset, and all the exterior areas were combined into one. New areas added outside the city. They're called Environs. Some additional areas redone to tie into the new areas. Environs are mostly decorated, but lack NPCs in some. Those will be added later.
22 lines
355 B
Plaintext
22 lines
355 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "olinasball")!= OBJECT_INVALID)
|
|
{
|
|
|
|
return;
|
|
}
|
|
|
|
|
|
{
|
|
object oTarget;
|
|
object oSpawn;
|
|
oTarget = GetWaypointByTag("wp_olina_ball");
|
|
oSpawn = CreateObject(OBJECT_TYPE_ITEM, "olinasball", GetLocation(oTarget));
|
|
}
|
|
}
|