DB/Conditions: Replace condition accidently removed.

This commit is contained in:
Malcrom
2013-06-02 22:05:22 -02:30
parent 24e528d4fd
commit 937ef9e63e
2 changed files with 5 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,
(15,1403,0,0,15,1024,0,0,0,'','Show gossip option if player is a Druid'),
(15,1403,1,0,15,1024,0,0,0,'','Show gossip option if player is a Druid'),
(15,1403,2,0,15,1024,0,0,0,'','Show gossip option if player is a Druid'),
(15,1403,3,0,8,0,3781,0,0,'','Mathrengyl Bearwalker - Show gossip option if player has rewarded quest 3781'),
(15,3921,0,0,15,1024,0,0,0,'','Show gossip option if player is a Druid'),
(15,3921,1,0,15,1024,0,0,0,'','Show gossip option if player is a Druid'),
(15,3921,2,0,15,1024,0,0,0,'','Show gossip option if player is a Druid'),

View File

@@ -0,0 +1,4 @@
-- Add option conditions for Druid trainers
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (15) AND `SourceGroup` IN (1403) AND `SourceEntry` IN (3);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(15,1403,3,0,8,0,3781,0,0,'','Mathrengyl Bearwalker - Show gossip option if player has rewarded quest 3781');