chore(DB): import pending files

Referenced commit(s): faf46441f4
This commit is contained in:
AzerothCoreBot
2021-10-21 06:46:27 +00:00
parent faf46441f4
commit 0547a746eb

View File

@@ -0,0 +1,43 @@
-- DB update 2021_10_20_16 -> 2021_10_21_00
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_20_16';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2021_10_20_16 2021_10_21_00 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1633373542252288963'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1633373542252288963');
DELETE FROM `smart_scripts` WHERE `entryorguid`=3836 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(3836, 0, 0, 0, 62, 0, 100, 0, 50006, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Mountaineer Pebblebitty - On Gossip Option 0 Selected - Close Gossip'),
(3836, 0, 1, 0, 22, 0, 100, 0, 77, 5000, 10000, 0, 0, 1, 210, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Mountaineer Pebblebitty - Received Emote 77 - Say Randomized Line 210'),
(3836, 0, 2, 0, 22, 0, 100, 0, 41, 5000, 10000, 0, 0, 1, 211, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Mountaineer Pebblebitty - Received Emote 41 - Emote Line 211'),
(3836, 0, 3, 0, 22, 0, 100, 0, 17, 5000, 10000, 0, 0, 5, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Mountaineer Pebblebitty - Received Emote 17 - Play Emote 2'),
(3836, 0, 4, 0, 22, 0, 100, 0, 101, 5000, 10000, 0, 0, 5, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Mountaineer Pebblebitty - Received Emote 101 - Play Emote 3'),
(3836, 0, 5, 0, 22, 0, 100, 0, 78, 5000, 10000, 0, 0, 5, 66, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Mountaineer Pebblebitty - Received Emote 78 - Play Emote 66');
DELETE FROM `creature_text` WHERE `CreatureID`=3836;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(3836, 210, 1, 'Keep it up, $N, and I\'ll beat some manners into you.', 12, 0, 100, 0, 0, 0, 1404, 0, 'Mountaineer Pebblebitty - Say on Receive Emote 2'),
(3836, 210, 2, 'Don\'t make me go medieval on you.', 12, 0, 100, 0, 0, 0, 1403, 0, 'Mountaineer Pebblebitty - Say on Receive Emote'),
(3836, 210, 0, 'You\'re pushing it $N.', 12, 0, 100, 0, 0, 0, 1402, 0, 'Mountaineer Pebblebitty - Say on Receive Emote 3'),
(3836, 211, 0, '%s is not impressed.', 16, 0, 100, 11, 0, 0, 1401, 0, 'Mountaineer Pebblebitty - Emote on Receive Emote');
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2021_10_21_00' WHERE sql_rev = '1633373542252288963';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;