|
mdvbilt Beginner
Joined: 21 Jul 2005 Posts: 13 Location: Encinitas, CA
|
Posted: Mon Aug 01, 2005 1:23 pm
Programming question. |
Hello,
How would I program zMUD to beep whenever there is activity on the MUSH that I'm playing?
Thanks.
mdvbilt
P.S. I need seriously detailed instructions, because I'm a programming idiot. |
|
|
|
gacameron01 Newbie
Joined: 26 Jul 2005 Posts: 5
|
Posted: Mon Aug 01, 2005 2:46 pm Activity? |
What, beep on any and every activity? Does nothing much happen in your mush? Or is that specific type of activity you want beeped on, and if so paste a sample "activity".
|
|
|
|
mdvbilt Beginner
Joined: 21 Jul 2005 Posts: 13 Location: Encinitas, CA
|
Posted: Mon Aug 01, 2005 2:50 pm Beep |
No, beep on every activity. My MUSH is very quiet right now, and sometimes it's easy to miss when someone logs on or something happens. So, yes, I want it to beep when anything happens.
|
|
|
|
Orang Apprentice
Joined: 22 Jul 2004 Posts: 118 Location: USA
|
Posted: Mon Aug 01, 2005 3:43 pm |
#TRIGGER {(*)} {#BEEP}
is that what you are looking for? |
|
|
|
mdvbilt Beginner
Joined: 21 Jul 2005 Posts: 13 Location: Encinitas, CA
|
Posted: Mon Aug 01, 2005 8:35 pm Beep. |
Uh... that may be it. Exactly where would I put that piece of code?
I told you that I was a programming moron.
Thanks,
mdvbilt |
|
|
|
Ikyu Beginner
Joined: 27 Feb 2005 Posts: 24
|
Posted: Mon Aug 01, 2005 8:41 pm |
Just paste that code on your commandline, where you type all other things
|
|
|
|
mdvbilt Beginner
Joined: 21 Jul 2005 Posts: 13 Location: Encinitas, CA
|
Posted: Mon Aug 01, 2005 8:58 pm Beep. |
Oh, cool. So what would I then do to disable it?
Thanks so much,
mdvbilt |
|
|
|
Orang Apprentice
Joined: 22 Jul 2004 Posts: 118 Location: USA
|
Posted: Tue Aug 02, 2005 12:11 pm |
#TRIGGER "beep" {(*)} {#BEEP}
to disable, type this:
#T- "beep"
enable:
#T+ "beep" |
|
|
|
mdvbilt Beginner
Joined: 21 Jul 2005 Posts: 13 Location: Encinitas, CA
|
Posted: Tue Aug 02, 2005 2:36 pm Great! |
Wonderful! Thank you so much to everyone who helped out.
Sincerely,
mdvbilt |
|
|
|
|
|