[Release]  Five Gum's Poison & Acid LUA. menu

Shout-Out

User Tag List

Results 1 to 11 of 11
  1. #1
    Bapesy's Avatar Banned
    Reputation
    35
    Join Date
    May 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] Five Gum's Poison & Acid LUA.

    Here is my Acid and Poison LUA.
    He has 4 phases, 99%, 60%, 40%, and 20%. He has about 3 Poison or Acid spells for each phase.
    This boss super hard. Recommended 5-10 man.
    All of his spells are either Poison or Acid Here are some screen shots -










    Credits -

    Krilio - Hosted the Test Server.


    If you find any problems, post them here I will fix asap.

    Here is the lua. Copy and paste it into Notepad then save it to your scripts folder all all files with the ending as .lua

    Code:
    function Gruk_OnCombat(Unit, Event) 
    Unit:SendChatMessage(12, 0, "%n, dare you enter my cave!")
    Unit:RegisterEvent("Gruk_Phase1",1000,0)
    end
    
    function Gruk_AcidSpit(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(26050, pUnit:GetRandomPlayer(0)) 
    end
    
    function Gruk_AcidicFang(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(29901, pUnit:GetMainTank()) 
    end
    
    function Gruk_WoundPoison(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(39665, pUnit:GetMainTank()) 
    end
    
    function Gruk_DebilitatingPoison(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(41978, pUnit:GetRandomPlayer(0)) 
    end
    
    function Gruk_Enrage(pUnit, Event) 
    pUnit:CastSpell(28131)
    end
    
    function Gruk_PoisonBolt(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(26601, pUnit:GetRandomPlayer(0)) 
    end
    
    function Gruk_PoisonBoltVolley(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(40095, pUnit:GetRandomPlayer(0)) 
    end
    
    function Gruk_PoisonCharge(pUnit, Event) 
    pUnit:FullCastSpellOnTarget(28431, pUnit:GetRandomPlayer(0)) 
    end
    
    function Gruk_Phase1(pUnit, Event) 
    if pUnit:GetHealthPct() < 99 then 
    pUnit:RemoveEvents(); 
    pUnit:RegisterEvent("Gruk_Phase2",1000,0)
    pUnit:RegisterEvent("Gruk_PoisonBoltVolley", 37000, 0)
    pUnit:RegisterEvent("Gruk_PoisonCharge", 15000, 0)
    end 
    end
    
    function Gruk_Phase2(pUnit, Event) 
    if pUnit:GetHealthPct() < 60 then 
    pUnit:RemoveEvents(); 
    pUnit:RegisterEvent("Gruk_Phase3",1000,0)
    pUnit:RegisterEvent("Gruk_AcidSpit", 18000, 0)
    pUnit:RegisterEvent("Gruk_AcidicFang", 30000, 0)
    end 
    end
    
    function Gruk_Phase3(pUnit, Event) 
    if pUnit:GetHealthPct() < 40 then 
    pUnit:RemoveEvents();
    pUnit:RegisterEvent("Gruk_Phase4",1000,0) 
    pUnit:RegisterEvent("Gruk_WoundPoison", 20000, 0)
    pUnit:RegisterEvent("Gruk_DebilitatingPoison", 50000, 0)
    end 
    end
    
    function Gruk_Phase4(pUnit, Event) 
    if pUnit:GetHealthPct() < 20 then 
    pUnit:RemoveEvents();
    pUnit:RegisterEvent("Gruk_Enrage", 20000, 0)
    pUnit:RegisterEvent("Gruk_PoisonBolt", 20000, 0)
    pUnit:RegisterEvent("Gruk_PoisonBoltVolley", 30000, 0)
    end 
    end
    
    
    
    
    
    function Gruk_OnDied (Unit, Event) 
    Unit:RemoveEvents() 
    Unit:SendChatMessage(12, 0, "My... Master... Will Remember... This.")
    end
    
    function Gruk_OnKilledTarget (Unit, Event) 
    Unit:SendChatMessage(12, 0, "%n, you will fall like the rest of them!") 
    end 
    
    
    RegisterUnitEvent(NPC ID, 1, "Gruk_OnCombat")
    RegisterUnitEvent(NPC ID, 3, "Gruk_OnKilledTarget")
    RegisterUnitEvent(NPC ID, 4, "Gruk_OnDied")
    Enjoy!

    Five Gum!

    [Release]  Five Gum's Poison &amp; Acid LUA.
  2. #2
    Juicyz's Avatar Active Member
    Reputation
    34
    Join Date
    Dec 2006
    Posts
    298
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice!!! Good Work.. Go WoDC 2x+ rep

    DA Gift From Mr. Blain

  3. #3
    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 work, will look on this and learn some. Love luas like this. Easy to learn

    +Rep (Must spread )

  4. #4
    Bapesy's Avatar Banned
    Reputation
    35
    Join Date
    May 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

    Five Gum!

  5. #5
    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)
    not bad,haha :P +rep !!

  6. #6
    Bapesy's Avatar Banned
    Reputation
    35
    Join Date
    May 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

    Five Gum!

  7. #7
    JCL's Avatar Member
    Reputation
    2
    Join Date
    Apr 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice, +rep!

  8. #8
    мιяаgє's Avatar Member
    Reputation
    42
    Join Date
    Jan 2008
    Posts
    210
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is awesome! Thanks loads. Going to install on my server now

  9. #9
    Ickybad's Avatar Contributor
    Reputation
    214
    Join Date
    Apr 2008
    Posts
    904
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice. Lua +rep

  10. #10
    MisterEMU's Avatar Banned
    Reputation
    38
    Join Date
    Feb 2008
    Posts
    307
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Bapes +Rep!

  11. #11
    Bapesy's Avatar Banned
    Reputation
    35
    Join Date
    May 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, np use them for the sunwell instance that we made.

    Five Gum!

Similar Threads

  1. [Sig Shop] Five Gum & Juicyz Sig Shop!
    By Bapesy in forum Art & Graphic Design
    Replies: 57
    Last Post: 06-14-2008, 04:57 PM
  2. [Release] Five Gum's OpenAscent Compiles || Updated Daily
    By Bapesy in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 05-20-2008, 05:54 AM
  3. [Release] Holiday Releases # 1.5 - Custom Boss Template For Lua
    By Snailz in forum World of Warcraft Emulator Servers
    Replies: 10
    Last Post: 02-14-2008, 07:14 AM
  4. [Release] Holiday Releases # 1.7 - Custom Aggro Template For Lua
    By Snailz in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 02-12-2008, 10:44 AM
All times are GMT -5. The time now is 10:00 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