Turf for music triggers in Developer Help
|
|
I am trying to make the Characters you chose have there music theme activate when you step on the turf, but it only plays 1 theme from another chaarter. How can i make this activate lets say, Rob Van Dams theme when i choose him and step on the trigger?--->
if ("Edge")
character = new /mob/superstar/Edge()
turf/wwfmusicthemes
density = 0
Entered()
if ("Edge")
world << sound('edgetheme.mid')
if ("Vince McMahon")
world << sound('mcmahon.mid')
if ("Rob Van Dam")
world << sound('rvd.mid')
if ("Tajiri")
world << sound('smack.mid')
|