need help with idle msg's,
any help is appreciated
Private Sub AntiIdle_Timer()
'notice this timers interval is 1000, that is for 1 second
IdleTick = IdleTick + 1 'this is a public variable, it adds a
'second to the variable each time the timer executes
If IdleTick >= 120 Then 'if 2 minutes have gone by then...
SendChat "./me - " & IniIdle & " (Bot Name)"
IdleTick = 0 'reset the variable to start over
End If
End Sub
The "./me - " & IniIdle & " (Bot Name)"
is a fourm glitch.. sorry...
Quote from: Busted51 on June 01, 2003, 12:17 AMis a fourm glitch.. sorry...
I don't beleive it would be if you'd use the [ code ] tags.