home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2003 June / macformat-130.iso / mac / Reviewed⁄Demos / Spearhead Demo / demota / pak1.pk3 / global / entsound.scr < prev    next >
Encoding:
Text File  |  2002-10-21  |  430 b   |  14 lines

  1. main local.org local.tag local.sound local.pause:
  2.     if (local.pause != NIL)
  3.         wait local.pause
  4.     
  5.     if (getcvar(debug) == "1")
  6.     println (local.org + " is playing sound " + local.sound + " on tag " +  local.tag)
  7.  
  8.     local.ent = spawn script_model
  9.     local.ent model "fx/dummy.tik"
  10.     local.ent.origin = local.org gettagposition local.tag
  11.     local.ent playsound local.sound wait
  12.     local.ent waittill sounddone
  13.     local.ent delete
  14. end