Add forgotten change to world.sql and update script for scarlet ghouls (quest 12698) so they are in defensive mode. Also make it so, if you abandon the quest, you don't get to keep your minions... Still need some official info on these, if anyone can help.

--HG--
branch : trunk
This commit is contained in:
Chaz Brown
2009-09-10 01:48:09 -04:00
parent a67246587a
commit ce0a56b255
2 changed files with 21 additions and 11 deletions

View File

@@ -2599,6 +2599,7 @@ DROP TABLE IF EXISTS `script_texts`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `script_texts` (
`npc_entry` mediumint(8) NOT NULL default '0' COMMENT 'creature_template entry',
`entry` mediumint(8) NOT NULL,
`content_default` text NOT NULL,
`content_loc1` text,
@@ -2614,10 +2615,11 @@ CREATE TABLE `script_texts` (
`language` tinyint(3) unsigned NOT NULL default '0',
`emote` smallint(5) unsigned NOT NULL default '0',
`comment` text,
PRIMARY KEY (`entry`)
PRIMARY KEY (`npc_entry`,`entry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
SET character_set_client = @saved_cs_client;
--
-- Table structure for table `script_waypoint`
--