diff options
| author | megamage <none@none> | 2009-08-29 17:32:11 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-08-29 17:32:11 -0500 |
| commit | 0bf74d2384d009f333f46da705e366c44ae85ad8 (patch) | |
| tree | c59818f6b63c476ea6d834f42362db5037c39741 /sql/updates | |
| parent | 7f04b23d2437e61ded3da5607e48cd7c675dc238 (diff) | |
*Fix script of quest trees company. By totoro
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/5472_world_scripts.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/5472_world_scripts.sql b/sql/updates/5472_world_scripts.sql new file mode 100644 index 00000000000..65f15ddb387 --- /dev/null +++ b/sql/updates/5472_world_scripts.sql @@ -0,0 +1,14 @@ +-- spell 30298 tries to start event script 10675 but it doesn't exist. create it & make it spawn Geezle +delete from event_scripts where id = 10675; +insert into `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `x`, `y`, `z`, `o`) values +(10675, 0, 10, 17318, 90000, '-5139.79','-11248.27','5.23', '6.27609'); + +-- geezle should not spawn by default +update creature set spawnMask=0 where guid = 85587; + +-- add missing sentence to Geezle's text & Overgrind's name to flag pickup emote +# delete from `script_texts` where `entry` in (-1000266,-1000259); +# insert into `script_texts` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `emote`, `comment`) values +('-1000266','%s picks up the naga flag.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','2','0','0','geezle - EMOTE_SPARK'), +('-1000259','What\'s the big idea, Spark? Why\'d you call for this meeting?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0','0','geezle - GEEZLE_SAY_1'); + |
