Posted by JM on July 10, 1998 at 13:22:00:
In Reply to: Wavs posted by Abe on July 10, 1998 at 10:28:31:
: yeah i need the cog to play a wav only once in a sector i beleive it was Jed master that told me before can anyone help thanks
Grumble grumble...
symbols
sector trigger
sound toplay
message entered
int done=0 local
end
code
entered:
if (done != 0) return;
done = 1;
PlaySoundLocal(toplay, somemorestuffhere, -1);
end
can someone fill in the other stuff in the play sound thing?