diff options
Diffstat (limited to 'sql/world.sql')
| -rw-r--r-- | sql/world.sql | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/world.sql b/sql/world.sql index 7ea191181f7..f11a5ca0411 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -13073,6 +13073,22 @@ LOCK TABLES `script_texts` WRITE;  UNLOCK TABLES;  -- +-- Table structure for table `script_waypoint` +-- + +DROP TABLE IF EXISTS script_waypoint; +CREATE TABLE script_waypoint ( +  entry mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'creature_template entry', +  pointid mediumint(8) unsigned NOT NULL DEFAULT '0', +  location_x float NOT NULL DEFAULT '0', +  location_y float NOT NULL DEFAULT '0', +  location_z float NOT NULL DEFAULT '0', +  waittime int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'waittime in millisecs', +  point_comment text, +  PRIMARY KEY (entry, pointid) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Creature waypoints'; + +--  -- Table structure for table `skill_discovery_template`  --  | 
