[RELEASE]LUA Boss 1st - Shalazar. menu

User Tag List

Results 1 to 11 of 11
  1. #1
    VictoRo's Avatar Contributor
    Reputation
    81
    Join Date
    Feb 2008
    Posts
    219
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [RELEASE]LUA Boss 1st - Shalazar.

    Hello MMOwned.

    I decided to get out of this leecher status so i wanted to try LUA. I read Sector7's "Scripting LUA 101" and then i took Hellgawd's LUA Template and then added some features etc. This is my first real script so please be nice lol
    Code:
    --[[ Boss - Shalazar
    Shalazar is an evil warlock returned from the death and is now ready to take over all life in Azeroth!
    
    ~~End of Script Forenote
    -- Viggo-xd, November 27th, 2008. ]]
    
    function Shalazar_OnLeaveCombat (pUnit, Event)
    pUnit:SendChatMessage(5, 0, "Flee you fitlhy scumbags!")
    end
    
    function Shalazar_Died (pUnit, Event)
    pUnit:SendChatMessage(5, 0, "Azeroth .. will stil .. be .. mine ..! ")
    end
    
    function Shalazar_OnEnterCombat (pUnit, Event)
    pUnit:SendChatMessage(5, 0, "Hahaha .. You really think you can match the true power of all demonic powers? Illidan is no match compared to me! I am the Shadow Lord Shalazar! Your destiny lies in my hands and .. woops! What is it i see in the future? Your death! Haha!")
    end
    
    function Shalazar_KilledTarget (pUnit, Event)
    pUnit:SendChatMessage(5, 0, "That was just so hard! .. Oh my, i just love being sarcastic!")
    end
    
    function Shalazar_OnEnterCombat(pUnit,Event)
        pUnit:RegisterEvent("Shalazar_Spell4", 15000, 1)
        pUnit:RegisterEvent("Shalazar_Spell2", 20000,1)
        pUnit:RegisterEvent("Shalazar_Spell3", 35000, 0)
        pUnit:RegisterEvent("Shalazar_Spell", 25000, 0)
        pUnit:RegisterEvent("Shalazar_Spell5", 30000, 0)
    
    end
    
    function Shalazar_Spell2(pUnit,Event)
     if pUnit:GetHealthPct() > 20 then
        pUnit:FullCastSpellOnTarget(57369,pUnit:GetMainTank())
    end
    end
    
    function Shalazar_Spell3(pUnit,Event)
        pUnit:FullCastSpellOnTarget(39175,pUnit:GetClosestPlayer())
    end
    
    function Shalazar_Spell5(pUnit,Event)
        pUnit:FullCastSpellOnTarget(19369,pUnit:GetClosestPlayer())
    end
    
    function Shalazar_Spell(pUnit,Event)
        pUnit:CastSpell(22917)
        pUnit:CastSpell(26565)
    end
    
    function Shalazar_Spell4(pUnit,Event)
     if pUnit:GetHealthPct() > 40 then
        pUnit:FullCastSpellOnTarget(59868,pUnit:GetMainTank())
    end
    end
    
    RegisterUnitEvent(95432, 1, "Shalazar_OnEnterCombat")
    RegisterUnitEvent(95432, 4, "Shalazar_Died")
    RegisterUnitEvent(95432, 3, "Shalazar_KilledTarget")
    RegisterUnitEvent(95432, 2, "Shalazar_OnLeaveCombat")
    He cast Shadow Bolt Volley and other shadow spells.

    When he gets under 40% hp he begins casting a AoE shadow spell wich does 4-5k dmg
    when he get under 20% hp he begins on another AoE Shadow spell wich also deals 4-5k dmg


    Thank you for reading this .. (:

    PS: You will have to make the boss by yourself due to the fact that i've tried everything to get a database working on my computer but can't seem to connect to "localhost" i get an error everytime so i can't make the boss s:

    [RELEASE]LUA Boss 1st - Shalazar.
  2. #2
    blind999's Avatar Member
    Reputation
    4
    Join Date
    Jan 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice script you got there mate, Nice to see a release coming out from you..
    It looks pretty advanced..neat..

    Basicly, +Repx2 if i can

  3. #3
    TheZaronz's Avatar Active Member
    Reputation
    97
    Join Date
    Dec 2007
    Posts
    567
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It looks pretty advanced..neat..
    LOL WUT! _fillah!

  4. #4
    volitle's Avatar Contributor
    Reputation
    181
    Join Date
    Nov 2007
    Posts
    1,127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol its not advanced but well done on your first script +2 rep from me fella


  5. #5
    stoneharry's Avatar Moderator Harry

    Authenticator enabled
    Reputation
    1613
    Join Date
    Sep 2007
    Posts
    4,554
    Thanks G/R
    151/146
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Always love people wanting to learn and giving it a shot +Rep x2

  6. #6
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I agree with stoneharry so +Rep for ya

    By the way, just a mistake ---> pUnit:SendChatMessage(5, 0, "Flee you fitlhy scumbags!")
    should be
    pUnit:SendChatMessage(5, 0, "Flee you filthy scumbags!")

  7. #7
    VictoRo's Avatar Contributor
    Reputation
    81
    Join Date
    Feb 2008
    Posts
    219
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks all for the comments (;

  8. #8
    Dr. Livingstone's Avatar Member
    Reputation
    113
    Join Date
    Mar 2008
    Posts
    290
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +Rep! Its a nice script Much better than I could have done.

  9. #9
    Zaeran's Avatar Active Member
    Reputation
    16
    Join Date
    Dec 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice script victor nice to see i've got a partner in crime when it comes to learning LUA
    +Rep

  10. #10
    Appled's Avatar Contributor
    Reputation
    105
    Join Date
    Apr 2007
    Posts
    568
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work from a starter +Rep

  11. #11
    marco1234's Avatar Active Member
    Reputation
    46
    Join Date
    May 2008
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice Victor! Love it. added +Rep
    I'm a proffesional DB Developer, worked for top servers like WoWScape, UberWoW etc. I can work for you aswell, add me on MSN: [email protected]
    Still looking for a host, be part of a great succes and earn much money. Add me on MSN.

Similar Threads

  1. [Release] LUA Boss Template
    By Ground Zero in forum WoW EMU General Releases
    Replies: 10
    Last Post: 03-27-2009, 05:03 PM
  2. [Test Release] Lua Boss [Killjoy]
    By brandonrulz1 in forum WoW EMU General Releases
    Replies: 1
    Last Post: 01-01-2009, 07:11 AM
  3. [RELEASE] LUA BOSS O'Brien!
    By VictoRo in forum WoW EMU General Releases
    Replies: 12
    Last Post: 12-03-2008, 11:08 AM
  4. [Release] LUA Boss - Gilford the Legend
    By Babbaa in forum WoW EMU General Releases
    Replies: 12
    Last Post: 09-05-2008, 04:15 PM
All times are GMT -5. The time now is 12:19 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search