Globalsound: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 1: Line 1:
'''globalsound''' <sound>
'''globalsound''' <sound><br>
'''globalsoundvar''' <sound>
'''globalsoundvar''' <sound>



Latest revision as of 20:37, 24 February 2011

globalsound <sound>
globalsoundvar <sound>

Plays a sound that can be heard everywhere in the map. The <sound> value is the name or number of the sound to play, not the filename of the sound. See globalsoundvar.

state checkboss1hitstate
  ifrnd 2
    spawn BLOODPOOL
  ifdead
  {
    ifspritepal 0
      globalsound DUKE_TALKTOBOSSFALL
    else
...

Commands with an additional "var" suffix take gamevars rather than constants or defined labels for their inputs. As an alternate short form, "varvar" can be dropped from these commands; for example ife serves an an alias for ifvarvare.