[Question]Boss Fights. menu

User Tag List

Results 1 to 9 of 9
  1. #1
    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)

    [Question]Boss Fights.

    K, i am trying to do something on my server, its like a boss fight except its a little bit added...

    Here is what i am trying to see if this can work...

    k, you and your guild/party/raid group are going to kill The Lich King, and you get there and manage to get him to 50/40% of Health, When he gets to that % Of Health, He Casts a Spell to Heal Himself, And another boss, Uther Lightbringer, Come out of no were, And says " Dammit Arthas what has become of you! I Will help you hero's as long as i can! " and starts to help you kill/attack The Lich King, When The Lich King Reaches like 10% Of HP He runs away and says " I Have helped you hero's long enough, the Rest of the Battle is in Your Hands " And he vanishes or Leaves.

    Is it possible all of that, into a lua script

    Just like
    The Lich King reaches 50% of HP
    Casts a Healing Spell on Himself

    Uther Lightbringer Joins your battle
    Uther Lightbringer says someting

    The Lich King Reaches 10% of HP

    Uther Lightbringer Says Something
    Uther Lightbringer Leaves

    Is it possible, All i want is a Yes or No Answer... If Yes, Tell me how



    [Question]Boss Fights.
  2. #2
    jordash's Avatar Member
    Reputation
    22
    Join Date
    Nov 2007
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes it's possible.


  3. #3
    Arthas117's Avatar Knight-Champion
    Reputation
    151
    Join Date
    Mar 2007
    Posts
    483
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BrantX View Post
    K, i am trying to do something on my server, its like a boss fight except its a little bit added...

    Here is what i am trying to see if this can work...

    k, you and your guild/party/raid group are going to kill The Lich King, and you get there and manage to get him to 50/40% of Health, When he gets to that % Of Health, He Casts a Spell to Heal Himself, And another boss, Uther Lightbringer, Come out of no were, And says " Dammit Arthas what has become of you! I Will help you hero's as long as i can! " and starts to help you kill/attack The Lich King, When The Lich King Reaches like 10% Of HP He runs away and says " I Have helped you hero's long enough, the Rest of the Battle is in Your Hands " And he vanishes or Leaves.

    Is it possible all of that, into a lua script

    Just like
    The Lich King reaches 50% of HP
    Casts a Healing Spell on Himself

    Uther Lightbringer Joins your battle
    Uther Lightbringer says someting

    The Lich King Reaches 10% of HP

    Uther Lightbringer Says Something
    Uther Lightbringer Leaves

    Is it possible, All i want is a Yes or No Answer... If Yes, Tell me how
    Lol I really feel like scripting right now

    Yes, it's script able.. in LUA

    I can make up to 7 phases. Uther can easly be made with


    function LichKing_UtherEvent_1(unit)
    if Unit:GetHealthPct() <50
    Unit:SendChatMessage(12, 0, "Enough of this, mortals!")
    (spawn command here)
    RegisterEvent(1000, 1, "LichKing_UtherEvent_2")
    end

    function LichKing_UtherEvent_2(unit)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Uther... This aint possible! How dare you to come here alone!?")
    RegisterEvent(1000, 1, "LichKing_UtherEvent_3")
    end

    function LichKing_UtherEvent_3(unit)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "I've had... enough of this! You shall fall, in the name of The Lich King!")
    end


    And right, I can give you a Uther script also


    function Uther_Spawn(unit)
    Unit:SendChatMessage(12, 0, "Enough of what? You're giving up that easly?")
    Unit:RegisterEvent(1000, 0, "Uther_Spawn_2")
    end

    function Uther_Spawn_2(unit)
    Unit:SendChatMessage(12, 0, "I'm not alone, Arthas, you should seen that allready.")
    Unit:RegisterEvent(1000, 0, "Uther_Spawn_3")
    end

    function Uther_Spawn_3(unit)
    Unit:SendChatMessage(12, 0, "You've lost controll, Arthas, I never expected this to happen... But as you which... Charge!")
    end

    RegisterUnitEvent(<idForUther>, 6, "Uther_Spawn")


    Lol, I dunno how to fix that "Despawn when target get health pct" thing :P

    World best PvP Paladin=Me? GG ;D


  4. #4
    EcHoEs's Avatar lol why u mad
    Reputation
    374
    Join Date
    Sep 2006
    Posts
    1,646
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    function Uther_despawn(pUnit, Event)
    if pUnit:GetHealthPct() < 10 then
    pUnitespawn(1000, 50000000)
    end
    end

    And ofcourse, that has to be registered.


  5. #5
    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)
    Arthas117, I love you lol once i'll be able to give you rep, i'll give you some



  6. #6
    SectorSeven's Avatar Banned
    Reputation
    444
    Join Date
    Oct 2007
    Posts
    1,948
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  7. #7
    Arthas117's Avatar Knight-Champion
    Reputation
    151
    Join Date
    Mar 2007
    Posts
    483
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by EcHoEs View Post
    function Uther_despawn(pUnit, Event)
    if pUnit:GetHealthPct() < 10 then
    pUnitespawn(1000, 50000000)
    end
    end

    And ofcourse, that has to be registered.
    lol yeah, I was ordered to make the script, so I'll include that
    ty for that btw :P

    World best PvP Paladin=Me? GG ;D


  8. #8
    Arthas117's Avatar Knight-Champion
    Reputation
    151
    Join Date
    Mar 2007
    Posts
    483
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The script's done...
    Ok, first of all, you'll have to change the mob ID of Uther, and the spawns (Uther, and the Death Knights), you might see what you got to change :P

    function Arthas_Spell1(Unit)
    Unit:FullCastSpell(31984,Unit:GetClosestPlayer())
    end

    function Arthas_Spell2(Unit)
    Unit:FullCastSpell(41078,Unit:GetClosestPlayer())
    end
    function Arthas_Spell3(Unit)
    Unit:FullCastSpell(38533,Unit:GetClosestPlayer())
    end
    function Arthas_Phase1(Unit)
    if Unit:GetHealthPct() < 95 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Finger...Of Death!")
    Unit:RegisterEvent("Arthas_Spell(1)",8000, 0)
    Unit:RegisterEvent("Arthas_Phase2",1000, 0)
    end
    end
    function Arthas_Phase2(Unit)
    if Unit:GetHealthPct() < 85 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Shadow power always hided for me... Now I seek, and I find what I seek!")
    Unit:RegisterEvent("Arthas_Spell(2)",8000, 0)
    Unit:RegisterEvent("Arthas_Phase2",1000, 0)
    end
    end
    function LichKing_UtherEvent_1(Unit)

    if Unit:GetHealthPct() <50
    Unit:SendChatMessage(12, 0, "Enough of this, mortals!")
    Unit:SpawnCreature(entryID, x, y, z, o, faction, duration)
    RegisterEvent(1000, 1, "LichKing_UtherEvent_2")
    end
    end
    function LichKing_UtherEvent_2(unit)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Uther... This aint possible! How dare you to come here alone!?")
    RegisterEvent(1000, 1, "LichKing_UtherEvent_3")
    end
    end
    function LichKing_UtherEvent_3(unit)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "I've had... enough of this! You shall fall, in the name of The Lich King!")
    end
    end
    function Arthas_Phase3(Unit)
    if Unit:GetHealthPct() < 35 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Shh... Let the shadows burn quiet into the bone!")
    Unit:RegisterEvent("Arthas_Spell(3)",8000, 0)
    Unit:RegisterEvent("Arthas_Phase2",1000, 0)
    end
    end
    function Arthas_Phase4(Unit)
    If Unit:GetHealthPct() < 10 then
    Unit:SpawnCreature(6660661, x, y, z, o, faction, duration)
    Unit:SpawnCreature(6660662, x, y, z, o, faction, duration)
    Unit:SpawnCreature(6660663, x, y, z, o, faction, duration)
    Unit:SendChatMessage(12, 0, "Come Memebers of The Scourge, And Rip these Mortal's Souls Apart!")
    end
    end
    function Arthas_OnCombat
    Unit:SendChatMessage(12, 0, "You got no chance against The Lich King! Now, face my wrath!")
    Unit:RegisterEvent(5000, 1, "Arthas_Phase1")
    end
    function Arthas_OnKill
    Unit:SendChatMessage(12, 0, "Your soul is captured...")
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    Unit:CastSpell(21054)
    end
    function Arthas_Death
    Unit:SendChatMessage(12, 0, "My soul... Will rest... In the deepest of hell...")
    end
    RegisterUnitEvent(6660660, 1, "Arthas_OnCombat")
    RegisterUnitEvent(6660660, 3, "Arthas_OnKill")
    RegisterUnitEvent(6660660, 4, "Arthas_Death")
    end
    function Uther_Spawn(unit)
    Unit:SendChatMessage(12, 0, "Enough of what? You're giving up that easly?")
    Unit:RegisterEvent(1000, 0, "Uther_Spawn_2")
    end
    function Uther_Spawn_2(unit)
    Unit:SendChatMessage(12, 0, "I'm not alone, Arthas, you should've seen that allready.")
    Unit:RegisterEvent(1000, 0, "Uther_Spawn_3")
    end
    function Uther_Spawn_3(unit)
    Unit:SendChatMessage(12, 0, "You've lost controll, Arthas, I never expected this to happen... But as you which... Charge!")
    end
    RegisterUnitEvent(<idForUther>, 6, "Uther_Spawn")
    end

    World best PvP Paladin=Me? GG ;D


  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)
    Arthas117 is teh Sex lol, +rep if it works and you will be credited in my release page...



Similar Threads

  1. [Bot] Question on: FSM, Behavior Tree with variable boss fight behavior.
    By Megamike55 in forum WoW Memory Editing
    Replies: 3
    Last Post: 12-21-2010, 01:46 PM
  2. [Question] Boss Scripting in Mangos
    By Aranx in forum WoW EMU Guides & Tutorials
    Replies: 0
    Last Post: 06-01-2008, 05:28 AM
  3. [Release] Custom Scripted Boss Fight: Your Mom
    By dude891 in forum World of Warcraft Emulator Servers
    Replies: 11
    Last Post: 04-13-2008, 08:08 PM
  4. [Help] Boss Fights
    By jimmy2222 in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 01-26-2008, 03:20 PM
  5. [Question] Boss Spells At Certain % Of Health
    By Performer in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 12-23-2007, 06:17 AM
All times are GMT -5. The time now is 09:38 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