[Share/Release] LUA Blizzcon Band menu

User Tag List

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

    [Share/Release] LUA Blizzcon Band

    Hey everyone.
    I found this awesome lua script, and I would like to share it with you guys.

    Then you ask, what can I use it for?

    Well, when you kill the trigger npc, you made, the blizzcon band will spawn at the selected spot, there will also be send out rock music, to the entire server, while the band is playing. When the band despawns, the music does as well.

    Replace the things in red, npcid, MapID, x coords, y coords, z coords and Orientation.

    I recommend that you use the original Blizzcon Band Stage, but I forgot the ID, sorry :/



    Code:
    function BlizzconBand_Spawn_On_MobDied (Unit)
    
    Unit:SendChatMessage(12, 0, "ARE YOU READY TO ROCK 'N ROOOOOLLLLL!!!");
    
      ---Spawn in band formation---  
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Drummer
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Bass Player
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Singer
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Lead Guitar Player
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Guitar Player
    
      Unit:PlaySoundToSet(11803)
      
      Unit:Despawn(800000, 0);
      
      Unit:RemoveEvents()
      
    end
    
    RegisterUnitEvent(NPCID, 4, "BlizzconBand_Spawn_On_MobDied")
    Note:"I didn't make this script, I only moded the missing Guitar Player"
    Last edited by Lauren; 10-15-2008 at 04:17 AM.

    [Share/Release] LUA Blizzcon Band
  2. #2
    Lauren's Avatar Member
    Reputation
    14
    Join Date
    Jul 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    77 Views but no comments, /sniff...
    Last edited by Lauren; 10-15-2008 at 09:20 AM. Reason: 61 Views, now

  3. #3
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    didnt need it.. pretty common and also in almost all Repacks etc... anyway am nice to u +Rep
    [/COLOR]

  4. #4
    Lauren's Avatar Member
    Reputation
    14
    Join Date
    Jul 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, Exacute

  5. #5
    azeon's Avatar Banned
    Reputation
    29
    Join Date
    Sep 2007
    Posts
    163
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    like Exacute said nothing special, but l like it.
    so why not? +Rep

  6. #6
    kainmcloud's Avatar Banned
    Reputation
    15
    Join Date
    Oct 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great Find Buddy!Love It!+Rep For You!

  7. #7
    Lauren's Avatar Member
    Reputation
    14
    Join Date
    Jul 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, azeon and kainmcloud

  8. #8
    shadowslayer133's Avatar Active Member
    Reputation
    61
    Join Date
    May 2008
    Posts
    313
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found this already in Apple's Acento

    Done by piersd
    Gamer tag - Midnight133

  9. #9
    Appled's Avatar Contributor
    Reputation
    105
    Join Date
    Apr 2007
    Posts
    568
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hehe btw this is req for you Put emotes it into too
    Edit: Repp ;D

  10. #10
    TheNlghtmare's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    142
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lauren View Post
    Hey everyone.
    I found this awesome lua script, and I would like to share it with you guys.

    Then you ask, what can I use it for?

    Well, when you kill the trigger npc, you made, the blizzcon band will spawn at the selected spot, there will also be send out rock music, to the entire server, while the band is playing. When the band despawns, the music does as well.

    Replace the things in red, npcid, MapID, x coords, y coords, z coords and Orientation.

    I recommend that you use the original Blizzcon Band Stage, but I forgot the ID, sorry :/



    Code:
    function BlizzconBand_Spawn_On_MobDied (Unit)
    
    Unit:SendChatMessage(12, 0, "ARE YOU READY TO ROCK 'N ROOOOOLLLLL!!!");
    
      ---Spawn in band formation---  
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Drummer
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Bass Player
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Singer
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Lead Guitar Player
      Unit:SpawnCreature(MapID, X COORDS, Y COORDS, Z COORDS, Orientation, 35, 120000) --- Guitar Player
    
      Unit:PlaySoundToSet(11803)
      
      Unit:Despawn(800000, 0);
      
      Unit:RemoveEvents()
      
    end
    
    RegisterUnitEvent(NPCID, 4, "BlizzconBand_Spawn_On_MobDied")
    Note:"I didn't make this script, I only moded the missing Guitar Player"
    Awesome. Thanks for this.
    743N1647M@R3 is omgepic dudes and dudettes!

  11. #11
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Like sombody already said, This is in almost most of the repacks.
    It is pretty common, but +Rep cos im in a kind mood.

Similar Threads

  1. [Share/Release] Illidanius(Illidan's Brother) [LUA]
    By Sitzn in forum WoW EMU General Releases
    Replies: 9
    Last Post: 03-18-2009, 12:40 PM
  2. [Share/Release] Lua Portal
    By ~ViVo~ in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 03-16-2008, 10:40 AM
  3. [RELEASE] LUA Bossfight
    By Shao111 in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 01-23-2008, 03:03 PM
  4. Blizzcon "Band" Morph Codes!
    By Shinyshoes in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 10-08-2007, 08:07 PM
All times are GMT -5. The time now is 12:16 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