|
wth Novice
Joined: 14 Nov 2001 Posts: 37 Location: Poland
|
Posted: Tue Sep 24, 2002 12:49 pm
ALARM and trigger off |
Why alarms works when I'm turning off triggers?
I have to always manualy disable class or single alarm when wish to disable all triggers!
Best rgds,
--
Waldek
There are no mistakes, just learning experience |
|
|
|
dagwood Newbie
Joined: 14 Oct 2000 Posts: 7 Location: Australia
|
Posted: Wed Sep 25, 2002 7:30 pm |
I hesitate to guess that you are using #Alarm +<value> this will make the alarm act every x ammount of time (Value)
You should be using:
#Alarm -<value> this will make the alarm run only once after the trigger and turning off the trigger will also stop the #alarm as it is suppose to fire only the once |
|
|
|
Vijilante SubAdmin
Joined: 18 Nov 2001 Posts: 5182
|
Posted: Wed Sep 25, 2002 10:35 pm |
ALARMS are a special case of trigger, they are not deactivated by IGNORE or the gun-icon. Best I can suggest is put all continous ALARM's into a single class and deactivate that class as well. If you generally use the gun icon you can make yourself a button with the commands of
#IGNORE
#T- AlarmClass |
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Wed Sep 25, 2002 10:44 pm |
Sorry, dagwood, but that's backwards. + makes alarms one-time. - makes them use connect-time. With neither, they use clock-time. None of them have any effect on when alarms are disabled.
LightBulb
Senior Member |
|
|
|
wth Novice
Joined: 14 Nov 2001 Posts: 37 Location: Poland
|
Posted: Thu Sep 26, 2002 8:28 am |
I'm using #ALARM *xxx syntax. But IMHO before executing this type of alarm should be checked if triggers are enable...
--
Waldek
There are no mistakes, just learning experience |
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Thu Sep 26, 2002 5:22 pm |
Since alarms are triggers, it is reasonable to think that disabling triggers would stop the alarms. However, since experience shows this to be untrue there's not much anyone can do except agree that it's odd and suggest other methods of stopping them.
LightBulb
Senior Member |
|
|
|
Glinka Wanderer
Joined: 20 Dec 2000 Posts: 53 Location: USA
|
Posted: Sat Sep 28, 2002 2:08 am |
Mebbe use a variable to turn the alarm on/off?
@alarmON
#if @alarmON {trigger with #alarm*xxx}{else
trigger without alarm*.xxx}
use a loop to check if the alarmON variable
is true every so often
If the variable is true keep alarm on,
if not, disable the script the alarm is in?
..or mebbe use the #temp thingy?
Jus tryin to be helpful,
Glink
Love, Lyte, and Laughter...
Glink |
|
|
|
|
|