Posted by Fourwood on June 11, 1998 at 12:10:20:
In Reply to: > MOTS sounds posted by SciComm on June 10, 1998 at 21:50:54:
: How do you get dialogue text to show up at the top of the screen when
: you enter a sector?
: How do you get sounds to play onetime only?
: This is in MOTS, so the COGs are different and I can't figure them out.
: If anyone can help me I would be eternally greatful.
Hmm... maybe something a little like this? Someone correct me if I'm wrong.
# Jedi Knight .cog script
#
#
# Play a sound when you come in to room.
#
symbols
message entered
sector soundsector
sound playsound
flex volume
end
code
entered:
SectorSount(soundsector,playsound,volume);
return;
end