* Merged ScriptDev2 928

--HG--
branch : trunk
This commit is contained in:
Muhaha
2009-03-22 23:11:55 +01:00
parent 36ccfd4168
commit d64436a5e4
32 changed files with 681 additions and 114 deletions

View File

@@ -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`
--