Is there an easy way to make a FireWork show? menu

User Tag List

Results 1 to 14 of 14
  1. #1
    LoneWolf2145's Avatar Private
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Is there an easy way to make a FireWork show?

    Is there anyway to make the firework shows in retail that happen in SW ORG ect. on the 4th of july?

    Everyone says its possible, but not easy...

    So,

    Is it possible and how hard is it?

    Please help

    Is there an easy way to make a FireWork show?
  2. #2
    **Sweeny**'s Avatar Member
    Reputation
    33
    Join Date
    Dec 2007
    Posts
    282
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I remeber project Silvermoon make a fileworks lua script. Dunno if thats what you mean but maybe you could copy the lua script and add it to your server?

  3. #3
    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)


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

  4. #4
    **Sweeny**'s Avatar Member
    Reputation
    33
    Join Date
    Dec 2007
    Posts
    282
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats just an item? Think hes looking for a script or something that shots it into the air without doing it by someone else.

  5. #5
    LoneWolf2145's Avatar Private
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea, if you saw this years firework show or know what im talking about, i was looking for the one that they have yearly,(The big ones)

    Im sure its pretty hard though...

  6. #6
    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)
    not necissarily just use like a rabit as its spawn id and spawn a rabbit in the middle of the place and have an LUA Script set off firecrackers
    Lunar Gaming - Reaching For The Stars

  7. #7
    **Sweeny**'s Avatar Member
    Reputation
    33
    Join Date
    Dec 2007
    Posts
    282
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The repack is on mmowned if you cant find it. http://www.mmowned.com/forums/emulat...il-2008-a.html
    Last edited by **Sweeny**; 07-05-2008 at 03:19 AM.

  8. #8
    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)
    i wroted up a script of this for you but then my comp crashed but i can an example of what it should look like and you can make the script yourself
    the way you want it
    Lunar Gaming - Reaching For The Stars

  9. #9
    LoneWolf2145's Avatar Private
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank You So Much

    +rep

  10. #10
    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)
    Originally Posted by l33tnoob View Post
    Thats just an item? Think hes looking for a script or something that shots it into the air without doing it by someone else.
    lol, its a gameobject: Firework Rocket, Promotion - Object - World of Warcraft

    read one of the comments:

    Code:
    This is an invisible object, witch shoot fireworks in the air
    By Nightstelth on 11/27/2007


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

  11. #11
    Bloodstain's Avatar Member
    Reputation
    24
    Join Date
    Oct 2007
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Give players fireworks that is probobly the easyest way ^^ I would suggest using wow models or maybe theres is a visual spell...

  12. #12
    LoneWolf2145's Avatar Private
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Err yea, i have used and known about the firework object- thanks though

    As Far As just giving out fireworks,
    There not that big,
    The server i am on does not allow firework/cluster launchers.
    and i think the best thing to do is try the repack...


    Thanks AnyWays =]

  13. #13
    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)
    Code:
    function fw_rwb(pUnit, Event)
        pUnit:CastSpell(9317)
    end
    
    function fw_rose(pUnit, Event)
        pUnit:CastSpell(9315)
    end
    
    function fw_snake(pUnit, Event)
        pUnit:CastSpell(19026)
    end
    
    
    
    function fireworks_Phase1(Unit, event)
    
            Unit:RegisterEvent("fw_rwb",4000, 0)
            Unit:RegisterEvent("fw_rose",8000, 1)
            Unit:RegisterEvent("fw_snake",10000, 8)
    
        
    end
    
    
    
    function classdemonicwarlock2_OnCombat(Unit, event)
        Unit:RegisterEvent("fireworks_Phase1",1000, 0)
    end
    
    
    
    RegisterUnitEvent(558895, 1, "fireworks_OnCombat")
    i think this should work

  14. #14
    LoneWolf2145's Avatar Private
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok thanks =D

    +rep

Similar Threads

  1. Easy way to make custom weapons and armor
    By Nimaasuss in forum WoW EMU Guides & Tutorials
    Replies: 72
    Last Post: 01-30-2013, 07:40 PM
  2. Easy way to make a 2.1.X Server
    By Nimaasuss in forum WoW EMU Guides & Tutorials
    Replies: 709
    Last Post: 01-30-2008, 08:44 PM
  3. Semi-Easy way to make Gold.
    By Knuck3ls in forum World of Warcraft Guides
    Replies: 15
    Last Post: 10-10-2007, 09:27 AM
  4. Some easy ways to make gold
    By Swiftflight in forum World of Warcraft Guides
    Replies: 10
    Last Post: 07-30-2007, 07:24 PM
  5. Easy way to make quick money, completely and utterly unbannable
    By m0rbidang3l in forum World of Warcraft Exploits
    Replies: 30
    Last Post: 05-08-2007, 11:51 PM
All times are GMT -5. The time now is 05:47 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