Jump to content

Stormy

Sysops
  • Posts

    1748
  • Joined

  • Last visited

  • Days Won

    43

Everything posted by Stormy

  1. Zandor said: Sep 28th, 2008, 11:43am ; Millisecond Pinger by eXonyte ; Type /mping <nickname> to ping someone in milliseconds instead of seconds. ; Also attempts to maintain compatibility with normal /ctcp <nick> PING replies, ; and will display the text if someone's script replies with text instead of a number. ; Alias to send a millisecond ping alias mping { ; Sends the actual ping as a raw .raw PRIVMSG $$1 : $+ $chr(1) $+ PING $ticks $+ $chr(1) ; Echoes a CTCP PING lookalike to the active window echo $colour(ctcp) -t $+ $iif($active == Status Window,se,a) -> [[ $+ $$1 $+ ]] PING } ; Handles CTCP PING replies on *:CTCPREPLY:*PING*: { ; If the reply isn't a number, let mIRC handle it if ($2 !isnum) { return } ; If the current $ticks minus the reply is greater than 0 if ($calc($ticks - $2) > 0) { ; Echo the ping reply to the active window echo $colour(ctcp) -at $+ $iif($active == Status Window,e) [[ $+ $nick PING reply]: $calc($ticks - $2) $+ ms ; And halt so that mIRC doesn't show its own ping reply halt } }
  2. on *:NOTICE:*:*: { if (Nickserv!*service* iswm $fulladdress) && (Koach.com == $network) && (*nickname is registered* iswm $1-) { identify ********** } } put the above in remotes and do the following ********** <---- replace that with your password Back to top
×
×
  • Create New...