QUEST Lua Boss dont work! menu

User Tag List

Results 1 to 7 of 7
  1. #1
    Tikki100's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2008
    Posts
    83
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    QUEST Lua Boss dont work!

    Everytime i load this its says that it could't load it. Can you please help me? I give +Rep to the person ho help me

    HTML Code:
    --				--
    	-- Start function --
    --				--
    
    function Tikki_OnCombat(Unit, Event)
    Unit:SendChatMessage(14, 0, "What have we here.")
    Unit:SetCombatCapable(1)
    Unit:SetFaction(35)
    Unit:RegisterEvent("Tikki_TalkStart1", 1000, 0)
    end
    
    --				--
    	-- Cinematic --
    --				--
    
    function Tikki_TalkStart1(Unit,Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "So you took my Ally's. Lets look around.")
    Unit:RegisterEvent("Tikk_TalkStart2", 7000, 0)
    end
    
    function Tikki_TalkStart2(Unit,Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Well, well, well... You destroyed my camp. My soldiers. My Scourge stronghold. That was just a taste")
    Unit:RegisterEvent("Tikk_TalkStart3", 9000, 0)
    end
    
    function Tikki_TalkStart3(Unit,Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "I'll face you a challange! ")
    Unit:RegisterEvent("Tikk_TalkStart4", 7000, 0)
    end
    
    function Tikki_TalkStart4
    Unit:RemoveEvents()
    Unit:SetFaction(1720)
    Unit:SendChatMessage(12, 0, "Lets start Fighting! ")
    Unit:RegisterEvent("Tikki_Phase1", 1000, 0)
    end
    
    function Tikki_Phase1(Unit, Event)
    if Unit:GetHealthPct() < 25 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "I know the Secret of Arcane to!")
    Unit:FullCastSpellOnTarget(29963, Unit:GetMainTank())
    Unit:RegisterEvent("Tikki_Phase2", 1000, 0)
    end
    
    function Tikki_Phase2(Unit, Event)
    if Unit:GetHealthPct() < 10 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(14, 0, "Silly mortals, with your spells... ")
    Unit:CastSpell(31534)
    end
    end
    
    function Tikki_OnLeaveCombat(Unit, Event)
    Unit:RemoveEvents()
    end
    
    function Tikki_OnKilledTarget(Unit, Event)
    Unit:SendChatMessage(14, 0, "I thoud so! Join the enternity, of darkness!")
    end
    
    function Tikki_OnDied(Unit, Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(14, 0, "Im sorry master... I faild... you....")
    end
    
    RegisterUnitEvent(249998, 1, "Tikki_OnCombat")
    RegisterUnitEvent(249998, 2, "Tikki_OnLeaveCombat")
    RegisterUnitEvent(249998, 3, "Tikki_OnKilledTarget")
    RegisterUnitEvent(249998, 4, "Tikki_OnDied")
    Last edited by Tikki100; 04-15-2009 at 09:04 AM. Reason: 1 bug found. 1 rep to the next person ho find a bug

    QUEST Lua Boss dont work!
  2. #2
    Death_Master's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    think it's because you have
    function Tikki_TalkStart2(Unit,Event)
    twice

  3. #3
    Tikki100's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2008
    Posts
    83
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    one of the bugs. But it still not working. But i copy the code agian in the text above. I give you 1 rep point becouse you helped me anyway

  4. #4
    Death_Master's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    works i think

    That should do it
    Code:
    --				--
    	-- Start function --
    --				--
    
    function Tikki_OnCombat(Unit, Event)
    Unit:SendChatMessage(14, 0, "What have we here.")
    Unit:SetCombatCapable(1)
    Unit:SetFaction(35)
    Unit:RegisterEvent("Tikki_TalkStart1", 1000, 0)
    end
    
    --				--
    	-- Cinematic --
    --				--
    
    function Tikki_TalkStart1(Unit,Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "So you took my Ally's. Lets look around.")
    Unit:RegisterEvent("Tikki_TalkStart2", 7000, 0)
    end
    
    function Tikki_TalkStart2(Unit,Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "Well, well, well... You destroyed my camp. My soldiers. My Scourge stronghold. That was just a taste")
    Unit:RegisterEvent("Tikki_TalkStart3", 9000, 0)
    end
    
    function Tikki_TalkStart3(Unit,Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "I'll face you a challange! ")
    Unit:RegisterEvent("Tikki_TalkStart4", 7000, 0)
    end
    
    function Tikki_TalkStart4(Unit,Event)
    Unit:RemoveEvents()
    Unit:SetFaction(1720)
    Unit:SendChatMessage(12, 0, "Lets start Fighting! ")
    Unit:RegisterEvent("Tikki_Phase1", 1000, 0)
    end
    
    function Tikki_Phase1(Unit, Event)
    if Unit:GetHealthPct() < 25 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(12, 0, "I know the Secret of Arcane to!")
    Unit:FullCastSpellOnTarget(29963, Unit:GetMainTank())
    Unit:RegisterEvent("Tikki_Phase2", 1000, 0)
    end
    end
    
    function Tikki_Phase2(Unit, Event)
    if Unit:GetHealthPct() < 10 then
    Unit:RemoveEvents()
    Unit:SendChatMessage(14, 0, "Silly mortals, with your spells... ")
    Unit:CastSpell(31534)
    end
    end
    
    function Tikki_OnLeaveCombat(Unit, Event)
    Unit:RemoveEvents()
    end
    
    function Tikki_OnKilledTarget(Unit, Event)
    Unit:SendChatMessage(14, 0, "I thoud so! Join the enternity, of darkness!")
    end
    
    function Tikki_OnDied(Unit, Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(14, 0, "Im sorry master... I faild... you....")
    end
    
    RegisterUnitEvent(249998, 1, "Tikki_OnCombat")
    RegisterUnitEvent(249998, 2, "Tikki_OnLeaveCombat")
    RegisterUnitEvent(249998, 3, "Tikki_OnKilledTarget")
    RegisterUnitEvent(249998, 4, "Tikki_OnDied")
    Last edited by Death_Master; 04-15-2009 at 10:32 AM.

  5. #5
    Tikki100's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2008
    Posts
    83
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still dont work. Stuck in Tikki_Talkstart2

    Tried to call invaild LUA function: "Tikki_Talkstart2" from Arcemu <unit>!

  6. #6
    Tikki100's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2008
    Posts
    83
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i give up...

  7. #7
    Death_Master's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry i know what i did wrong, fixed it now

Similar Threads

  1. [ArcEmu] Custom Bosses Dont work
    By singoe in forum WoW EMU Questions & Requests
    Replies: 1
    Last Post: 05-31-2010, 01:05 AM
  2. [RELEASE] Maths lesson + PC room - Work = Lua Boss
    By Zaeran in forum WoW EMU General Releases
    Replies: 7
    Last Post: 12-11-2008, 06:33 PM
  3. [Help] Quest dont work on private server
    By TDWP in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 06-23-2008, 10:31 AM
  4. [HELP] Lua boss script not working-solutions?
    By WinKIller0 in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 03-21-2008, 08:19 AM
  5. [Lua]Boss phases not working, NEED PRO HELP!!
    By blah7 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 01-23-2008, 02:30 PM
All times are GMT -5. The time now is 04:07 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