Top

Anti-Idle script.


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  2.0 (of 2 scores)
Date Added  Aug 02, 2006
Last Updated  Aug 02, 2006
Tags  idle 

Introduction

Just put this into your remotes (Alt+R) then click on commands (Top of your screen) and click on anti-idle click on to put it on.

Grab the Code

menu menubar {
  Anti-Idle
  .On:/timeridle 0 120 anti-idle | Set %anti-idle $true
  .Off:/timeridle off | Set %anti-idle $false
}
on *:connect: { if (%anti-idle == $true) { .timeridle 0 120 /raw pong FD411636 } }

Comments

  (16)  RSS
Pibb
Comments: 30
 
mIRC Snippet:  Anti-Idle script.
Posted on Aug 2, 2006 7:22 pm
Would you mind explaining what this does exactly?
Kurdish_Assass1n
Comments: 2
 
mIRC Snippet:  Anti-Idle script.
Posted on Aug 3, 2006 12:19 am
Anti Idle = Anti means like to prevent, or to be opposite of, Idle means to not talk for a long time, so, it means preventing idle time, lol :P
Bigmomma
Comments: 30
 
mIRC Snippet:  Anti-Idle script.
Posted on Aug 3, 2006 4:28 am
I use it because I get disconnected from the SERVER when people aren't talking so I made this script that will send the server a message to keep connected.
Pibb
Comments: 30
 
mIRC Snippet:  Anti-Idle script.
Posted on Aug 3, 2006 8:53 pm
I was aware of what the name meant, just not the reason of the code. But now I do.
Bigmomma
Comments: 30
 
mIRC Snippet:  Anti-Idle script.
Posted on Aug 4, 2006 2:15 am
Oh sorry about it. It's kinda the same.
Noutrious
Comments: 365
 
mIRC Snippet:  Anti-Idle script.
Posted on Aug 7, 2006 2:28 am
i would suggest:
;For menus
menu menubar {
Anti-Idle
.On:/timeridle 0 120 anti-idle | Set %anti-idle 1
.Off:/timeridle off | unset %anti-idle
}
;Start script on connect
on *:connect: { if (%anti-idle) { .anti-idle } }
;Aliases
alias anti-idle {
.timeridle 0 120 /raw pong FD411636
}

Hasnt tested, may have some errors, but at least you get the idea.
Cheiron
Comments: 627
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 18, 2009 4:34 pm
loaded it.. ran it.. got this in status window
Quote:
-
ANTI-IDLE Unknown command
-
ANTI-IDLE Unknown command
-


that is on unrealircd 3.2.7 running anope and on mirc 6.35
PunkTuReD
Comments: 461
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 18, 2009 5:58 pm
i think you got that cheiron because,
he calls for an alias which he didnt include in the code
Cheiron
Comments: 627
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 18, 2009 6:18 pm
that was with the base original code submitted not Noutrious's version
PunkTuReD
Comments: 461
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 18, 2009 6:34 pm
and this is also from the base code
Code:

.On:/timeridle 0 120 anti-idle

but there is no anti-idle
alias
Cheiron
Comments: 627
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 18, 2009 8:26 pm
reckon you could do a take on this and actually get it working? based on what you have done so far, script wise, and what i have used of yours so far and still do... this would be a ideal feature
PunkTuReD
Comments: 461
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 18, 2009 10:44 pm
im nt too sure if any script could stop you from pinging out,
if your client is frozen, you wont be able to reply to pings so youll end up being disconnected.
mIRC also has its own ping pong thing im pretty sure
try this and let me know how it goes, i cant test it too much as i dont have a idle or ping problem
Code:

menu * {
  Ping-Pong:$iif(%pp,antioff,pingpongon)
  Anti-Idle:$iif(%antiidle,antioff,antion)
}
on 1:ping: { $iif(%pp,raw pong $1 wannaplaypingpong,) }
on 1:pong: { $iif(%pp,raw ping $1 wannaplaypingpong,) }
alias pingpongoff { unset %pp | echo -a Ping-Pong has been disabled. }
alias pingpongon { set %pp on | echo -a Ping-Pong has been enabled. }
alias antioff { timeridle off | unset %antiidle | echo -a Anti-Idle has been disabled. }
alias antion { timeridle 0 120 scid -atM1 antiidle | set %antiidle on | echo -a Anti-Idle has been enabled. }
alias antiidle { msg $me Anti-Idle }
Cheiron
Comments: 627
 
mIRC Snippet:  Anti-Idle script.
Posted on Jan 19, 2009 4:20 am
dayum you the man!!!
Quote:
[09:37] > Anti-Idle
[09:37] <Auto_Help> Anti-Idle
[09:39] > Anti-Idle
[09:39] <Auto_Help> Anti-Idle
[09:41] > Anti-Idle


look at that! works a bomb. nice one PunkTuReD
Snarky
Comments: 1
 
mIRC Snippet:  Anti-Idle script.
Posted on Jul 18, 2009 12:51 am
I copied this code into the remote in mirc. Went to Commands > Anti Idle > ON
And now I get this message on my cyanide-x page : ANTI-IDLE Unknown command

Any ideas on what to do?
Euforia33
Comments: 1
 
mIRC Snippet:  Anti-Idle script.
Posted on Oct 24, 2009 12:27 am
Hi PunkTuReD,

I've tested your version which is great apart from small problem I found in the following code.

menu * {
Ping-Pong:$iif(%pp,antioff,pingpongon)
Anti-Idle:$iif(%antiidle,antioff,antion)
}

When you click ping-pong once it will enable ping-pong but when you click it again it disables the anti-idle instead of disabling ping-pong.

It should be:

menu * {
Ping-Pong:$iif(%pp,pingpongoff,pingpongon)
Anti-Idle:$iif(%antiidle,antioff,antion)
}
on 1:ping: { $iif(%pp,raw pong $1 wannaplaypingpong,) }
on 1:pong: { $iif(%pp,raw ping $1 wannaplaypingpong,) }
alias pingpongoff { unset %pp | echo -a Ping-Pong has been disabled. }
alias pingpongon { set %pp on | echo -a Ping-Pong has been enabled. }
alias antioff { timeridle off | unset %antiidle | echo -a Anti-Idle has been disabled. }
alias antion { timeridle 0 120 scid -atM1 antiidle | set %antiidle on | echo -a Anti-Idle has been enabled. }
alias antiidle { msg $me Anti-Idle }

Marty
PunkTuReD
Comments: 461
 
mIRC Snippet:  Anti-Idle script.
Posted on Oct 24, 2009 2:52 am
vary true, thanks for the fix up there Marty

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom