[Release] Dragon Boss "Enyxia" menu

Shout-Out

User Tag List

Results 1 to 12 of 12
  1. #1
    glurpie123321's Avatar Member
    Reputation
    12
    Join Date
    May 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] Dragon Boss "Enyxia"

    I have made a dragon boss and you can say it is a little uppgrade from Onyxia so I called it Enyxia

    I think you need about 10-15(depending on gear and lvl) ppl to down here and all need to be skilled and focused Especially the MT and melee dps.

    tacts:
    it is 2 phases and in the first she casts:
    *shadow crash at main tank every 20 sec (just like Illidan) and is needed to be moved out from there since it ticks for 5 k/s
    *Breath of Fire every 30 sec in a cone infront her so all melee dps needs to be behind
    *Shadow bolt volley every 15 sec on the whole raid
    *Shadow nova on a random person the does aoe damage and a little knockback

    The second phase starts at 30 percent when she spawns 15 small whelps that doesent have so much hp but hits very fast and need to be aoed to death fast.
    *second phase is only a little wingbuffet every 30 sec and flame breath.

    ok here the sql's is and the script. and i'll shoud suggest you spawn it in Onyxias lair since the whelps will spawn there or you can just change the Script.

    Code:
    INSERT INTO creature_names (entry, name, subname, info_str, Flags1, type, family, rank, male_displayid, female_displayid, male_displayid2, female_displayid2, civilian, leader) VALUES ('90040','Enyxia','','','0','2','0','3','20510','0','0','0','0','0')
    
    INSERT INTO creature_proto (entry, minlevel, maxlevel, faction, minhealth, maxhealth, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, equipmodel1, equipmodel2, equipmodel3, respawntime, armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, auras, boss, money, invisibility_type, death_state, walk_speed, run_speed, fly_speed) VALUES ('90040','71','71','1768','3000000','3000000','100000','0','2000','9000','10000','0','0','0','0','0','0','0','0','2000','0','0','0','0','0','0','1','0','1','0','0','0','2.5','8','14')
    Code:
    INSERT INTO creature_names (entry, name, subname, info_str, Flags1, type, family, rank, male_displayid, female_displayid, male_displayid2, female_displayid2, civilian, leader) VALUES ('90042','Enyxias sons','','','0','2','0','1','20515','0','0','0','0','0')
    
    INSERT INTO creature_proto (entry, minlevel, maxlevel, faction, minhealth, maxhealth, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, equipmodel1, equipmodel2, equipmodel3, respawntime, armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, auras, boss, money, invisibility_type, death_state, walk_speed, run_speed, fly_speed) VALUES ('90042','70','70','1768','5000','5000','10000','0','1500','500','1000','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1','0','0','0','0','0','2.5','14','14')
    Code:
    	function Enyxia_OnCombat(Unit, Event) 
    Unit:SendChatMessage(12, 0, "Ahh.. Im indeed in need for some fresh food..! Come here all so i can eat you! ")
    Unit:RegisterEvent("Enyxia_Flamecrash", 20000, 0)
    Unit:RegisterEvent("Enyxia_BreatOfFiree", 30000, 0)
    Unit:RegisterEvent("Enyxia_Sbvollley", 15000, 0)
    Unit:RegisterEvent("Enyxia_Tailswap", 90000, 0)
    Unit:RegisterEvent("Enyxia_Shadownova", 25000, 0)
    Unit:RegisterEvent("Enyxia_Sons",1000,0)
    end
    
    function Enyxia_Flamecrash(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(40832, pUnit:GetMainTank()) 
    end
    
    function Enyxia_BreatOfFiree(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(23461, pUnit:GetMainTank()) 
    end
    
    function Enyxia_Sbvollley(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(25586, pUnit:GetRandomPlayer(0)) 
    end
    
    function Enyxia_Tailswap(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(38737, pUnit:GetMainTank()) 
    end
    
    function Enyxia_Shadownova(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(30852, pUnit:GetRandomPlayer(0)) 
    end
    
    function Esons_Spawn(pUnit, Event) 
    pUnit:SpawnCreature(90042, -15.250291, -243.588867, -87.90000, 0.881205, 1768, 9999999) 
    end
    
    function Enyxia_Flamebreeth(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(23461, pUnit:GetMainTank()) 
    end
    
    function Enyxia_Tailsweaap(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(38737, pUnit:GetMainTank()) 
    end
    
    function Enyxia_Wingbuffet(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(38110, pUnit:GetMainTank()) 
    end
    
    function Enyxia_ShadowNoova(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(30852, pUnit:GetRandomPlayer(0)) 
    end
    
    function Enyxia_Sons(pUnit, Event) 
    if pUnit:GetHealthPct() < 30 then 
    pUnit:RemoveEvents(); 
    pUnit:FullCastSpell(0)
    pUnit:RegisterEvent("Esons_Spawn",1,15)
    pUnit:RegisterEvent("Enyxia_Flamebreeth", 20000, 0)
    pUnit:RegisterEvent("Enyxia_Tailsweaap", 90000, 0)
    pUnit:RegisterEvent("Enyxia_Wingbuffet", 30000, 0)
    end 
    end
    
    function Enyxia_OnLeaveCombat(Unit, Event) 
    Unit:RemoveEvents() 
    end
    
    function Enyxia_OnDied(Unit, Event) 
    Unit:RemoveEvents()
    end
    
    function Enyxia_OnKilledTarget(Unit, Event) 
    end
    
    RegisterUnitEvent(90040, 1, "Enyxia_OnCombat")
    RegisterUnitEvent(90040, 2, "Enyxia_OnLeaveCombat")
    RegisterUnitEvent(90040, 3, "Enyxia_OnKilledTarget")
    RegisterUnitEvent(90040, 4, "Enyxia_OnDied")
    The spawn Id For the npc is 90040

    Enjoy!

    [Release] Dragon Boss &quot;Enyxia&quot;
  2. #2
    Power of Illuminati's Avatar Contributor
    Reputation
    179
    Join Date
    May 2008
    Posts
    1,410
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, onyxia <3 Good that someone "upgraded" her.

    Also, wouldn't hurt if you updated your script some more So she gets more pwnsor. What about 5 phases? =D With tricky parts? =) Do that and you have earned the +Rep I will give you now

    To much rep last 24 hours.. gives it later =(

  3. #3
    baseballdude02's Avatar Active Member
    Reputation
    36
    Join Date
    May 2007
    Posts
    71
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Very nice

    VERY NICE! +Rep

    Everything works perfect for me =D. I moved 'em to a nice cave in Hyjal
    (.worldport 1 4853 -1780 1160)

    The people on my server are really having a lot of fun with this boss!

    thanks

  4. #4
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Woot, love you! +repzors

    EDIT: Must spread rep >.>

  5. #5
    kenefcho's Avatar Member
    Reputation
    2
    Join Date
    May 2008
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi can you tell me spell that make more dmg for boss i have fun server and this dmg is to litle i need 5-10k dmg whit spell and dmg not only for tank but and for all character that fithe whit this boss

  6. #6
    TheSpidey's Avatar Elite User
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    2,200
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Either find a buff that increases his school damage, or just find a stronger spell :P

  7. #7
    b!atch's Avatar Member
    Reputation
    118
    Join Date
    Oct 2007
    Posts
    726
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nizzle ;D
    Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>

  8. #8
    glurpie123321's Avatar Member
    Reputation
    12
    Join Date
    May 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm glad you liked it all, and ty for rep =)

  9. #9
    BrantX's Avatar Contributor
    Reputation
    205
    Join Date
    Jul 2007
    Posts
    899
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so... This is your first script?



  10. #10
    xtavie's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you!!!!!

  11. #11
    Chyp's Avatar Member
    Reputation
    31
    Join Date
    Jan 2007
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Me likes. Going to add this to my DB, changing model though ;p

    +2 rep

  12. #12
    glurpie123321's Avatar Member
    Reputation
    12
    Join Date
    May 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice that you liked it all and ty for rep here is a new boss i've made -> http://www.mmowned.com/forums/emulat...tml#post934234

Similar Threads

  1. Lua Release - Rage (Boss)
    By Roger Fang in forum WoW EMU General Releases
    Replies: 11
    Last Post: 10-04-2008, 09:02 PM
  2. [Release] LUA Boss - Gilford the Legend
    By Babbaa in forum WoW EMU General Releases
    Replies: 12
    Last Post: 09-05-2008, 04:15 PM
  3. [Release]Sunwell Bosses Scripts
    By AzolexX in forum WoW EMU General Releases
    Replies: 12
    Last Post: 08-24-2008, 03:59 AM
  4. Geting the boss quote sound files.
    By Jotunheim in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 05-21-2008, 09:15 AM
  5. [Release] Dragon boss lua script
    By Lich King in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 04-18-2008, 07:56 PM
All times are GMT -5. The time now is 05:43 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search