[release] Traps for events and instances menu

User Tag List

Results 1 to 3 of 3
  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] Traps for events and instances

    Welcome to my new project. With the combo of these lua and sql files i have made it so when a player enters range they give off a spell then disappear for a bit. These creatures are set to trap so only people who would see a trap can see these things. These would be great inside a new custom instance or inside a maze. Note there are buff ones for a reward as well. I will accept any feedback and would continue with this project as long as you guys like them.


    Download it here
    MEGAUPLOAD - The leading online storage and file delivery service


    spell list
    Code:
    shadow nova - 38627
    frost nova - 27088
    holy nova - 25331
    mass fear - 17928
    gas - 45855
    sludge - 45573
    darkfury - 39153
    death - 5
    buff m20 - 25794
    buff m40 - 25795
    buff m60 - 25796
    buff c20 - 25797
    buff c40 - 25798
    buff c60 - 25799
    shadow rain -37399
    bag -14537
    fumes -35204
    slime -40801
    here is the npc spawn id list with names
    Code:
    8740000    shadow nova
    8740001    frost nova
    8740002    holy nova
    8740003    mass fear
    8740004    gas
    8740005    sludge
    8740006    darkfury
    8740007    death
    8740008    buff m20
    8740009    buff m40
    8740010    buff m60
    8740011    buff c20
    8740012    buff c40
    8740013    buff c60
    8740014    shadow rain
    8740015    bag
    8740016    fumes
    8740017    slime

    Here are the lua codes

    Code:
    function Buffm20_Ontrip(pUnit, Event)
    pUnit:CastSpell(25794)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740008, 10, "Buffm20_Ontrip")
    
    function Buffm40_Ontrip(pUnit, Event)
    pUnit:CastSpell(25795)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740009, 10, "Buffm40_Ontrip")
    
    function Buffm60_Ontrip(pUnit, Event)
    pUnit:CastSpell(25796)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740010, 10, "Buffm60_Ontrip")
    
    function Buffc20_Ontrip(pUnit, Event)
    pUnit:CastSpell(25797)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740011, 10, "Buffc20_Ontrip")
    
    function Buffc40_Ontrip(pUnit, Event)
    pUnit:CastSpell(25798)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740012, 10, "Buffc40_Ontrip")
    
    function Buffc60_Ontrip(pUnit, Event)
    pUnit:CastSpell(25799)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740013, 10, "Buffc60_Ontrip")
    Code:
    function Shadownova_Ontrip(pUnit, Event)
    pUnit:CastSpell(38627)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740000, 10, "Shadownova_Ontrip")
    
    function Frostnova_Ontrip(pUnit, Event)
    pUnit:CastSpell(27088)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740001, 10, "Frostnova_Ontrip")
    
    function Holynova_Ontrip(pUnit, Event)
    pUnit:CastSpell(25331)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740002, 10, "Holynova_Ontrip")
    
    function Massfear_Ontrip(pUnit, Event)
    pUnit:CastSpell(17928)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740003, 10, "Massfear_Ontrip")
    
    function gas_Ontrip(pUnit, Event)
    pUnit:CastSpell(45855)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740004, 10, "gas_Ontrip")
    
    function Sludge_Ontrip(pUnit, Event)
    pUnit:CastSpell(45573)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740005, 10, "Sludge_Ontrip")
    
    function Shadowfury_Ontrip(pUnit, Event)
    pUnit:CastSpell(39153)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740006, 10, "shadowfury_Ontrip")
    
    function Death_Ontrip(pUnit, Event)
    pUnit:CastSpell(5)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740007, 10, "Death_Ontrip")
    
    function Shadowrain_Ontrip(pUnit, Event)
    pUnit:CastSpell(37399)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740014, 10, "Shadowrain_Ontrip")
    
    function bag_Ontrip(pUnit, Event)
    pUnit:CastSpell(14537)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740015, 10, "bag_Ontrip")
    
    function fumes_Ontrip(pUnit, Event)
    pUnit:CastSpell(35204)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740016, 10, "fumes_Ontrip")
    
    function Slime_Ontrip(pUnit, Event)
    pUnit:CastSpell(40801)
    pUnit:Despawn(25, 36000)
    pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(8740017, 10, "Slime_Ontrip")

    [release] Traps for events and instances
  2. #2
    Power of Illuminati's Avatar Contributor
    Reputation
    179
    Join Date
    May 2008
    Posts
    1,410
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Man, this sounds nice. +Rep for taking the time to make this

  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)
    Can anyone try this to make sure this worked no server atm to test on sorry.

Similar Threads

  1. [Trinity] Epic Release-Hyjal for TrinityCore 3.3.5a and two Malls (Full Project)
    By snake eyes in forum WoW EMU General Releases
    Replies: 11
    Last Post: 12-15-2017, 11:02 PM
  2. [RELEASE]Working vmaps, Maps and DBC Files for 3.0.3
    By Ziddy1337 in forum WoW EMU General Releases
    Replies: 4
    Last Post: 12-20-2008, 04:34 PM
  3. Perfect Place for a new instance or server event!
    By Koest in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 10-01-2007, 03:35 PM
  4. Question about release crack for Glider and other nice stuff
    By RedDevil in forum World of Warcraft General
    Replies: 39
    Last Post: 12-13-2006, 12:40 AM
All times are GMT -5. The time now is 12:23 AM. 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