HELP with LUA menu

Shout-Out

User Tag List

Results 1 to 14 of 14
  1. #1
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    HELP with LUA

    Hi dudes I followed a few guides and tried to make a custom boss lua but it seems like the boss doesn't ebven read the lua 'cuase it doesn't do anything writen there. The boss's name is Master of Puppets and the lua file is called BOSS_MasterofPuppets.lua ,other than that everything in it is called like , MasterofPuppets_spell1 , I you know what I mean ? .
    though I'm sure the script is well but there's the file

    ///////Edited once more - now it speaks oncombat etc. but There's probably a problem at register event thingy , it doesn't work.

    Code:
    function MasterofPuppets_Spell1(Unit,Event)
    Unit:CastSpellOnTarget(34240,Unit:GetMainTank())
    Unit:castspellontarget(46480,Unit:GetRandomPlayer(4))
    end
    
    
    function MasterofPuppets_Spell2(Unit,Event)
    Unit:CastSpell(38533)
    Unit:GetRandomPlayer(0)
    end
    
    
    function MasterofPuppets_Phase1(Unit,Event)
    if Unit:GetHealthPct() < 85 then
    Unit:removeEvents()
    Unit:RegisterEvent("MasterofPuppets_Spell1",8000, 0)
    Unit:RegisterEvent("MasterofPuppets_Spell2",25000, 0)
    Unit:SendChatMessage(14, 0, "I hope you like bugs!!")
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:RegisterEvent("MasterofPuppets_Phase2",1000, 0)
    end
    end
    
    function MasterofPuppets_Phase2(Unit,Event)
    if Unit:GetHealthPct() < 50 then
    Unit:RemoveEvents()
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:RegisterEvent("MasterofPuppets_Spell1",8000, 0)
    Unit:RegisterEvent("MasterofPuppets_Spell2",25000, 0)
    end 
    end
    
    function MasterofPuppets_Phase3(Unit,Event)
    if Unit:GetHealthPct() < 10 then
    Unit:RemoveEvents()
    Unit:SetScale(2)
    Unit:SendChatMessage(14, 0, "Take that Bastards")
    Unit:GetMainTank()
    Unit:CastSpell(40508)
    Unit:CastSpell(40508)
    Unit:CastSpell(40508)
    Unit:RegisterEvent("MasterofPuppets_spell1",10000, 0)
    Unit:RegisterEvent("Masterofpuppets_spell2",1000, 0)
    end
    end
    
    function MasterofPuppets_OnCombat(Unit, Event)
    Unit:SendChatMessage(14, 0, "I've been expecting you ,too bad you're going to die!")
    Unit:RegisterEvent("MasterofPuppets_Phase1",1000, 0)
    end
    
    
    function MasterofPuppets_OnLeaveCombat(Unit, Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(14, 0, "Run coward run!")
    Unit:SetScale(4)
    end
    
    
    function MasterofPuppets_OnKilledTarget(Unit, Event)
    Unit:SendChatMessage(14, 0, "Your life energy is mine Bwhahaha!")
    Unit:CastSpell(39321)
    end
    
    
    function MasterofPuppets_Death(Unit, Event)
    Unit:RemoveEvents()
    Unit:SetScale(1)
    Unit:SendChatMessage(14, 0, "How.. how can I fail?")
    end
    
    RegisterUnitEvent(999999, 1, "MasterofPuppets_OnCombat")
    RegisterUnitEvent(999999, 2, "MasterofPuppets_OnLeaveCombat")
    RegisterUnitEvent(999999, 3, "MasterofPuppets_OnKilledTarget")
    RegisterUnitEvent(999999, 4, "MasterofPuppets_Death")
    hope you can help me
    Last edited by wiselunatic; 06-24-2008 at 09:27 AM.

    HELP with LUA
  2. #2
    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)
    Are you sure you activated Lua in the world config file?

  3. #3
    b!atch's Avatar Member
    Reputation
    118
    Join Date
    Oct 2007
    Posts
    726
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    function MasterofPuppets_spell1(Unit,event)
    unit:castspellontarget(34240,Unit:GetMainTank())
    unit:castspellontarget(46480,Unit:GetMainTank())
    end
    
    function MasterofPuppets_spell2(unit,event)
    unit:castspell(38533,Unit:GetRandomPlayer(0))
    end
    
    function MasterofPuppets_phase1(unit,event)
    if unit:GetHealthPct() < 85 then
    unit:removeevents()
    unit:registerevent("MasterofPuppets_spell1",8000, 0)
    unit:sendchatmessage(11, 0, "I hope you like bugs!!")
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:RegisterEvent("MasterofPuppets_phase2")
    end
    
    function MasterofPuppets_phase2(unit,event)
    if unit:GetHealthPct() < 50 then
    unit:sendchatmessage(11, 0, "I didn't expect this much from you, Not it's time for me to Show you my true power")
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:spawncreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    unit:spawncreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000
    unit:spawncreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000
    unit:RemoveEvents();
    unit:registerevent("masterofpuppets_spell1)
    unit:registerevent("masterofpuppets_spell2)
    end 
    
    function MasterofPuppets_phase3(unit,event)
    if unit:GetHealthPtc 10
    unit:removeevents()
    unit:setscale(2)
    unit:sendchatmessage(11, 0, "Take that Bastards")
    unit:castspell(40508)
    unit:castspell(40508)
    unit:castspell(40508)
    unit:RegisterEvent("MasterofPuppets_spell1",1000, 0)
    unit:RegisterEvent("Masterofpuppets_spell2",1000, 0)
    end
    
    function MasterofPuppets_OnCombat(Unit, event)
    Unit:SendChatMessage(11, 0, "I've been expecting you ,too bad you're going to die!")
    Unit:RegisterEvent("MasterofPuppets_Phase1",1000, 0)
    end
    
    
    function MasterofPuppets_OnLeaveCombat(Unit, event)
    Unit:RemoveEvents();
    Unit:SendChatMessage(11, 0, "Run coward run!")
    Unit:SetScale(4)
    end
    
    function MasterofPuppets_OnKilledTarget(Unit, event)
    Unit:SendChatMessage(11, 0, "Your life energy is mine Bwhahaha!")
    Unit:CastSpell(39321)
    end
    
    
    function MasterofPuppets_Death(Unit, event)
    Unit:RemoveEvents();
    Unit:SetScale(1)
    unit:sendchatmessage(11, 0, "How.. how can I fail?")
    end
    
    RegisterUnitEvent(9007, 1, "MasterofPuppets_OnCombat")
    RegisterUnitEvent(9007, 2, "MasterofPuppets_OnLeaveCombat")
    RegisterUnitEvent(9007, 3, "MasterofPuppets_OnKilledTarget")
    RegisterUnitEvent(9007, 4, "MasterofPuppets_Death")
    I did a few fixings. Idk if i got all the errors but i g2g so someone check it l8r


    And check if lua is enabled, as spidey says
    Last edited by b!atch; 06-23-2008 at 11:00 AM.
    Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>

  4. #4
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you I did fix the scripts now but I didn'T know I had to allow lua's from world thing ,, although while starting world.exe it succesfully loads boss_masterofpuppets.lua . Lemme see if there's anything to change in World config

  5. #5
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've edited the first post and replaced the old script code with the new one --I get no errors loading this script ( I did have with the old one )

    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    # Scripting Engine Setup
    #
    # Ascent can support multiple script backends via the means of loading .dll files for them.
    # This section in the config can enable/disable those backends.
    #
    # LUA
    # If you would like to enable the LUA scripting backend, enable this.
    # Default: 0
    #
    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#

    <ScriptBackends LUA="1"
    AS="0">
    Last edited by wiselunatic; 06-23-2008 at 11:21 AM.

  6. #6
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    --my first acsent server btw ,, I've been using wow emu and mangos before /x(before 1.12.1) to 2.4.2

  7. #7
    b!atch's Avatar Member
    Reputation
    118
    Join Date
    Oct 2007
    Posts
    726
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <ScriptBackends LUA="1"
    AS="0">

    1 on both
    Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>

  8. #8
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    gah thx I'll learn acsent in no time :P ( with a 'lil help ofc) I just downloaded it yesterday anyway lemme' try that and see if it works

    well I guess it didn't work , can it be that the file name doesn't fit ? Monster name Master of Puppets , file name BOSS_masterofpuppets.lua and also can you check the scripts too ?
    Last edited by 2dgreengiant; 06-23-2008 at 01:03 PM. Reason: double post, merged

  9. #9
    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)
    The file name doesn't matter at all, just as it's .lua

    Code:
    function MasterofPuppets_Spell1(Unit,Event)
    Unit:GetMainTank()
    Unit:CastSpellOnTarget(34240,Unit:GetMainTank())
    Unit:castspellontarget(46480,Unit:GetRandomPlayer(4))
    end
    
    
    function MasterofPuppets_Spell2(Unit,Event)
    Unit:CastSpell(38533)
    Unit:GetRandomPlayer(0)
    end
    
    
    function MasterofPuppets_Phase1(Unit,Event)
    if Unit:GetHealthPct() < 85 then
    Unit:removeEvents()
    Unit:RegisterEvent("MasterofPuppets_Spell1",8000, 0)
    Unit:RegisterEvent("MasterofPuppets_Spell2",25000, 0)
    Unit:SendChatMessage(11, 0, "I hope you like bugs!!")
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:RegisterEvent("MasterofPuppets_Phase2")
    end
    end
    
    function MasterofPuppets_Phase2(Unit,Event)
    if Unit:GetHealthPct() < 50 then
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:SpawnCreature(18133, 791.269531, 8475.882813, 21.224709, -2.765212, 14, 120000)
    Unit:SpawnCreature(18133, 767.243713, 8483.705078, 22.512442, 0.166998, 14, 120000)
    Unit:SpawnCreature(18133, 745.955688, 8516.423828, 21.926340, 2.391304, 14, 120000)
    Unit:RemoveEvents()
    Unit:RegisterEvent("MasterofPuppets_Spell1")
    Unit:RegisterEvent("MasterofPuppets_Spell2")
    end 
    end
    
    function MasterofPuppets_Phase3(Unit,Event)
    if Unit:GetHealthPct() < 10 then
    Unit:RemoveEvents()
    Unit:SetScale(2)
    Unit:SendChatMessage(11, 0, "Take that Bastards")
    Unit:GetMainTank()
    Unit:CastSpell(40508)
    Unit:CastSpell(40508)
    Unit:CastSpell(40508)
    Unit:RegisterEvent("MasterofPuppets_spell1",1000, 0)
    Unit:RegisterEvent("Masterofpuppets_spell2",1000, 0)
    end
    end
    
    function MasterofPuppets_OnCombat(Unit, Event)
    Unit:SendChatMessage(11, 0, "I've been expecting you ,too bad you're going to die!")
    Unit:RegisterEvent("MasterofPuppets_Phase1",1000, 0)
    end
    
    
    function MasterofPuppets_OnLeaveCombat(Unit, Event)
    Unit:RemoveEvents()
    Unit:SendChatMessage(11, 0, "Run coward run!")
    Unit:SetScale(4)
    end
    
    
    function MasterofPuppets_OnKilledTarget(Unit, Event)
    Unit:SendChatMessage(11, 0, "Your life energy is mine Bwhahaha!")
    Unit:CastSpell(39321)
    end
    
    
    function MasterofPuppets_Death(Unit, Event)
    Unit:RemoveEvents()
    Unit:SetScale(1)
    Unit:sendchatmessage(11, 0, "How.. how can I fail?")
    end
    
    
    RegisterUnitEvent(9007, 1, "MasterofPuppets_OnCombat")
    RegisterUnitEvent(9007, 2, "MasterofPuppets_OnLeaveCombat")
    RegisterUnitEvent(9007, 3, "MasterofPuppets_OnKilledTarget")
    RegisterUnitEvent(9007, 4, "MasterofPuppets_Death")
    Try that one time

  10. #10
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nope , unfortunately

    I've just noticed something , when I type .lookupcreature Master of Puppets , the result should be something like ,
    creature: 999999 - Master of Puppets right?

    it only says

    Creature 999999 ( doesn't show the name ) I'll go check mysql and come

    also when I typr .lookupcreature puppets
    it says

    Creature:999999 - master of <blank> is it a ascent thing _?

    nothing seems wrong there
    Last edited by 2dgreengiant; 06-23-2008 at 01:02 PM. Reason: tripple posting, merged

  11. #11
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That happens sometimes, it's something to do with the core am i right?

  12. #12
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ohh I use the apple's server thing ?
    anyone got this problem before?

  13. #13
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It happens one my own compiled, not sure how to fix it lol - Sorry

  14. #14
    wiselunatic's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll go nuts
    any suggestions ? can you send me a compile which works ? or suggest a repack or whatever?


    ----I've changed my compile , yet it doesn'T work
    Last edited by wiselunatic; 06-24-2008 at 06:03 AM.

Similar Threads

  1. help with LUA
    By controlsx2 in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 05-07-2008, 02:20 PM
  2. Anyone willing to help with LUA scripting
    By nickeg in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 03-09-2008, 05:53 PM
  3. [Request] I need some help with lua script (boss on death)
    By Ellenor in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 03-03-2008, 03:47 PM
  4. Need help with LUA
    By Arugos in forum World of Warcraft Emulator Servers
    Replies: 18
    Last Post: 02-28-2008, 12:54 PM
  5. [Help] With Lua ...(where to attach it?)
    By Ellenor in forum World of Warcraft Emulator Servers
    Replies: 13
    Last Post: 02-15-2008, 05:50 PM
All times are GMT -5. The time now is 05:48 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