Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.3.5][6.x] DB/Creature: Sunblade Mage Guard can wipe a party with Glaive Throw #16513

Closed
ikir83 opened this issue Feb 8, 2016 · 4 comments
Closed

Comments

@ikir83
Copy link

ikir83 commented Feb 8, 2016

Glaive Throw ability of simple mobs Sunblade Mage Guard in Magister's Terrace is ultra powerful for some strange reason. It killed all 5-men party 2-3 times. Critically hit 11k damage :-O

http://www.wowhead.com/npc=24683/sunblade-mage-guard#abilities
http://www.wowhead.com/spell=44478/glaive-throw

DB: 335.60
Rev: 814c3e7

@ghost
Copy link

ghost commented Feb 8, 2016

3.3.5 spell values: http://wotlk.openwow.com/spell=44478/glaive-throw
Deals 2828 - 3172 damage to target enemy. This effect will jump to 2 other nearby targets.
6.x values on wowhead: 2543 to 2855

I have no idea yet what happened in your event with 11k damage from that throw.

@Rushor
Copy link
Contributor

Rushor commented Feb 9, 2016

try this

-- Sunblade Mage Guard SAI
SET @ENTRY := 24683;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
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,1,1,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Out of Combat - Disable Combat Movement"),
(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Out of Combat - Stop Attacking"),
(@ENTRY,0,2,0,0,0,100,7,0,0,0,0,11,44475,1,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - In Combat - Cast 'Magic Dampening Field' (No Repeat) (Dungeon)"),
(@ENTRY,0,3,4,9,0,100,0,0,60,5000,5000,11,44478,0,0,0,0,0,2,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 0-60 Range - Cast 'Glaive Throw'"),
(@ENTRY,0,4,0,61,0,100,0,0,60,2300,5000,40,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 0-60 Range - Set Sheath Ranged"),
(@ENTRY,0,5,6,9,0,100,0,45,80,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 45-80 Range - Enable Combat Movement"),
(@ENTRY,0,7,0,61,0,100,0,45,80,0,0,20,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 45-80 Range - Start Attacking"),
(@ENTRY,0,8,0,9,0,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 0-5 Range - Enable Combat Movement"),
(@ENTRY,0,9,10,9,0,100,0,0,0,0,0,40,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 0-0 Range - Set Sheath Melee"),
(@ENTRY,0,10,0,61,0,100,0,0,0,0,0,20,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 0-0 Range - Start Attacking"),
(@ENTRY,0,11,12,9,0,100,0,5,20,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 5-20 Range - Disable Combat Movement"),
(@ENTRY,0,12,0,61,0,100,0,5,20,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Within 5-20 Range - Stop Attacking"),
(@ENTRY,0,13,0,2,0,100,7,0,15,0,0,23,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Between 0-15% Health - Increment Phase (No Repeat) (Dungeon)"),
(@ENTRY,0,14,15,2,0,100,1,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - Between 0-15% Health - Enable Combat Movement (No Repeat)"),
(@ENTRY,0,15,0,61,0,100,1,0,15,0,0,25,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Sunblade Mage Guard - Between 0-15% Health - Flee For Assist (No Repeat)"),
(@ENTRY,0,16,0,7,0,100,0,0,0,0,0,40,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sunblade Mage Guard - On Evade - Set Sheath Melee");

for some reason the glaive-throw spell was added multiple times in the old script

@Rushor Rushor changed the title [3.3.5] Sunblade Mage Guard can wipe a party with Glaive Throw [3.3.5][6.x] Sunblade Mage Guard can wipe a party with Glaive Throw Feb 9, 2016
@ikir83
Copy link
Author

ikir83 commented Feb 9, 2016

Maybe it was bouncing endless? We lasted few seconds so it was hard to understand what happened ah ah ah
We were Karazhan equipped, 4 of 5 were 71-72.
Maybe it was costars casting, a devastating little bug i've found playing dungeons is that some npc doesn't move, so they continue to cast. For example last shadow labyrinth part is super hard since to fight enemies you must go to them in melee range and you ago the next group which only cast since they can't move... and go on.
I will try again tuesday, yesterday it was late and didn't had the time to check correctly.
@Rushor i'm going to try this, i will let you know!!

@Rushor Rushor changed the title [3.3.5][6.x] Sunblade Mage Guard can wipe a party with Glaive Throw [3.3.5][6.x] DB/Creature: Sunblade Mage Guard can wipe a party with Glaive Throw Feb 9, 2016
@Rushor Rushor self-assigned this Feb 9, 2016
Rushor added a commit that referenced this issue Feb 9, 2016
* closes #16513
* thanks to ikir83 for report
@Rushor
Copy link
Contributor

Rushor commented Feb 9, 2016

unneeded duplicates of spellcast removed, it works fine now

Shauren pushed a commit that referenced this issue Apr 2, 2016
* closes #16513
* thanks to ikir83 for report

(cherry picked from commit 6106943)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants