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"