diff options
| author | mweinelt <mweinelt@gmail.com> | 2012-02-08 17:12:22 +0000 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2012-02-08 17:12:22 +0000 |
| commit | 01b7827729607caf71652b44f169b5efbbdaa0f4 (patch) | |
| tree | 6f20e3dc18a3f676f2a2a3cfe9b31726c9057b72 | |
| parent | 2202740a36a253c2fc7789ad6b296a777284677b (diff) | |
DB/Quests: High Crusader Adelard - Quest Pooling
Closes #5124
| -rw-r--r-- | sql/updates/world/2012_02_08_08_world_pool.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/2012_02_08_08_world_pool.sql b/sql/updates/world/2012_02_08_08_world_pool.sql new file mode 100644 index 00000000000..96124ec2540 --- /dev/null +++ b/sql/updates/world/2012_02_08_08_world_pool.sql @@ -0,0 +1,16 @@ +-- Pool quests from High Crusader Adelard +-- Source: http://www.wowwiki.com/High_Crusader_Adelard +SET @pool_id := 349; + +-- create new pool, allowing only 1 out of 4 dailys per day +DELETE FROM `pool_template` WHERE `entry` = @pool_id; +INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES +(@pool_id, 1, 'High Crusader Adelard - Daily Quests'); + +-- fill pools with the daily quests +DELETE FROM `pool_quest` WHERE `entry` IN (14101, 14102, 14104, 14105) AND `pool_entry` = @pool_id; +INSERT INTO `pool_quest` (`entry`, `pool_entry`, `description`) VALUES +(14101, @pool_id, 'Drottinn Hrothgar'), +(14102, @pool_id, 'Mistcaller Yngvar'), +(14104, @pool_id, 'Ornolf The Scarred'), +(14105, @pool_id, 'Deathspeaker Kharos'); |
