Difference between revisions of "Database:Zones"

(New page: == About == == Table == === Status === === Motd === == Teleporters == Teleporters are objects in the world that allow you to move a player from zone to another)
 
Line 7: Line 7:
 
=== Motd ===
 
=== Motd ===
  
== Teleporters ==
+
== Teleporters / Signs ==
  
Teleporters are objects in the world that allow you to move a player from zone to another
+
Signs are allow spawns in the world to display messages and transport you to a target zone id/location
 +
 
 +
For example to set Spawn 94 when clicked to send you to a building:
 +
 
 +
<pre>
 +
insert into spawn_signs (spawn_id, type, description, zone_id) values (94, 'Zone', 'enter this building', 414);
 +
</pre>

Revision as of 22:38, 2 October 2009

About

Table

Status

Motd

Teleporters / Signs

Signs are allow spawns in the world to display messages and transport you to a target zone id/location

For example to set Spawn 94 when clicked to send you to a building:

insert into spawn_signs (spawn_id, type, description, zone_id) values (94, 'Zone', 'enter this building', 414);