[FrostTeam] Obsidan Sanctum Trash menu

User Tag List

Results 1 to 5 of 5
  1. #1
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [FrostTeam] Obsidan Sanctum Trash

    This is something I have done in 15 minutes =)
    My next release wil be the bosses, totally blizzlike, like these trash mobs


    Code:
    function OnyxBlaze(pUnit, Event)
    local fbtime=math.random(15465, 19867)
    pUnit:RegisterEvent("FlameShock", fbtime, 0)
    pUnit:RegisterEvent("RainofFire", 27645, 0)
    end
    
    function FlameShock(pUnit, Event)
    local plr = pUnit:GetClosestPlayer()
    if (plr ~= nil) then
    pUnit:FullCastSpellOnTarget(39529, plr)
    pUnit:FullCastSpellOnTarget(58940, plr)
    end
    end
    
    function RainofFire(pUnit, Event)
    Choice=math.random(1,2)
    if Choice == 1 then
    pUnit:FullCastSpellOnTarget(58936, pUnit:GetMainTank())
    end
    if Choice == 2 then
    pUnit:FullCastSpellOnTarget(57757, pUnit:GetMainTank())
    end
    end
    
    RegisterUnitEvent(30681, 1, "OnyxBlaze")
    
    
    
    
    function OnyxBrood(pUnit, Event)
    local Didthat = 0
    pUnit:FullCastSpell(57740)
    local fbtime=math.random(13434, 16534)
    pUnit:RegisterEvent("Rage", 3000, 1)
    pUnit:RegisterEvent("Draconic", 30069, 0)
    pUnit:RegisterEvent("Mortal", fbtime, 0)
    end
    
    function Rage(pUnit, Event)
    pUnit:CastSpell(57740)
    local Didthat = 1
    end
    
    function Draconic(pUnit, Event)
    Choice=math.random(1,2)
    if Choice == 1 then
    pUnit:FullCastSpell(57733)
    end
    if Choice == 2 then
    pUnit:FullCastSpell(58942)
    end
    end
    
    function Mortal(pUnit, Event)
    pUnit:FullCastSpellOnTarget(13737, pUnit:GetMainTank())
    end
    
    RegisterUnitEvent(30680, 1, "OnyxBrood")
    
    
    
    
    function OnyxFlight(pUnit, Event)
    local fbtime=math.random(25978, 32454)
    pUnit:RegisterEvent("Hammer", fbtime, 0)
    pUnit:RegisterEvent("Pummel", 12323, 0)
    end
    
    function Hammer(pUnit, Event)
    pUnit:FullCastSpellOnTarget(57759, pUnit:GetRandomPlayer(6))
    end
    
    function Pummel(pUnit, Event)
    local plr = pUnit:GetClosestPlayer()
    if (plr ~= nil) then
    pUnit:FullCastSpellOnTarget(58953, plr)
    end
    end
    
    RegisterUnitEvent(30682, 1, "OnyxFlight")
    
    
    
    
    function OnyxSanctum(pUnit, Event)
    pUnit:FullCastSpellOnTarget(39647, pUnit:GetRandomPlayer(6))
    local fbtime=math.random(16545, 23434)
    pUnit:RegisterEvent("Curse", 120000, 0)
    pUnit:RegisterEvent("Frenzy", 60000, 1)
    pUnit:RegisterEvent("Shockwave", fbtime, 0)
    end
    
    function Curse(pUnit, Event)
    pUnit:FullCastSpellOnTarget(39647, pUnit:GetMainTank())
    end
    
    function Frenzy(pUnit, Event)
    pUnit:FullCastSpell(53801)
    end
    
    function Shockwave(pUnit, Event)
    Choice=math.random(1,2)
    if Choice == 1 then
    pUnit:FullCastSpellOnTarget(57728, pUnit:GetMainTank())
    end
    if Choice == 2 then
    pUnit:FullCastSpellOnTarget(58947, punit:GetMainTank())
    end
    end
    
    RegisterUnitEvent(30453, 1, "OnyxSanctum")
    
    
    
    
    function Sartharion(pUnit, Event)
    local fbtime=math.random(13545, 16545)
    pUnit:RegisterEvent("Fade", fbtime, 0)
    end
    
    function Fade(pUnit, Event)
    pUnit:FullCastSpellOnTarget(60708, punit:GetMainTank())
    end
    
    RegisterUnitEvent(31214, 1, "Sartharion")
    
    
    
    
    function Twilight(pUnit, Event)
    local fbtime=math.random(13545, 16545)
    pUnit:RegisterEvent("Fade", fbtime, 0)
    end
    
    function Fade(pUnit, Event)
    pUnit:FullCastSpellOnTarget(60708, punit:GetMainTank())
    end
    
    RegisterUnitEvent(31214, 1, "Twilight")

    [FrostTeam] Obsidan Sanctum Trash
  2. #2
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gj and Gz on cont
    Cheese Cake?

  3. #3
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you =)

  4. #4
    AzolexX's Avatar Contributor
    Reputation
    179
    Join Date
    May 2007
    Posts
    587
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good job, no need for you to do bosses, i done em, i will release it tonight as soon as i add in-range check's for buffs of 3 dragons, i am at school atm . +Repx2
    EDIT: Need to spread lol
    EDIT2: Instead of "nil" check's use "Player Data" check's it will prevent from lagging.
    Last edited by AzolexX; 12-13-2008 at 10:15 AM.

    Find about scripting, programming and music! My blog: https://worldofsmth.wordpress.com!

  5. #5
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome work once again bro!+Rep for you!


    Had any trouble go to the forums and post the bug!http://z13.invisionfree.com/FrostTeam/index.php?act=idx
    Last edited by bsod-staff14; 12-13-2008 at 04:58 PM.
    Immortal GamerZ Under Development!

Similar Threads

  1. [Guide] Obsidium Sanctums 25 Heroic trash infinite farm
    By dcrvtec in forum World of Warcraft Guides
    Replies: 9
    Last Post: 06-01-2014, 11:57 AM
  2. Aovoid some trash in Arcatraz.
    By Lucifear in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 02-23-2007, 04:39 AM
  3. Get to a boss without having to kill trash mobs
    By Matt in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 06-14-2006, 11:11 AM
  4. Scrap/Trash Accounts?
    By FrodoTBaggins in forum World of Warcraft General
    Replies: 8
    Last Post: 06-12-2006, 06:43 PM
  5. Play "Cash&Trash"
    By Lonsdale in forum World of Warcraft Guides
    Replies: 1
    Last Post: 05-31-2006, 08:15 PM
All times are GMT -5. The time now is 12:05 PM. 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