[GUIDE] Custom Casting Boss menu

User Tag List

Results 1 to 7 of 7
  1. #1
    TheLoneWolf's Avatar Member
    Reputation
    5
    Join Date
    Jan 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [GUIDE] Custom Casting Boss

    Well, I made this script from scratch, just replace "NPC Entry ID" and "NPC Name" and "What you want your boss to say", or if you already know how to edit LUA scripts, go ahead and be my guest You can also change the percentages.

    (By the way, this script makes your Boss summon a strange minion that seems to look like a Frost Voidwalker. It will also make your Boss breathe fire after killing you or your raid. Also, what this script does, it makes your Boss say something at each percent of it's health. For example, if your attacking your Boss, and you get him to let's say 90%, he'll say something like, "Haha, I'm still alive!" or something. )

    Credits to me (Please keep my name intact with the script).

    --Written from scratch by Devin Adam Morales (Also known as Spearman360 or TheLoneWolf)

    function NPCName_Spell1(Unit)
    Unit:CastSpell(32663)
    end

    function NPCName_Spell2(Unit)
    Unit:CastSpell(23189)
    end

    function NPCName_Spell3(Unit)
    Unit:CastSpell(2938
    end

    function NPCName_Phase1(Unit, event)
    if Unit:GetHealthPct() < 90 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "What you want your Boss to say")
    Unit:RegisterEvent("NPCName_Spell1",10000, 1)
    Unit:RegisterEvent("NPCName_Phase2",1000, 0)
    end
    end



    function NPCName_Phase2(Unit, event)
    if Unit:GetHealthPct() < 70 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "What you want your Boss to say")
    Unit:RegisterEvent("NPCName_Spell2",10000, 1)
    Unit:RegisterEvent("NPCName_Phase3",1000, 0)
    end
    end



    function NPCName_Phase3(Unit, event)
    if Unit:GetHealthPct() < 50 then
    Unit:RemoveEvents()
    Unit:SendchatMessage(12, 0, "What you want your Boss to say")
    Unit:RegisterEvent("NPCName_Phase4",1000, 0)

    end
    end



    function NPCName_Phase4(Unit, event)
    if Unit:GetHealthPct() < 30 then
    Unit:RemoveEvents()
    Unit:SendchatMessage(12, 0, "What you want your Boss to say")
    Unit:RegisterEvent("NPCName_Phase5",1000, 0)

    end
    end



    function NPCName_Phase5(Unit, event)
    if Unit:GetHealthPct() < 10 then
    Unit:RemoveEvents()
    Unit:SendchatMessage(12, 0, "What you want your Boss to say")
    Unit:RegisterEvent("NPCName_Spell3",10000, 1)

    end
    end



    function NPCName_OnCombat(Unit, event)
    Unit:SendChatMessage(12, 0, "What you want your Boss to say")
    Unit:RegisterEvent("NPCName_Phase1",1000, 0)
    Unit:RegisterEvent("NPCName_Phase2",1000, 0)
    Unit:RegisterEvent("NPCName_Phase3",1000, 0)
    Unit:RegisterEvent("NPCName_Phase4",1000, 0)
    Unit:RegisterEvent("NPCName_Phase5",1000, 0)
    end


    function NPCName_OnLeaveCombat(Unit, event)
    Unit:RemoveEvents()

    end



    function NPCName_OnKilledTarget(Unit)
    Unit:SendChatMessage(12, 0, "What you want your Boss to say")
    Unit:CastSpell(2938
    end


    function NPCName_Death(Unit)
    Unit:SendChatMessage(12, 0, "What you want your Boss to say")
    Unit:RemoveEvents()

    end

    RegisterUnitEvent(NPC Entry Id, 1, "NPCName_OnCombat")
    RegisterUnitEvent(NPC Entry Id, 2, "NPCName_OnLeaveCombat")
    RegisterUnitEvent(NPC Entry Id, 3, "NPCName_OnKilledTarget")
    RegisterUnitEvent(NPC Entry Id, 4, "NPCName_Death")
    "The deadliest weapon in the world is a Marine and his Rifle!"

    [GUIDE] Custom Casting Boss
  2. #2
    blackfang500's Avatar Member
    Reputation
    35
    Join Date
    Apr 2007
    Posts
    491
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This would be a great guide if it was in the right place.

  3. #3
    SmotPoker's Avatar Member
    Reputation
    -2
    Join Date
    Feb 2008
    Posts
    701
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is this for private servers?

  4. #4
    Obama's Avatar Legendary
    Reputation
    721
    Join Date
    Dec 2006
    Posts
    2,321
    Thanks G/R
    2/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    emulator discussion would be a much better place

    Donator 6/2008.
    Contrib 8/2008.Elite 10/2008.Newsteam 11/2008.Legendary 2/2009.

  5. #5
    TheLoneWolf's Avatar Member
    Reputation
    5
    Join Date
    Jan 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How come dublecee? I mean, it's better of in the Strategy Guides seeing that it IS sort of a Guide.
    "The deadliest weapon in the world is a Marine and his Rifle!"

  6. #6
    [Soul Eater]'s Avatar The God King of Tails
    Reputation
    619
    Join Date
    Jan 2007
    Posts
    1,918
    Thanks G/R
    3/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maybe the script is intended for emulation purpose and not retail wow?

    Do the impossible, see the invisible
    Row row, Fight the power.

  7. #7
    MaqqiJoe's Avatar Member
    Reputation
    10
    Join Date
    Jun 2008
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Shouldnt this be in emu section?

Similar Threads

  1. [Guide] Custom instances
    By Chrispee in forum WoW EMU Guides & Tutorials
    Replies: 38
    Last Post: 08-11-2008, 08:56 AM
  2. [guide]Customs weps/ armor/ bags/ amo (Ascent*
    By bombhell in forum WoW EMU Guides & Tutorials
    Replies: 8
    Last Post: 03-02-2008, 09:10 PM
  3. [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
  4. Guide: Gearing for Bosses
    By xlAnonym0uslx in forum World of Warcraft Guides
    Replies: 3
    Last Post: 08-30-2007, 10:13 AM
All times are GMT -5. The time now is 01:47 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