VanCleef LUA - 4 Phases Script menu

User Tag List

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

    VanCleef LUA - 4 Phases Script

    This is my own made LUA for VanCleef, existing in 4 Phases

    Start : Phase1 <95% Hp with around 25k hp
    He casts, every 20 seconds, a aoe mass slow on all the players
    He also summons 2 adds
    (Mass Slow - Spells - World of Warcraft)

    Phase2 <50% Hp
    He also summons 2 adds with around 25k hp
    He wil cast a 2-3k damage bomb on your maintank, every 15 seconds damaging all the targets around him

    Phase3 <25% Hp
    He also summons 2 adds with around 25k hp
    He casts a around 4-5k Damage cleave and does 500 damage / 3 seconds for 15 seconds each 15 Seconds
    He casts a 4k Chain Lightning sort of ability that bounces 5 times and makes the ones who recieved the blow get a 4second silence every 20 seconds

    Phase4 <5% Hp
    He summons no adds
    VanCleef now does the same ChainLigthning ability but now every 15 seconds
    VanCleef also goes berserk increasing his attack speed by 75% and dealing 300 more damage

    SQL's :
    Code:
    INSERT INTO `creature_names` VALUES ('60053', 'Edwin VanCleef', 'Defias Kingpin', '', '0', '7', '0', '3', '0', null, '2029', '2029', '0', '0', '1', '1', '0', null);
    INSERT INTO `creature_names` VALUES ('60054', 'Defias Blackguard', '', '', '0', '7', '0', '1', '0', null, '2314', '2314', '0', '0', '1', '1', '0', null);
    
    INSERT INTO `creature_proto` VALUES ('60053', '74', '74', '189', '2000000', '2000000', '0', '1', '0', '1700', '0', '4322', '4322', '0', '0', '0', '0', '31857', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '2.5', '8', '14', '0');
    INSERT INTO `creature_proto` VALUES ('60054', '74', '74', '17', '50000', '50000', '0', '1', '0', '2000', '0', '1000', '1000', '0', '0', '0', '0', '31857', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '2.5', '8', '14', '0');
    
    INSERT INTO `creature_spawns` VALUES ('79556', '21462', '530', '-3475.94', '1129.95', '9.60053', '1.32496', '0', '20294', '14', '0', '16908544', '4097', '0', '0', '0', '0', '0', '0');
    LUA's :
    Code:
    function VanCleef_Cleave(pUnit)
        pUnit:FullCastSpellOnTarget(38226, pUnit:GetMainTank())
    end
    
    function VanCleef_Slow(pUnit)
        pUnit:CastSpell(30035)
    end
    
    function VanCleef_Thunderclap(pUnit)
        pUnit:CastSpell(38146)
    end
    
    function VanCleef_Bomb(pUnit)
        pUnit:CastSpellOnTarget(40332, pUnit:GetMainTank())
    end
    
    
    
    
    
    
    function VanCleef_onCombat(pUnit, Event)
        pUnit:RegisterEvent("VanCleef_Phase1",1000,0)
    end
    
    function VanCleef_onLeaveCombat(pUnit, Event)
        pUnit:RemoveEvents()
    end
    
    function VanCleef_onDeath(pUnit, Event)
        pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent (60053, 1, "VanCleef_onCombat")
    RegisterUnitEvent (60053, 2, "VanCleef_onLeaveCombat")
    RegisterUnitEvent (60053, 4, "VanCleef_onDeath")
    
    
    
    
    
    
    
    function VanCleef_Phase1(pUnit)
          if pUnit:GetHealthPct() < 95 then
            pUnit:RemoveEvents()
            pUnit:PlaySoundToSet(5780)
            pUnit:SendChatMessage(12, 0, "None may challange the brotherhood!")
            x = pUnit:GetX();
            y = pUnit:GetY();
            z = pUnit:GetZ();
            o = pUnit:GetO();
            pUnit:SpawnCreature(60054, x, y, z, o, 17, 0);
            pUnit:SpawnCreature(60054, x, y, z, o, 17, 0);	
            pUnit:RegisterEvent("VanCleef_Phase2",1000,0)
            pUnit:RegisterEvent("VanCleef_Slow",20000,0)
          end
    end
    
    function VanCleef_Phase2(pUnit)
          if pUnit:GetHealthPct() < 50 then
            pUnit:RemoveEvents()
            pUnit:PlaySoundToSet(5782)
            pUnit:SendChatMessage(12, 0, "Lapdogs, All of you!")
            x = pUnit:GetX();
            y = pUnit:GetY();
            z = pUnit:GetZ();
            o = pUnit:GetO();
            pUnit:SpawnCreature(60054, x, y, z, o, 17, 0);
            pUnit:SpawnCreature(60054, x, y, z, o, 17, 0);
            pUnit:RegisterEvent("VanCleef_Phase3",1000,0)
            pUnit:RegisterEvent("VanCleef_Bomb",15000,0)	
          end
    end
    
    function VanCleef_Phase3(pUnit)
          if pUnit:GetHealthPct() < 25 then
            pUnit:RemoveEvents()
            pUnit:PlaySoundToSet(5783)
            pUnit:SendChatMessage(12, 0, "FOOLS! Our Cause is Righteous!")
            x = pUnit:GetX();
            y = pUnit:GetY();
            z = pUnit:GetZ();
            o = pUnit:GetO();
            pUnit:SpawnCreature(60054, x, y, z, o, 17, 0);
            pUnit:SpawnCreature(60054, x, y, z, o, 17, 0);	
            pUnit:RegisterEvent("VanCleef_Phase4",1000,0)
            pUnit:RegisterEvent("VanCleef_Cleave",15000,0)
            pUnit:RegisterEvent("VanCleef_Thunderclap",20000,0)
          end
    end
    
    function VanCleef_Phase4(pUnit)
          if pUnit:GetHealthPct() < 5 then
            pUnit:RemoveEvents()
            pUnit:PlaySoundToSet(5784)
            pUnit:SendChatMessage(12, 0, "The brotherhood shal prevail...")
            pUnit:CastSpell(23537)  
            pUnit:RegisterEvent("VanCleef_Thunderclap",15000,0)
          end
    end
    He should be spawned at the end of the deadmines on his ship, neutral and level 74 (stil a skull cause hes a boss)
    Screenshots :
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

    VanCleef LUA - 4 Phases Script
  2. #2
    Mythers's Avatar Banned
    Reputation
    88
    Join Date
    Jul 2007
    Posts
    576
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol, Awesome. Going to add this to my custom Instance. Ty!

  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)
    Sorry for the big white space btw, i dont heav liek l33t paint skillz
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

  4. #4
    kate1's Avatar Member
    Reputation
    147
    Join Date
    Aug 2007
    Posts
    501
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think this is GREAT! gz and +Rep


    Graphic designer for crossfire-entertainment! And thx to Brightchild for my great sig

  5. #5
    Rawlsku-'s Avatar Member
    Reputation
    22
    Join Date
    Feb 2008
    Posts
    175
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    AWESOME!

    Hankytanky here :b
    Sweeeeet piece of encounter :O
    +rape

    I come from Winland, I speak Winnish and I'm called a 'Winn'

  6. #6
    kevinno's Avatar Member
    Reputation
    46
    Join Date
    Oct 2007
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So we just add each quiery one at a time? For all 5?

    Because i added the first two then went to the third and got a duplacate entry error.
    The entry number was because of the first query.. So.... what do i do...

  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)
    HankyTanky the ret pala ftw lol :P
    RickAstley LUA Boss! (Rickroll)
    mmowned.com/forums/emulator-server-releases/171755-epic-release-rick-astley-rickroll-boss-lua.html#post1119442

Similar Threads

  1. [2.4][LUA] The Boss Scripts!
    By BrantX in forum World of Warcraft Emulator Servers
    Replies: 30
    Last Post: 10-07-2008, 05:17 PM
  2. [LUA][SQL] Angel Script
    By BrantX in forum World of Warcraft Emulator Servers
    Replies: 10
    Last Post: 06-11-2008, 02:21 PM
  3. Lua Wait Command? Script.
    By moongo in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 05-14-2008, 12:52 AM
  4. [LUA] Mulgore Creatures Scripted
    By SectorSeven in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 04-11-2008, 01:00 AM
  5. [Lua]Boss phases not working, NEED PRO HELP!!
    By blah7 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 01-23-2008, 02:30 PM
All times are GMT -5. The time now is 10:14 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