[Share] Lua Boss menu

Shout-Out

User Tag List

Results 1 to 7 of 7
  1. #1
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Share] Lua Boss

    Simple Boss Fight
    change where it says "Change HERE"
    :wave:
    Edit - It was 5:00am Sorry I left out some code.. Fixed

    Code:
    functino Vivoxity_Phase6(Unit, Event)
    if Unit:GetHealthPct() <5 then
    RemoveEvents()
    Unit:SendChatMessage(12, 0, "I Will take you with me!"
    Unit:RegisterEvent(Vivoxity_Hex of Weakness",1000,0)
    Unit:RegisterEvent(Vivoxity_ShadowBolt",5000,0)
    Unit:RegisterEvent:SetScale(8)
    end
    end
    
    function Vivoxity_ShadowBolt(Unit)
    Unit:CastSpellOntarget(11661, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_Hex of Weakness(Unit)
    Unit:CastSpellOntarget(19285, Unit:GetRandomPlayer(0))
    end
    
    functino Vivoxity_Phase5(Unit, Event)
    if Unit:GetHealthPct() <30 then
    RemoveEvents()
    Unit:SendChatMessage(12, 0, "You will never win!"
    Unit:RegisterEvent(Vivoxity_Hex of Weakness",5000,0)
    Unit:RegisterEvent(Vivoxity_ShadowBolt",6000,0)
    Unit:RegisterEvent:SetScale(3)
    end
    end
    
    function Vivoxity_ShadowBolt(Unit)
    Unit:CastSpellOntarget(11661, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_Hex of Weakness(Unit)
    Unit:CastSpellOntarget(19285, Unit:GetRandomPlayer(0))
    end
    
    functino Vivoxity_Phase4(Unit, Event)
    if Unit:GetHealthPct() <30 then
    RemoveEvents()
    Unit:SendChatMessage(12, 0, "I SHALL PREVAIL!"
    Unit:RegisterEvent(Vivoxity_Hex of Weakness",5000,0)
    Unit:RegisterEvent:SetScale(2)
    end
    end
    
    function Vivoxity_ShadowBolt(Unit)
    Unit:CastSpellOntarget(11661, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_Hex of Weakness(Unit)
    Unit:CastSpellOntarget(19285, Unit:GetRandomPlayer(0))
    end
    
    functino Vivoxity_Phase3(Unit, Event)
    if Unit:GetHealthPct() <40 then
    RemoveEvents()
    Unit:SendChatMessage(12, 0, "Lets make this fun!"
    Unit:RegisterEvent(Vivoxity_ShadowBolt",6000,0)
    Unit:RegisterEvent:SetScale(6)
    end
    end
    
    function Vivoxity_ShadowBolt(Unit)
    Unit:CastSpellOntarget(11661, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_Hex of Weakness(Unit)
    Unit:CastSpellOntarget(19285, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_Phase2(Unit, Event)
    if Unit:GetHealthPct() < 75 then
    RemoveEvents()
    Unit:SendChatMessage(11, 0, "Lets try something else?")
    Unit:CastSpell(11661)
    end
    end
    
    function Vivoxity_ShadowBolt(Unit)
    Unit:CastSpellOntarget(11661, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_Hex of Weakness(Unit)
    Unit:CastSpellOntarget(19285, Unit:GetRandomPlayer(0))
    end
    
    function Vivoxity_OnCombat(Unit, Event)
    Unit:SendChatMessage(12, 0, "Vivoxity Shall DESTROY you!")
    Unit:RegisterEvent("Vivoxity_ShadowBolt",10000,0)
    Unit:RegisterEvent("Vivoxity_Phase2",1000,0)
    end
    
    function Vivoxity_OnLeaveCombat(Unit, Event)
    Unit:SendChatMessage(12, 0, "You have failed to defeat me!")
    Unit:RemoveEvents()
    end
    
    function Vivoxity_OnKilledTarget(Unit, Event)
    Unit:SendChatMessage(11, 0, "One down for the count! Now, To Increase my strength!")
    Unit:RegisterEvent:SetScale(4)
    end
    
    function Vivoxity_OnDied(Unit, Event)
    Unit:SendChatMessage(11, 0, "I..can't believe I lost!")
    Unit:RemoveEvents()
    end
    
    RegisterUnitEvent(Change HERE, 1, "Vivoxity_OnCombat")
    RegisterUnitEvent(Change HERE, 2, "Vivoxity_OnLeaveCombat")
    RegisterUnitEvent(Change HERE, 3, "Vivoxity_OnKilledTarget")
    RegisterUnitEvent(Change HERE, 4, "Vivoxity_OnDied")
    Last edited by ~ViVo~; 03-16-2008 at 04:52 PM.

    [Share] Lua Boss
  2. #2
    jakjaklol1337's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol it doesn't stand "Change HERE" anywhere

  3. #3
    warxhead's Avatar Member
    Reputation
    13
    Join Date
    Jan 2007
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    RegisterUnitEvent(870050, 1, "Vivoxity_OnCombat")
    RegisterUnitEvent(870050, 2, "Vivoxity_OnLeaveCombat")
    RegisterUnitEvent(870050, 3, "Vivoxity_OnKilledTarget")
    RegisterUnitEvent(870050, 4, "Vivoxity_OnDied")
    RegisterUnitEvent(870050, 5, "Vivoxity_ShadowBolt
    RegisterUnitEvent(870050, 6, "Vivoxity_Hex of Weakness
    to
    Code:
    RegisterUnitEvent(870050, 1, "Vivoxity_OnCombat")
    RegisterUnitEvent(870050, 2, "Vivoxity_OnLeaveCombat")
    RegisterUnitEvent(870050, 3, "Vivoxity_OnKilledTarget")
    RegisterUnitEvent(870050, 4, "Vivoxity_OnDied")
    RegisterUnitEvent(870050, 5, "Vivoxity_ShadowBolt")
    RegisterUnitEvent(870050, 6, "Vivoxity_Hex of Weakness")

  4. #4
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wtf? Thats the same thing..

  5. #5
    TheSpidey's Avatar Elite User
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    2,200
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    RegisterUnitEvent(870050, 5, "Vivoxity_ShadowBolt
    RegisterUnitEvent(870050, 6, "Vivoxity_Hex of Weakness
    Remove these. 5 is on AI tick, 6 is on spawn.

  6. #6
    Creepfold's Avatar Contributor
    Reputation
    176
    Join Date
    Jul 2007
    Posts
    536
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well, i dont seem the problem exept Shadowbolt and HEx, so ill toss ya a rep sorry to all btw i havnt been so active, lvling a lock as you can see in my signature
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

  7. #7
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't say Rep if your not going to rep please.

Similar Threads

  1. [Share] Lua Script Generator! Bosses and More [EPIC]
    By MisterEMU in forum WoW EMU Programs
    Replies: 23
    Last Post: 11-10-2008, 02:30 AM
  2. [Release/Info] Custom LUA Bosses!
    By Gastricpenguin in forum World of Warcraft Emulator Servers
    Replies: 38
    Last Post: 02-08-2008, 12:14 PM
  3. [Realese]Overlord Arakk-Lua Boss!
    By Xcynic in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 01-08-2008, 01:18 PM
  4. [Share] Anoziar the Great, LUA Boss!
    By Creepfold in forum World of Warcraft Emulator Servers
    Replies: 21
    Last Post: 01-07-2008, 07:40 PM
All times are GMT -5. The time now is 11:35 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