[Custom Raid Boss][Scripted][25 man] Kexx <The Creator> menu

User Tag List

Results 1 to 9 of 9
  1. #1
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Custom Raid Boss][Scripted][25 man] Kexx <The Creator>

    Hey guys, this is my new scripted boss fight, kexx, who is kifea's brother.

    he is in my opinion harder then kifea, tanks will need nature res.

    Overview of fight:
    HP: 4.5 million
    Damage: 2 - 5k on plate
    Attack speed: 1.8

    It's a tank and spank till 80% where he starts doing the main theme for this fight:

    It's constant damage (2-5k) then heavy burst damage at certin points.

    80%: Does a quick knockback, then does acid breath for 900 - 1100 and 150dmg 3 sec. tick for 45 seconds. also does

    Acid Geyser
    35 yd range
    Instant
    Deals 2188 to 2812 Nature to the target and all nearby players.

    to a random party member! (spread out!)

    65%: Knockback, and a rend on MT (2k a tick)

    40%: knockback, then does a aoe poison that does 1k damage to everyone in 10 yrds.

    25%: knockback, aura (150 tick) and
    Fel-Acid Breath
    15 yd range
    2 sec cast 2 sec cooldown
    Inflicts 2850 to 3150 Nature damage and an additional 2750 damage every 5 sec sec. to enemies in a cone in front of the caster. Lasts 20 sec.

    To MT then finshs with a poison bolt volley

    Note: Right at 25% I suggest tanks to be full hp and spell reflect/some anti magic skill, during testing i got hit for a 6k 3k 2k 5k then very fast 2k ticks + melee hits, need extreme heals.

    5%: Knockback, Shunder armor's tank (Reduces armor by 5k) then does a mortal strike and finally a spore explosion for 1k/tick.

    Note: you should have OT ready to pick up, mortal strike can crit (even when your uncritable) and hit up to 14k.

    Kill video:
    [yt]xT4e7NNjd1U[/yt]

    SQL:
    creature_names:
    Code:
    INSERT INTO creature_names VALUES 5454546	Kexx	The Creator		0	3	0	3	0	0	19639	0	0	0	1	2	0	0
    creature_proto:
    Code:
    INSERT INTO creature_proto VALUES 5454546	73	73	14	4500000	4500000	520000	1.5	0	1800	0	6000	9000	0	0	0	0	0	0	0	0	0	0	0	0	0	72000	0	100	100	100	100	100	100	1.5	1	0	1	5000000	0	0	2.5	8	14	0
    LUA script:
    Code:
    function kexx_1(pUnit, Event)
     if pUnit:GetHealthPct() < 99 then
      pUnit:RemoveEvents();
      pUnit:SendChatMessage(14, 0, "Intruders! You will die!")
      pUnit:RegisterEvent("kexx_2",1000, 0)
     end
    end
    
    function kexx_2(pUnit, Event)
     if pUnit:GetHealthPct() < 80 then
      pUnit:RemoveEvents();
      pUnit:SendChatMessage(14, 0, "Have a taste... for acid!")
    pUnit:CastSpell(30571)  
    pUnit:CastSpell(24839)
      pUnit:FullCastSpellOnTarget(38739, pUnit:GetRandomPlayer(0))  
      pUnit:PlaySoundToSet(12506)
      pUnit:RegisterEvent("kexx_3",1000, 0)
     end
    end
     
    function kexx_3(pUnit, Event)
     if pUnit:GetHealthPct() < 65 then
      pUnit:RemoveEvents();
      pUnit:SendChatMessage(14, 0, "You will not survive...")
      pUnit:PlaySoundToSet(12507)
    pUnit:CastSpell(30571)  
    pUnit:FullCastSpellOnTarget(36965, pUnit:GetMainTank())
      pUnit:RegisterEvent("kexx_4",1000, 0)
     end
    end
     
    function kexx_4(pUnit, Event)
     if pUnit:GetHealthPct() < 40 then
      pUnit:RemoveEvents();
      pUnit:SendChatMessage(14, 0, "The end is near... accept it!")
      pUnit:PlaySoundToSet(12508)
      pUnit:FullCastSpellOnTarget(46293, pUnit:GetRandomPlayer(0))
      pUnit:CastSpell(38811)
     pUnit:CastSpell(30571)  
     pUnit:RegisterEvent("kexx_5",1000, 0)
     end
    end
     
    function kexx_5(pUnit, Event)
     if pUnit:GetHealthPct() < 25 then
      pUnit:RemoveEvents();
      pUnit:SendChatMessage(14, 0, "Feel the poison seeping through your veins!")
      pUnit:PlaySoundToSet(12509)
    pUnit:CastSpell(30571)  
    pUnit:CastSpell(29865)  
    pUnit:CastSpell(30571)  
    pUnit:FullCastSpellOnTarget(40508, pUnit:GetMainTank())
      pUnit:FullCastSpellOnTarget(40095, pUnit:GetRandomPlayer(0))
      pUnit:RegisterEvent("kexx_6",1000, 0)
     end
    end
    
    
    function kexx_6(pUnit, Event)
     if pUnit:GetHealthPct() < 05 then
      pUnit:RemoveEvents();
      pUnit:SendChatMessage(14, 0, "I will destroy you all!")
      pUnit:PlaySoundToSet(12510)
    pUnit:CastSpell(30571)  
    pUnit:FullCastSpellOnTarget(31042, pUnit:GetMainTank())
      pUnit:FullCastSpellOnTarget(37335, pUnit:GetMainTank())
      pUnit:CastSpell(37966)
      pUnit:RegisterEvent("kexx_7",1000, 0)
     end
    end
    
    function kexx_7(pUnit, Event)
     if pUnit:GetHealthPct() < 100 then
      pUnit:RemoveEvents();        
     end
    end
    
    
    function Kil_OnKill (pUnit, Event)
    	pUnit:SendChatMessage(14, 0, "Who's next?")
    	pUnit:PlaySoundToSet(12501)
    end
    
    function Kil_EnterCombat (pUnit, Event)
    	pUnit:SendChatMessage(14, 0, "Prepare to die!")
    	pUnit:PlaySoundToSet(12500)
    end
    
    function boss_start(pUnit, Event)
     pUnit:RegisterEvent("kexx_1",1000, 0)
     end
    
    
    RegisterUnitEvent(5454546, 1, "Kil_EnterCombat")
    RegisterUnitEvent(5454546, 1, "boss_start")
    RegisterUnitEvent(5454546, 3, "Kil_OnKill")
    Please give credit, tell me how it works, I spawned in SM cath.
    Last edited by uberhak3r; 06-29-2008 at 08:36 AM.

    [Custom Raid Boss][Scripted][25 man] Kexx &lt;The Creator&gt;
  2. #2
    Tropem's Avatar Member
    Reputation
    26
    Join Date
    Jun 2007
    Posts
    179
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Atleast some SS? ( Screenshoots )

    Well, i will try this later!

  3. #3
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I put up a video of me killing him showing his abilitys

  4. #4
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1190
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks good but the sql's came out a bit wrong in the code box's
    If you need me you have my skype, if you don't have my skype then you don't need me.

  5. #5
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, I don't see anything wrong with them =/

  6. #6
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1190
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    5454546    Kexx    The Creator        0    3    0    3    0    0    19639    0    0    0    1    2    0    0
    Should look like:
    INSERT INTO creature_names VALUES 5454546 and so on
    If you need me you have my skype, if you don't have my skype then you don't need me.

  7. #7
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh, didn't notice, thanks

  8. #8
    Immüñé's Avatar Member
    Reputation
    9
    Join Date
    Apr 2008
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah I noticed it to, but this is cool

  9. #9
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Let me know guys if anyone adds this to there server, I'd love to join with a group and try and take him down from a 25 man aspect.

Similar Threads

  1. [Custom Boss][Scripted][25 Man raid] Kefia <Head Necromancer>
    By uberhak3r in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 06-28-2008, 03:06 PM
  2. [Release] Snowman! Custom scripted raid boss by B!atch ! ;O
    By b!atch in forum World of Warcraft Emulator Servers
    Replies: 22
    Last Post: 06-19-2008, 04:20 AM
  3. [Release] Cow Lord! Custom Scripted Raid Boss!
    By Murlock. in forum World of Warcraft Emulator Servers
    Replies: 28
    Last Post: 04-05-2008, 10:16 PM
  4. [Guide] How to make Custom Raid Bosses + Quest!
    By Drop_Warcrack in forum WoW EMU Guides & Tutorials
    Replies: 18
    Last Post: 02-29-2008, 10:29 PM
  5. [Release] Custom 25 Man Raid Boss / Quest.
    By Drop_Warcrack in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 01-03-2008, 08:00 AM
All times are GMT -5. The time now is 10:25 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search