[Question] is this a good working LUA ^.^? menu

Shout-Out

User Tag List

Results 1 to 10 of 10
  1. #1
    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)

    [Question] is this a good working LUA ^.^?

    /shamed for posting this but ive read all the LUA making guides, but i knew how to make them first, but i forgot cause i havnt made any in like 3-4months now, i tryed it again and remembered most of it! anyways, is this a good LUA?

    Code:
    function CHralmagar_Stomp(Unit)
     Unit:CastSpell(19364)
    end
    
    function Chralmagar_Start(Unit, Event)
     Unit:RegisterEvent("CHralmagar_Stomp",15000, 0)
    end
    
    function boss_start(pUnit, Event)
     pUnit:RegisterEvent("Chralmagar_Start",1000, 0)
     pUnit:CastSpell(34306)
     pUnit:CastSpell(38088)
    end
    RegisterUnitEvent(100005, 1, "boss_start")
    Boss name : Chralmagar
    Spells : Stomp each 15 seconds
    Extras : innume to frost damage, 200% fire damage taken
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

    [Question] is this a good working LUA ^.^?
  2. #2
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, that is good LUA mate but if you were making a boss I recommend adding more to it, such as more spells etc.


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  3. #3
    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)
    its a tank n spank boss ^.^ a big ice giant! lawl
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

  4. #4
    Xeneth's Avatar Member
    Reputation
    157
    Join Date
    Oct 2007
    Posts
    534
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Lua, Just like mom used to make XDD


  5. #5
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haha Faelryn!


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  6. #6
    EcHoEs's Avatar lol why u mad
    Reputation
    374
    Join Date
    Sep 2006
    Posts
    1,646
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will work as it should ^^


  7. #7
    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)
    Code:
    function Armagan_Mortalstrike(Unit)
     Unit:CastSpellOnTarget(43441)
    end
    
    function Armagan_Consecration(Unit)
     Unit:CastSpell(32773)
    end
    
    function Armagan_Repentance(Unit)
     Unit:CastSpell(32779)
    end
    
    function Armagan_Start(Unit, Event)
     Unit:RegisterEvent("Armagan_Mortalstrike",15000, 0)
     Unit:RegisterEvent("Armagan_Consecration",8000, 0)
     Unit:RegisterEvent("Armagan_Repentance",20000, 0)
     Unit:SendChatMessage(12, 0, "You must be one of those ghouls, well you centraintly look like them! you wil bite the snow like all the others ive killed!")
    end
    RegisterUnitEvent(100010, 1, "Armagan_start")
    
    function Armagan_OnDied(Unit)
    	Unit:RemoveEvents()
    end
    RegisterUnitEvent(100010, 4, "Armagan_OnDied")
    
    
    function Armagan_OnLeaveCombat(Unit)
    	Unit:RemoveEvents()
    end
    RegisterUnitEvent(100010, 2, "Armagan_OnLeaveCombat")
    this one doesnt work with the error
    Code:
    Tried to call invalid LUA function 'Armagan_start' from ascent
    can anyone tell me whats wrong with this one ?
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

  8. #8
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not sure about that one mate, need an expert like Gastric to come online!


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  9. #9
    Performer's Avatar Contributor
    Reputation
    212
    Join Date
    Nov 2007
    Posts
    874
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
     
    function Armagan_Mortalstrike(Unit)
     Unit:CastSpellOnTarget(43441)
    end
     
    function Armagan_Consecration(Unit)
     Unit:CastSpell(32773)
    end
     
    function Armagan_Repentance(Unit)
     Unit:CastSpell(32779)
    end
     
    function Armagan_Start(Unit, Event)
     Unit:RegisterEvent("Armagan_Mortalstrike",15000, 0)
     Unit:RegisterEvent("Armagan_Consecration",8000, 0)
     Unit:RegisterEvent("Armagan_Repentance",20000, 0)
     Unit:SendChatMessage(12, 0, "You must be one of those ghouls, well you centraintly look like them! you wil bite the snow like all the others ive killed!")
    end
    RegisterUnitEvent(100010, 1, "Armagan_Start")
     
    function Armagan_OnDied(Unit)
     Unit:RemoveEvents()
    end
    RegisterUnitEvent(100010, 4, "Armagan_OnDied")
    
    function Armagan_OnLeaveCombat(Unit)
     Unit:RemoveEvents()
    end
    RegisterUnitEvent(100010, 2, "Armagan_OnLeaveCombat")
    Try that.


  10. #10
    EcHoEs's Avatar lol why u mad
    Reputation
    374
    Join Date
    Sep 2006
    Posts
    1,646
    Thanks G/R
    3/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yep, LUA is .. uhh.. well you need to have right sized letters (forgot words >.<)
    One that Yimo posted should work


Similar Threads

  1. [Question] Need help [MWCS doesnt work]
    By Hiselor in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 08-27-2010, 10:47 AM
  2. [Question] Is this a good question?
    By Sampay in forum WoW ME Questions and Requests
    Replies: 4
    Last Post: 08-09-2008, 09:38 AM
  3. Question about MC mine wont work
    By JoeRodge in forum World of Warcraft General
    Replies: 2
    Last Post: 10-07-2007, 12:00 AM
  4. [Question] Is this possible?
    By NIkjon in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 07-06-2007, 04:32 PM
  5. Is this any good?
    By NeonMonkeys in forum Art & Graphic Design
    Replies: 5
    Last Post: 05-27-2007, 04:33 PM
All times are GMT -5. The time now is 01:43 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