Posted by JM on July 17, 1998 at 19:09:53:
In Reply to: Re: sound help posted by Jepman on July 17, 1998 at 18:33:09:
: simple use the playdialog.cog! Very simple cog too
Jepman, Let someone who knows what the [ and ] are used for in a cog answer.
symbols
thing triggera
sound toplay
int done=0 local
message touched
end
code
touched:
if (done == 1) return;
done = 1;
PlaySoundLocal(toplay, 0, 0x5);
return;
end