[LUA] 2 Elemental Thrash Mobs menu

User Tag List

Results 1 to 9 of 9
  1. #1
    Myzt's Avatar Member
    Reputation
    10
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [LUA] 2 Elemental Thrash Mobs

    Hello all.

    I was looking through some folders on my computer, and I found these two thrash mob scripts.

    Someone might need them.

    Decription:

    There is one Rock Elemental mob, and one Shadow Elemental mob.
    The Rock Elemental Cleaves and does a Ground Smash. And the Shadow Elemental Is immune to magic, and does a Chain Lightning like spell, with shadow damage.
    You have to put Casters on the Rock Ele, and Melee on the Shadow Ele.

    The mobs are somewhat tuned for T6 geared players.

    Expect a few more thrash mobs and maybe a boss on the same theme

    Scripts:

    Rock Elemental:


    Code:
    --//////////////////////////////////////////////////////////////
    -- Rock Elemental script, Made by Myzt. --
    --/////////////////////////////////////////////////////////////
    
    --//Abilities
    ------------------------//
    
    function Rockele_Smash(pUnit, Event)
    	pUnit:CastSpell(40457)
    end
    
    function Rockele_Ground(pUnit, Event)
    	pUnit:CastSpell(38785)
    end
    
    function Rockele_Enrage(pUnit, Event)
    	pUnit:CastSpell(37023)
    end
    
    --//The Fight
    -----------------------//
    
    function Rockele_Fight(pUnit, Event)
    	pUnit:RegisterEvent("Rockele_Smash", 8000, 0)
    	pUnit:RegisterEvent("Rockele_Ground", 10000, 0)
    	pUnit:RegisterEvent("Rockele_Enrage", 30000, 0)
    end
    
    
    --//Primary Functions
    -----------------------//
    
    function Rockele_OnCombat(pUnit, Event)
    	pUnit:SendChatMessage(5, 9, "You wont last long, mortal."
    	pUnit:SetScale(2)
    	pUnit:RegisterEvent("Rockele_Fight", 1000, 1)
    end
    
    function Rockele_Ondeath(pUnit, Event)
    	pUnit:RemoveEvents()
    	pUnit:SetScale(1)
    end
    
    RegisterUnitEvent(1001021, 1, "Rockele_OnCombat")
    RegisterUnitEvent(1001021, 4, "Rockele_Ondeath")
    Shadow Elemental:

    Code:
    --////////////////////////////////////////////////////////////////
    -- Shadow Elemental script, Made by Myzt. --
    --///////////////////////////////////////////////////////////////
    
    --//Abilities
    -------------------------//
    
    function Shadowele_Magicres(pUnit, Event)
    	pUnit:CastSpell(24021)
    end
    
    function Shadowele_Sinisterbeam(pUnit, Event)
    	local sinisterTarget = GetRandomPlayer(7)
    	pUnit:FullCastSpellOnTarget(40859, sinisterTarget)
    end
    
    --//The Fight
    -------------------------//
    
    function Shadowele_Fight(pUnit, Event)
    	pUnit:RegisterEvent("Shadowele_Magicres", 8000, 0)
    	pUnit:RegisterEvent("Shadowele_Sinisterbeam", 6000, 0)
    end
    
    --//Primary Functions
    -------------------------//
    
    function Shadowele_Oncombat(pUnit, Event)
    	pUnit:RegisterEvent("Shadowele_Fight", 1000, 1)
    end
    
    function Shadowele_Ondeath(pUnit, Event)
    	pUnit:SendChatMessage(5, 9, "The Twisting Nether Awaits...")
    	pUnit:RemoveEvents()
    	pUnit:RemoveAura(24021)
    end
    
    RegisterUnitEvent(1001020, 1, "Shadowele_Oncombat")
    RegisterUnitEvent(1001020, 4, "Shadowele_Ondeath")
    --> SQL Files DL <--


    Thanks for reading!
    - Myzt

    [LUA] 2 Elemental Thrash Mobs
  2. #2
    Blackboy0's Avatar Member
    Reputation
    70
    Join Date
    Nov 2007
    Posts
    377
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Uhhh... So... wait.... what? These are TRASH mobs, right? Or do you really mean thrash? So what are the point of these guys? Just for T6 Players to lvl?

  3. #3
    Fan Boi's Avatar Member
    Reputation
    5
    Join Date
    Jul 2008
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guessing trash mobs for a instance?

  4. #4
    Blackboy0's Avatar Member
    Reputation
    70
    Join Date
    Nov 2007
    Posts
    377
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, thats what I was thinking :P

  5. #5
    Myzt's Avatar Member
    Reputation
    10
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Theres no point, these are scripts for you to use for whatever you want.

    As I said these are old scripts I found. Thought someone might want to use them.
    - Myzt

  6. #6
    Blackboy0's Avatar Member
    Reputation
    70
    Join Date
    Nov 2007
    Posts
    377
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oooo, so your just sharing some Scripts you found somewhere on your Computer... Nice :P Well, I'm done here... Good Scripts btw

  7. #7
    Myzt's Avatar Member
    Reputation
    10
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

    I have some more to post later
    - Myzt

  8. #8
    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)
    Am I supposed to be impressed?
    Sorry for ignorant comment.


  9. #9
    Myzt's Avatar Member
    Reputation
    10
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not posting on this forum to hear people say I'm good or anything, and the fact that these scripts are very simple I wouldn't say that a lot of people would be impressed.

    I was only posting these, as I said, that anyone could have some kind of use for these mobs in any sort of easy instance or whatever.

    But if you find that wrong I don't know what to say.
    - Myzt

Similar Threads

  1. LUA Scripted Boss with mobs and objects
    By denniskramer in forum WoW EMU General Releases
    Replies: 6
    Last Post: 12-16-2008, 07:20 AM
  2. Replies: 1
    Last Post: 03-23-2008, 11:34 PM
  3. lua guide on spawning mobs after death
    By runiker in forum WoW EMU Guides & Tutorials
    Replies: 2
    Last Post: 03-10-2008, 01:57 AM
  4. LUA - Unable to get mob to cast on Target
    By vb4evr in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 03-06-2008, 09:56 PM
  5. [Guide][LUA] Make a mob speak/use spell on a %!
    By Meltoor in forum WoW EMU Guides & Tutorials
    Replies: 14
    Last Post: 02-29-2008, 10:41 PM
All times are GMT -5. The time now is 06:32 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