[RELEASE] One of My Old Scripts menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    Hardball's Avatar Member
    Reputation
    147
    Join Date
    May 2008
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [RELEASE] One of My Old Scripts

    I happen to come across this script in my archives folder and I see someone else was stealing it and claiming it as their own. So i figured I would release it before they decide to port it over here and call it their own.

    This script is an older script HOWEVER it is almost compatible with ANY Lua engine. As always I recommend using AppArc or Gastric's but you can try with the original one.

    This script is a basic boss encounter and there is no SQL to go with it because you can create any mob using WoW-V and just make sure it has the same entry number to attach this script to it. For those who want a video of the fight here it is.

    [yt]v3L_Ovh_arA[/yt]


    Code:
    function Soul_Steal(pUnit, event)
        if pUnit:GetHealthPct() <= 100 then
            print "Soul_Steal initiated..."
            pUnit:FullCastSpellOnTarget(36778, pUnit:GetMainTank())
            end
    end
    
    function Neveros_EnrageTwo(pUnit, event)
         if pUnit:GetHealthPct() < 50 then
         print "Neveros_EnrageTwo initiated..."
         pUnit:RemoveEvents()
         pUnit:FullCastSpell(36921)
         pUnit:RegisterEvent("Soul_Steal", 40000, 0)
         pUnit:RegisterEvent("Neveros_FlameBreath", 28000, 0)
         pUnit:RegisterEvent("Neveros_PhaseTwo", 1000, 0)
         end
    end
    
    function Neveros_Enrage(pUnit, event)
         if pUnit:GetHealthPct() < 85 then
         print "Neveros_Enrage initiated..."
         pUnit:RemoveEvents()
         pUnit:FullCastSpell(32964)
         pUnit:RegisterEvent("Soul_Steal", 40000, 0)
         pUnit:RegisterEvent("Neveros_FlameBreath", 12000, 0)
         pUnit:RegisterEvent("Neveros_PhaseTwo", 1000, 0)
         pUnit:RegisterEvent("Neveros_EnrageTwo", 900, 0)
         end
    end
    
    function Neveros_FlameBreath(pUnit, event)
         print "Neveros_FlameBreath initiated..."
         pUnit:FullCastSpell(19272)
    end
    
    function Neveros_ArcaneMissles(pUnit, event)
         print "Neveros_ArcaneMissles initiated..."
         pUnit:PlaySoundToSet(11402)
         pUnit:SendChatMessage(12, 0, "Enough! No more!")
         pUnit:FullCastSpellOnTarget(29955, pUnit:GetRandomPlayer(0))
    end
    
    function Neveros_ArcaneBurst(pUnit, event)
         print "Neveros_ArcaneBurst initiated..."
         pUnit:PlaySoundToSet(11403)
         pUnit:SendChatMessage(12, 0, "On your knees...")
         pUnit:FullCastSpellOnTarget(19811, pUnit:GetRandomPlayer(0))
    end
    
    function Neveros_ShadowVolley(pUnit, event)
         print "Neveros_ShadowVolley initiated..."
         pUnit:FullCastSpell(28407)
    end
    
    function Neveros_PhaseTwo(pUnit, event)
         if pUnit:GetHealthPct() < 50 then
         print "Neveros_PhaseTwo initiated..."
         pUnit:RemoveEvents()
         pUnit:FullCastSpell(40868)
         pUnit:PlaySoundToSet(11401)
         pUnit:SendChatMessage(12, 0, "Now you will witness true power! Behold my true form!")
         pUnit:SetModel(20510)
         pUnit:SetScale(1.0)
         pUnit:ClearThreatList()
         pUnit:RegisterEvent("Soul_Steal", 40000, 0)
         pUnit:RegisterEvent("Neveros_ArcaneMissles", 20000, 0)
         pUnit:RegisterEvent("Neveros_ArcaneBurst", 16000, 0)
         pUnit:RegisterEvent("Neveros_ShadowVolley", 10000, 0)
         end
    end      
    
    function Neveros_RemoveRezSickness(pUnit, event)
         playertwo=pUnit:GetRandomPlayer(0);
         playertwo:RemoveAura(15007)
    end
    
    --Enter Combat
    function Neveros_OnEnterCombat(pUnit, event)
         print "Neveros_Aggro initiated..."
         pUnit:PlaySoundToSet(10977)
         pUnit:SendChatMessage(12, 0, "You are defenders of a doomed world! Flee here and perhaps you will prolong your pathetic lives.")
         pUnit:RegisterEvent("Soul_Steal", 40000, 0)
         pUnit:RegisterEvent("Neveros_Enrage", 1000, 0)
         pUnit:RegisterEvent("Neveros_FlameBreath", 12000, 0)
         pUnit:RegisterEvent("Neveros_PhaseTwo", 1000, 0)
         pUnit:RegisterEvent("Neveros_RemoveRezSickness", 50, 50)
    end
    
    RegisterUnitEvent(53, 1, "Neveros_OnEnterCombat")
    
    
    --Death
    function Neveros_OnDie(pUnit, event)
         print "Neveros_Dies initiated..."
         pUnit:SendChatMessage(12, 0, "The master....awaits your arrival...")
         pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(53, 4, "Neveros_OnDie")
    
    
    --Leave Combat
    function Neveros_onLeaveCombat(pUnit, Event)
        pUnit:SetModel(20988)
        pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(53, 2, "Neveros_onLeaveCombat")
    Last edited by Hardball; 05-17-2009 at 04:58 PM. Reason: Added youtube tag to see if it works properly

    [RELEASE] One of My Old Scripts
  2. #2
    y2kss66's Avatar Member
    Reputation
    104
    Join Date
    Jan 2008
    Posts
    778
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    first!

    very nice!

  3. #3
    LaAevie's Avatar Member
    Reputation
    85
    Join Date
    Mar 2008
    Posts
    143
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I like, I like.

    Nice find in your archives.
    <3

  4. #4
    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)
    Very simple yet very nice

  5. #5
    Fireblast's Avatar Contributor
    Reputation
    195
    Join Date
    Aug 2008
    Posts
    883
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    very nice, i like, is nice ;]

  6. #6
    Hardball's Avatar Member
    Reputation
    147
    Join Date
    May 2008
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks ^^. Can anyone actually see the video or is it just coming up as a white screen?

    EDIT: Readded the video but now it appears as two videos >< Lol oh well. Enjoy :P
    Last edited by Hardball; 05-14-2009 at 08:10 AM.

  7. #7
    Claiver's Avatar Member
    Reputation
    138
    Join Date
    Mar 2009
    Posts
    217
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool 1, thanks mate. +Rep is on CD :/.

  8. #8
    svedin's Avatar Contributor
    Reputation
    124
    Join Date
    Jun 2008
    Posts
    557
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice work =) Me like abit +Rep

  9. #9
    LaAevie's Avatar Member
    Reputation
    85
    Join Date
    Mar 2008
    Posts
    143
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You don't know how to use the youtube feature? :P you just copy the video ending; Example on yours it's v3L_Ovh_arA so you now just [yt]v3L_Ovh_arA[ /yt] for it to work. (remove the space if you want to use it properly. :P )


    [yt]v3L_Ovh_arA[/yt]

    The internet is for serous business![yt]_cZC67wXUTs[/yt]
    Last edited by LaAevie; 05-16-2009 at 12:22 AM.
    <3

  10. #10
    Hardball's Avatar Member
    Reputation
    147
    Join Date
    May 2008
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OH no lol I know how to use that :P Its just when I did use that no one was able to see the video lol.

  11. #11
    LaAevie's Avatar Member
    Reputation
    85
    Join Date
    Mar 2008
    Posts
    143
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Take a look at mine now, see that it works. :P
    Last edited by LaAevie; 05-16-2009 at 12:23 AM.
    <3

  12. #12
    Trle94's Avatar Contributor
    Reputation
    167
    Join Date
    May 2009
    Posts
    329
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I like it...
    Good Job

  13. #13
    Trle94's Avatar Contributor
    Reputation
    167
    Join Date
    May 2009
    Posts
    329
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I like it...
    Good Job

  14. #14
    Hardball's Avatar Member
    Reputation
    147
    Join Date
    May 2008
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Added the youtube codes again let me know if you can see it.

  15. #15
    Hyldran0's Avatar Contributor
    Reputation
    118
    Join Date
    Nov 2008
    Posts
    374
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really nice Script ! +rep mate xD
    Shit's Gone Real

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release]Kael'Thas Prince-Lua Scripts 100%Blizzlike
    By AzolexX in forum WoW EMU General Releases
    Replies: 25
    Last Post: 08-11-2008, 11:59 PM
  2. [Release] Hynt Compil Core And Script
    By varyag in forum World of Warcraft Emulator Servers
    Replies: 13
    Last Post: 06-09-2008, 11:38 AM
  3. [Release] Precompiled, Latest Ascent REVs + scripts + databases (updated regular)
    By latruwski in forum World of Warcraft Emulator Servers
    Replies: 67
    Last Post: 12-14-2007, 07:47 AM
  4. [Release] Complete Azeroth Portals (gm scripts)
    By knaur in forum World of Warcraft Emulator Servers
    Replies: 11
    Last Post: 11-22-2007, 08:10 AM
  5. [READ/RELEASE] One of the best EMU-Devs arround and some of his work posted here!
    By latruwski in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 11-17-2007, 07:43 AM
All times are GMT -5. The time now is 07:23 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