[Release] Morial the Crazed menu

User Tag List

Results 1 to 9 of 9
  1. #1
    kreegoth's Avatar Contributor
    Reputation
    122
    Join Date
    Jun 2008
    Posts
    810
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] Morial the Crazed

    heres another boss release of mine..

    -Morial the Crazed-

    This is a different sort of fight that you dont encounter much in WOW
    His Melee is Weak.. For a boss that is..
    But he casts spells that are powerful and does so Quickly
    He also Area confuses during the fight every so often( it is a fair amount be warned)
    He will also cast Chains of ice at random targerts and root them with a DOT
    At some point in time he creates a Frost portal and summons a Ice pet out of it.
    Ice pet has a decent amount of hps and has 3 spells it casts itself..
    below 20% Morial casts area confusion alot more so youll be confused about half the time during the fight and if you havent taken care of the icepet before then itll just run around and wipe your raid while your confused.

    heres the LUA's and the Sqls for it all spawn id for Morial is 887899

    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 ('887899','Morial the Crazed','Accursed Wizard','','0','7','0','3','2563','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 ('887899','71','71','148','92021','92212','999871','0','2400','1200','1400','0','0','0','0','0','0','0','36000','2300','45','45','45','45','45','45','1','0','1','0','0','0','4.5','8','14')
    
    INSERT INTO creature_names (entry, name, subname, info_str, Flags1, type, family, rank, male_displayid, female_displayid, male_displayid2, female_displayid2, civilian, leader) VALUES ('887898','Summoned Frost Image','','','0','4','0','3','146','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 ('887898','70','70','152','43123','44123','0','0','1600','1771','2491','0','0','0','0','0','0','0','0','1820','0','0','0','0','0','0','1','0','1','0','0','0','2.5','8','14')
    Lua for Morial

    Code:
    function FelWizard_EnterCombat (pUnit, event)
             pUnit:SendChatMessage(14, 0, "You dare to challenge me here? Do you not know who i AM! ")
             pUnit:RegisterEvent("FelWizard_Firebolt", 1000, 1)
             pUnit:RegisterEvent("FelWizard_Blink", 9000, 0) 
             pUnit:RegisterEvent("FelWizard_Lightning", 5000, 0) 
             pUnit:RegisterEvent("FelWizard_Phase2", 1000, 0)
    end
    
    function FelWizard_Firebolt (pUnit, event)
             pUnit:FullCastSpellOnTarget(39023, pUnit:GetClosestPlayer())
    end
    
    function FelWizard_Blink (pUnit, event)
             pUnit:CastSpell(41397)
    end
    
    function FelWizard_Lightning (pUnit, event)
             pUnit:FullCastSpellOnTarget(44318, pUnit:GetMainTank())
    end
    
    function FelWizard_Phase2 (pUnit, event)
          if pUnit:GetHealthPct() < 76 then
             pUnit:RemoveEvents()        
             pUnit:SendChatMessage(14, 0, "The knowledge of the past is MINE! MINE!")
             pUnit:RegisterEvent("FelWizard_Flame", 4000, 0)
    	 pUnit:RegisterEvent("FelWizard_Blink", 9000, 0)      
             pUnit:RegisterEvent("FelWizard_Shield", 5000, 0)
             pUnit:RegisterEvent("FelWizard_Phase3", 1000, 0)
    	 pUnit:CastSpell(42049)
    	 X = pUnit:GetX();
    	 Y = pUnit:GetY();
    	 Z = pUnit:GetZ();
    	 O = pUnit:GetO();
    	 X = X + 4
    	 Y = Y + 4
    	 pUnit:SpawnCreature(887898, X, Y, Z, O, 73, 0);
      end
    end
    
    function FelWizard_Flame (pUnit, event)
             pUnit:FullCastSpellOnTarget(40657, pUnit:GetMainTank())
    end
    
    function FelWizard_Blink (pUnit, event)
             pUnit:CastSpell(41397)
    end
    
    function FelWizard_Shield (pUnit, event)
             pUnit:CastSpell(33054)
    end
    
    function FelWizard_Phase3 (pUnit, event)
          if pUnit:GetHealthPct() < 49 then
             pUnit:RemoveEvents()        
             pUnit:RegisterEvent("FelWizard_Blast", 4000, 0)
             pUnit:RegisterEvent("FelWizard_Blink", 9000, 0)
             pUnit:RegisterEvent("FelWizard_Confuse", 5000, 0)
             pUnit:RegisterEvent("FelWizard_Nova", 6000, 0) 
             pUnit:RegisterEvent("FelWizard_Deluge", 7000, 0)
             pUnit:RegisterEvent("FelWizard_Phase4", 1000, 0)
      end
    end
    
    function FelWizard_Blast (pUnit, event)
             pUnit:CastSpell(37675)
    end
    
    function FelWizard_Blink (pUnit, event)
             pUnit:CastSpell(41397)
    end
    
    function FelWizard_Confuse (pUnit, event)
             pUnit:FullCastSpellOnTarget(40453, pUnit:GetMainTank())
    end
    
    function FelWizard_Nova (pUnit, event)
             pUnit:CastSpell(19821)
    end
    
    function FelWizard_Deluge (pUnit, event)
             pUnit:FullCastSpellOnTarget(22744, pUnit:GetRandomPlayer(0))
    end
    
    function FelWizard_Phase4 (pUnit, event)
          if pUnit:GetHealthPct() < 20 then
             pUnit:RemoveEvents()
             pUnit:SendChatMessage(14, 0, "You were foolish to have confronted me in my arcane sanctum!")
             pUnit:RegisterEvent("FelWizard_Blink", 7000, 0)
    	 pUnit:RegisterEvent("FelWizard_Deluge", 6000, 0)
      end
    end
    
    function FelWizard_Blink (pUnit, event)
             pUnit:CastSpell(41397)
    end
    
    function FelWizard_Deluge (pUnit, event)
             pUnit:FullCastSpellOnTarget(22744, pUnit:GetRandomPlayer(0))
    end
    
    function FelWizard_LeaveCombat (pUnit, event)
             pUnit:RemoveEvents()
    end
    
    function FelWizard_Die (pUnit, event)
             pUnit:RemoveEvents()
             pUnit:SendChatMessage(14, 0, "Pitiful... To have been defeated by the likes of you...")     
    end
    
    RegisterUnitEvent(887899, 1, "FelWizard_EnterCombat")
    RegisterUnitEvent(887899, 2, "FelWizard_LeaveCombat")
    RegisterUnitEvent(887899, 4, "FelWizard_Die")
    Ice pet Lua
    Code:
    function Icesummon_EnterCombat (pUnit, event)
             pUnit:SendChatMessage(14, 0, "Who must I slay Morial?")
             pUnit:RegisterEvent("FelWizard_Icefrost", 1000, 1)
             pUnit:RegisterEvent("FelWizard_Frostshield", 2000, 0) 
             pUnit:RegisterEvent("FelWizard_Frostflare", 5000, 0)       
    end
    
    function Icesummon_Icefrost (pUnit, event)
             pUnit:FullCastSpellOnTarget(43427, pUnit:GetClosestPlayer())
    end
    
    function Icesummon_Frostshield (pUnit, event)
             pUnit:CastSpell(31256)
    end
    
    function Icesummon_Frostflare (pUnit, event)
             pUnit:FullCastSpellOnTarget(21099, pUnit:GetMainTank())
    end
    
    function Icesummon_LeaveCombat (pUnit, event)
             pUnit:RemoveEvents()
    end
    
    function Icesummon_Die (pUnit, event)
             pUnit:RemoveEvents()
             pUnit:SendChatMessage(14, 0, "I...have....Failed")     
    end
    
    RegisterUnitEvent(887898, 1, "Icesummon_EnterCombat")
    RegisterUnitEvent(887898, 2, "Icesummon_LeaveCombat")
    RegisterUnitEvent(887898, 4, "Icesummon_Die")
    The following screenshot was taken after he summoned his pet you can see the effect of the frost portal in the back ground.

    Screenshot:

    [Release] Morial the Crazed
  2. #2
    adde007's Avatar Member
    Reputation
    3
    Join Date
    Jul 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i like it man shall test it now

  3. #3
    Wolverine77's Avatar Member
    Reputation
    9
    Join Date
    Dec 2007
    Posts
    213
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    another asweome scripted boss from you, keep up the good work

  4. #4
    stoneharry's Avatar Moderator Harry

    Authenticator enabled
    Reputation
    1613
    Join Date
    Sep 2007
    Posts
    4,554
    Thanks G/R
    151/146
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    I admit this is a good script, but theres only one thing I saw and hated.

    "you can see the effect of the frost portal in the back ground."

    I may have misunderstood but if your trying to say that it was really hard to do that and it took time and effert... All i have to say is bull' *cough* All it is, is a simple CastSpell... It's the boss portal state...

    Flame Flame Flame

  5. #5
    kreegoth's Avatar Contributor
    Reputation
    122
    Join Date
    Jun 2008
    Posts
    810
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LOL Right....... As for your observation yes apparently you misunderstood, i said that so people didnt ask what the effect was over the creatures in the screen shot...But thats for posting:Sylvia:

    its funny when people do actually put a decent amount of time into these things only to flamed for something so mundane...

  6. #6
    TruePimp's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice man would +rep if I could :\ Cool spells I love people (not homosexually in any way o.O) that post their lua's so I can learn from other people Thanks

    EDIT: I could +rep and I did
    Last edited by TruePimp; 09-08-2008 at 08:03 PM.

  7. #7
    stoneharry's Avatar Moderator Harry

    Authenticator enabled
    Reputation
    1613
    Join Date
    Sep 2007
    Posts
    4,554
    Thanks G/R
    151/146
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Hey, I've done a few of half-decent things for mmowned and I put a lot of effert into them, but what I cant stand is when somone acts all... I don't know what word to use, "boasty"... Seriously 99% of the time I'm way better than the person insulting me, so I've got used to replying like that. I'm sorry I misunderstood, but don't get pi', I mean angry because I flamed.

    Good Day

    Edit: Now I feel like a prick, after going to sleep after a bad day and going back to this post, I now read "effect" in what I thought said "effert". I'm sorry for the misunderstanding, Good Luck.

  8. #8
    blind999's Avatar Member
    Reputation
    4
    Join Date
    Jan 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That is really really nice. And I learnt so much from this. If you actually read how many scripts there are on mmowned and you revised them youd learn so much and this one helped me most probably. It uses a nice structure and a neat script. Well done

    + rep if i can

  9. #9
    Etna's Avatar Banned
    Reputation
    20
    Join Date
    Sep 2007
    Posts
    349
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WoW Nice i going to use this mate +rep x2

    EDIT: I +rep u when i can i still got CD :P

Similar Threads

  1. [Maybe Soon Release] Northrend + The Frozen Throne
    By costel_gabitu in forum World of Warcraft Model Editing
    Replies: 13
    Last Post: 05-06-2008, 09:54 AM
  2. [Release] MMOwned - The Stickman Movie
    By Succy in forum Screenshot & Video Showoff
    Replies: 4
    Last Post: 04-05-2008, 03:35 AM
  3. [RELEASE/EVENT] The MMOWNED Faire.
    By Tobii in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 02-26-2008, 11:57 AM
  4. [Release/in the works] Ascent WoW Lich King Website !
    By latruwski in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 12-16-2007, 05:24 AM
  5. [Release] Finally the Full list of 2.3 Items
    By Matis02 in forum World of Warcraft Emulator Servers
    Replies: 13
    Last Post: 12-09-2007, 12:09 AM
All times are GMT -5. The time now is 12:07 PM. 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