NEW Twink pvp level 19 Lua and Sql files menu

User Tag List

Results 1 to 10 of 10
  1. #1
    runiker's Avatar Contributor
    Reputation
    105
    Join Date
    Nov 2007
    Posts
    501
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [release] LVL 19 twink scripts AND there SQL

    First off i will explain in high detail what i have done here.

    1. I have done reaserch on the some of the top retail lvl 19 twinks took there stats for each class type and converted them into a mob {see list below}

    2. I have scripted in lua each form of twink. I made the Casters cast there spells (only the ones able at level 19 for that type) {please see examples below}

    3. I have compiled and uploaded it for you to download.

    here is link
    MEGAUPLOAD - The leading online storage and file delivery service

    Code:
    785034    Draenei-Priest
    785035    Draenei-Paladin
    785036    Human-Paladin
    785037    Dwarf-Paladin
    785038    Blood Elf-Paladin
    785000    Dwarf-Hunter
    785001    Night Elf-Hunter
    785002    Draenei-Hunter
    785003    Orc-Hunter
    785004    Tauren-Hunter
    785005    Troll-Hunter
    785006    Blood Elf-Hunter
    785007    Undead-Mage
    785008    Troll-Mage
    785009    Blood Elf-Mage
    785010    Human-Mage
    785011    Gnome-Mage
    785012    Draenei-Mage
    785013    Draenei-Warlock
    785014    Human-Warlock
    785015    Gnome-Warlock
    785016    Orc-Warlock
    785017    Undead-Warlock
    785018    Blood Elf-Warlock
    785019    Blood Elf-Rouge
    785020    Troll-Rouge
    785021    Undead-Rouge
    785022    Orc-Rouge
    785023    Human-Rouge
    785024    Dwarf-Rouge
    785025    Night Elf-Rouge
    785026    Gnome-Rouge
    785027    Night Elf-Druid
    785028    Tauren-Druid
    785029    Blood Elf-Priest
    785030    Troll-Priest
    785031    Undead-Priest
    785032    Dwarf-Priest
    785033    Night Elf-Priest
    785039    Orc-Shaman
    785040    Tauren-Shaman
    785041    Troll-Shaman
    785042    Draenei-Shaman
    785043    Human-Warrior
    785044    Dwarf-Warrior
    785045    Night Elf-Warrior
    785046    Gnome-Warrior
    785047    Draenei-Warrior
    785048    Orc-Warrior
    785049    Undead-Warrior
    785050    Tauren-Warrior
    785051    Troll-Warrior
    785052    Blood Elf-Warrior


    Code:
    function lock19A_pain (pUnit, Event)
        pUnit:CastSpellOnTarget(5676)
    end
    
    function lock19A_drain (pUnit, Event)
        pUnit:CastSpell(689, pUnit:GetTauntedBy())
    end
    
    function lock19A_soul (pUnit, Event)
        pUnit:CastSpell(5232)
    end
    
    function lock19A_corr (pUnit, Event)
        pUnit:CastSpellOnTarget(6222, pUnit:GetMainTank())
    end
    
    function lock19A_sb (pUnit, Event)
        pUnit:CastSpellOnTarget(705, pUnit:GetMainTank())
    end
    
    
    --===========================--
       --=======sets=======--
    --==========================--
    
    function lock19A_Death (pUnit, Event)
        RemoveEvents()
        pUnit:SendChatMessage(11, 13, "How can you reject me death?!?!")
    end
    
    function lock19A_Phase4 (pUnit, Event)
        if pUnit:GethealthPct() < 20 then
            RemoveEvents()
            pUnit:SendChatMessage(0, 13, "I am one with death!")
            pUnit:RegisterEvent("lock19A_sb", 2500, 0)
            pUnit:RegisterEvent("lock19A_drain", 15000, 0)
            pUnit:RegisterEvent("lock19A_pain", 30000, 0)
            pUnit:RegisterEvent("lock19A_soul", 25000, 0)
        end
    end
    
    function lock19A_Phase3 (pUnit, Event)
        if pUnit:GethealthPct() < 50 then
            RemoveEvents()
            pUnit:SendChatMessage(11, 13, "Fear me mortals!")
            pUnit:RegisterEvent("lock19A_sb", 3500, 0)
            pUnit:RegisterEvent("lock19A_pain", 20000, 0)
            pUnit:RegisterEvent("lock19A_corr", 35000, 0)
            pUnit:RegisterEvent("lock19A_drain", 45000, 0)
            pUnit:RegisterEvent("lock19A_Phase4", 1000, 0)
        end
    end
    
    function lock19A_Phase2 (pUnit, Event)
        if pUnit:GethealthPct() < 80 then
            RemoveEvents()
            pUnit:RegisterEvent("lock19A_sb", 3500, 0)
            pUnit:RegisterEvent("lock19A_corr", 20000, 0)
            pUnit:RegisterEvent("lock19A_drain", 35000, 0)
            pUnit:RegisterEvent("lock19A_Phase3", 1000, 0)
    
        end
    end
    
    function lock19A_combat (pUnit, Event)
            pUnit:RegisterEvent("lock19A_sb", 3500, 0)
            pUnit:RegisterEvent("lock19A_Phase2", 1000, 0)
    end
    
    
    
    RegisterUnitEvent(785013, 1, "lock19A_combat")
    RegisterUnitEvent(785013, 4, "lock19A_Death")
    RegisterUnitEvent(785014, 1, "lock19A_combat")
    RegisterUnitEvent(785014, 4, "lock19A_Death")
    RegisterUnitEvent(785015, 1, "lock19A_combat")
    RegisterUnitEvent(785015, 4, "lock19A_Death")
    Edit notes
    fixed some of the bugs if there is any more let me know.
    Last edited by runiker; 07-18-2008 at 07:39 PM.

    NEW Twink pvp level 19 Lua and Sql files
  2. #2
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so...what is it btw theres errors in your chat messages
    you did the language ten chat type in the LUA its suppsoed to be chat type then language
    other than not knowing waht it is it seems you put a hell of alot of work into this so +Rep
    damn gotta spread
    Lunar Gaming - Reaching For The Stars

  3. #3
    runiker's Avatar Contributor
    Reputation
    105
    Join Date
    Nov 2007
    Posts
    501
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Huge update and fix please relook now.

  4. #4
    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)
    Good work mate

    Don't really see any big reason to use these mobs though, but I could figure something out
    +Rep

  5. #5
    runiker's Avatar Contributor
    Reputation
    105
    Join Date
    Nov 2007
    Posts
    501
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its mostly for pvp servers

  6. #6
    way2kooky's Avatar Member
    Reputation
    13
    Join Date
    Jun 2007
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wait ok i dont understand what this is?? did you like just make them for an instance it could be or what?
    Edit: not really an instance but like for what im cunfused
    ~~~~~~~~~~~~~~Way2kooky~~~~~~~~~~~~~

  7. #7
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    THIS IS EXCELLENT! +3Rep.
    Will be making an event using these tomorrow

  8. #8
    runiker's Avatar Contributor
    Reputation
    105
    Join Date
    Nov 2007
    Posts
    501
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Glad hope you like let me know if there are any problems you have.

  9. #9
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    HordePaladins will do a constant heal, and can't be killed.

  10. #10
    Ickybad's Avatar Contributor
    Reputation
    214
    Join Date
    Apr 2008
    Posts
    904
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh is this like the intellegent things in magister's the pvp event in there

Similar Threads

  1. [LUA and SQL] Necrodragon Kalish
    By kreegoth in forum WoW EMU General Releases
    Replies: 11
    Last Post: 09-28-2008, 12:01 PM
  2. LUA and SQL - Vakama, Earth Warden
    By kreegoth in forum WoW EMU General Releases
    Replies: 5
    Last Post: 09-23-2008, 02:24 AM
  3. [Release] Gnome Elementalists Lua and SQL
    By kreegoth in forum WoW EMU General Releases
    Replies: 11
    Last Post: 09-10-2008, 08:58 PM
  4. [release] Battle Ground Flag LUA and SQL files
    By runiker in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 06-12-2008, 01:36 PM
  5. [Help] Need some DB's and SQL files..
    By UnKnowN- in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 11-22-2007, 12:22 AM
All times are GMT -5. The time now is 08:54 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