mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
* Merged ScriptDev2 928
--HG-- branch : trunk
This commit is contained in:
@@ -13072,6 +13072,22 @@ LOCK TABLES `script_texts` WRITE;
|
||||
/*!40000 ALTER TABLE `script_texts` ENABLE KEYS */;
|
||||
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`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user