I wrote this
but I cant figure out how to add a simple beep when you activate the console. I'm sure this is easy and I cant figure out why nothing I've tried works!
------------------
Jedi Shopping Mall
Code:
# Jedi Knight Cog Script
#
# A Cog by by SlingsRat
#
# Creates a thing at a ghost location
symbols
thing console desc=console
thing createhere nolink,desc=createhere
int done=0 local
template tocreate
message activated
end
# ========================================================================================
code
activated:
if(done == 1) Return;
done = 1;
CreateThing(tocreate, createhere);
Return;
end
but I cant figure out how to add a simple beep when you activate the console. I'm sure this is easy and I cant figure out why nothing I've tried works!
------------------
Jedi Shopping Mall