mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-28 04:42:10 +01:00
rename files
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
--
|
||||
UPDATE `creature` SET `MovementType`=2 WHERE `guid`=33909;
|
||||
@@ -1,3 +1,4 @@
|
||||
/*
|
||||
-- Rot Hide Gnoll SAI
|
||||
SET @ENTRY := 1674;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
|
||||
@@ -5,3 +6,4 @@ DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,0,0,100,0,7000,21000,120000,125000,11,3237,0,0,0,0,0,2,0,0,0,0,0,0,0,"Rot Hide Gnoll - In Combat - Cast 'Curse of Thule'"),
|
||||
(@ENTRY,0,1,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Rot Hide Gnoll - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
*/
|
||||
@@ -1,3 +1,4 @@
|
||||
/*
|
||||
--
|
||||
-- Remove Loot From NPC Who SHould Not Have Any
|
||||
DELETE FROM `creature_loot_template` WHERE `entry` IN
|
||||
@@ -1095,3 +1096,4 @@ UPDATE `areatrigger_teleport` SET `target_position_x` = -327.5286, `target_posit
|
||||
|
||||
-- NOTE! be carefull with this unitflags 32768. Implement NPC Swimming Proper Animations
|
||||
UPDATE `creature_template` SET `Unit_Flags`=`Unit_Flags`|32768 WHERE `InhabitType` IN (2);
|
||||
*/
|
||||
@@ -1,3 +1,4 @@
|
||||
/*
|
||||
-- Right and Left Camp Attack
|
||||
-- ======================================
|
||||
-- All Bosses Are Immune To Crowd Control -- Daze, Horror, Shackle, Banish, Polymorph, Knockout, Freeze, Stun, Snare, Sleep, Silence, Pacify, Root, Fear, Distract, Disarm, Confused, Charm
|
||||
@@ -135,3 +136,4 @@ INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`,
|
||||
|
||||
-- VanCleef Adds (Should Not Random Move)
|
||||
UPDATE `creature` SET `SpawnDist` = 0, `MovementType` = 0 WHERE `guid` IN (79369,79370);
|
||||
*/
|
||||
@@ -1,4 +1,5 @@
|
||||
--
|
||||
/*
|
||||
SET @NPC := 26908;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2 WHERE `guid`=@NPC;
|
||||
@@ -70,3 +71,4 @@ INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`
|
||||
(@PATH, 62, -1709.83, -507.869, -12.8309, 0),
|
||||
(@PATH, 63, -1729.44, -528.724, -13.8673, 0),
|
||||
(@PATH, 64, -1731.65, -542.165, -13.1692, 0);
|
||||
*/
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
-- UPDATE `creature` SET `MovementType`=2 WHERE `guid`=33909;
|
||||
@@ -2,6 +2,8 @@ DELETE FROM `command` WHERE `permission`=698;
|
||||
INSERT INTO `command` (`name`, `permission`, `help`) VALUES
|
||||
('character changeaccount', 698, 'Syntax: .character changeaccount [$player] $account\n\nTransfers ownership of named (or selected) character to another account');
|
||||
|
||||
UPDATE `trinity_string` SET `entry`=1999 WHERE `entry`=1184; -- 1184 was already used on 4.3.4 but no on master, on master 1999 is used but it will never be used on 3.3.5a/4.3.4 so i reuse this
|
||||
|
||||
DELETE FROM `trinity_string` WHERE `entry`=1184;
|
||||
INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES
|
||||
(1184, 'Successfully transferred ownership of character %s to account %s');
|
||||
Reference in New Issue
Block a user