GDurron Newbie
Joined: 28 Jan 2015 Posts: 1
|
Posted: Mon Feb 16, 2015 8:09 am
Anti Idle trigger |
i seen some post around asking for something similar to this
it monitors when you send commands to the mud and when you have went 4 mins 5 secs
with out sending commands(including triggers) it will send a %CR
to keep you from going idle
#CLASS {AntiAFK}
#VAR afktimer {3247}
#VAR checktime {3492}
#ONINPUT {(*)} {
#VARIABLE afktimer %ctime
#MATH checktime (@afktimer+245)
#ALARM "antiafk" {+245} {
#IF (%ctime=@checktime) {
#SHOW Anti Disconnect.
%cr
}
} {AntiAFK}
} "" {notrig}
#ALARM "antiafk" {+245} {
#IF (%ctime=@checktime) {
#SHOW Anti Disconnect.
%cr
}
}
#CLASS 0 |
|