This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

!ping script

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
m
mAxP
Voice
Posts: 8
Joined: Mon Feb 13, 2006 9:34 am

!ping script

Post by mAxP »

hu xperts :D
im looking for a tcl script for my BOTNET

i tipe "!ping" in public chan
and ALL bots should response with "ping : 90ms" -> pinging the irc server they are connected on

i searched for it a long time :(

can somebody help me?

:D

THX A LOT

-> ex.
(14:39:33) (@MAXP) !ping
(14:39:34) (@warb0t1) ping 83ms
(14:39:35) (@warb0t2) ping 73ms
(14:39:35) (@warbot3) ping 120ms
G
GeeX
Voice
Posts: 29
Joined: Mon Sep 19, 2005 4:29 am

Post by GeeX »

Code: Select all

# 
# 
#  __      __  __                  ______     
# /\ \    /\ \/\ \                /\  _  \    
# \ \ \/'\\ \ `\\ \    ___     ___\ \ \_\ \   
#  \ \ , < \ \ , ` \  / __`\  /'___\ \  __ \  
#   \ \ \\`\\ \ \`\ \/\ \_\ \/\ \__/\ \ \/\ \ 
#    \ \_\ \_\ \_\ \_\ \____/\ \____\\ \_\ \_\
#     \/_/\/_/\/_/\/_/\/___/  \/____/ \/_/\/_/
# 
#   __ __    ______          __      ____                 ____                 ___      
#  _\ \\ \__/\__  _\        /\ \    /\  _`\    __        /\  _`\           __ /\_ \      
# /\__  _  _\/_/\ \/     ___\ \ \___\ \ \_\ \ /\_\    ___\ \ \_\_\     __ /\_\\//\ \    
# \/__\ \\ \__ \ \ \    /'___\ \  _ `\ \  _ <'\/\ \ /' _ `\ \ \  __  /'__`\/\ \ \ \ \   
#   /\_   _  _\ \_\ \__/\ \__/\ \ \ \ \ \ \_\ \\ \ \/\ \/\ \ \ \/, \/\  __/\ \ \ \_\ \_ 
#   \/_/\_\\_\/ /\_____\ \____\\ \_\ \_\ \____/ \ \_\ \_\ \_\ \____/\ \____\\ \_\/\____\
#      \/_//_/  \/_____/\/____/ \/_/\/_/\/___/   \/_/\/_/\/_/\/___/  \/____/ \/_/\/____/
# 
# 
#                   kNocA #IchBinGeil @ QuakeNet irc.quakenet.org
# 
# 
#
# -------------------------------------------------------------------------------
# Usage:
# -------------------------------------------------------------------------------
#
# !lag
#
# -------------------------------------------------------------------------------

bind pub n !lag 	lag:pub
bind ctcp - lag 	lag:ctcp

set lag(version)	1.0

proc lag:pub { nick host hand chan arg } {

	global lag

	set lag(start) 	[clock clicks]
	set lag(chan)		$chan

	putquick "PRIVMSG $::botnick :\001LAG\001"
}

proc lag:ctcp { nick host hand dest key arg } {

	global lag

	if {$nick != $::botnick} { return }

	set lag(end) [clock clicks]

	if {[expr $lag(end) - $lag(start)] > 1000000} {
		set time 	"[expr ($lag(end) - $lag(start)) / 1000 / 1000.]sec"
	} else {
		set time	"[expr ($lag(end) - $lag(start)) / 1000.]ms"
	}

	putquick "PRIVMSG $lag(chan) :My lag on $::server: $time"
}

putlog "Lag-Script v$lag(version) by kNocA loaded."
m
mAxP
Voice
Posts: 8
Joined: Mon Feb 13, 2006 9:34 am

Post by mAxP »

hey cool thx

is it possible to change
(19:53:22) (@MAXP) !ping
(19:53:23) (@warb0t1) Ping 167.991ms
to

(19:53:22) (@MAXP) !ping
(19:53:23) (@warb0t1) Ping 167ms


i dont need the ping so exact

is it normal that the ping is that bad?
i tested 5 irc servers and all pings were >150ms -.-

max
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

change all occurances of 1000. to just 1000 (without the decimal point).
m
mAxP
Voice
Posts: 8
Joined: Mon Feb 13, 2006 9:34 am

Post by mAxP »

<3 THX

but is this script realy exact?
the pings are very high i hink i get over 180ms usualy :(
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

That's not exactly the 'server' lag is it?

Eventhough ascii in a script is nice, when the actual ascii gets bigger then the code it's time to consider if it's really needed.


(UNTESTED!)

Code: Select all

bind PUB  n   !ping     pub:lag

proc pub:lag {nick host hand chan args} {
  global time tmpchan
  set time [clock clicks]; set tmpchan $chan
  bind RAW - 391 raw:catchlag
  putquick "TIME"
}

proc raw:catchlag {from key info} {
  global time tmpchan
  unbind RAW - 391 raw:catchlag
  putquick "PRIVMSG $tmpchan :[expr ([clock clicks] - $time)/1000] ms lag on [lindex [split $::server :] 0]"
}
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Something like this will work as well

Code: Select all

bind pub n !lag lag:pub
bind raw - PONG lag:raw

proc lag:pub {nick uhost hand chan arg} {
 global sping
 if {![info exists sping([set chan [string tolower $chan]])]} {
  putserv "ping [clock clicks]"
  set sping($chan) 1
 }
}

proc lag:raw {from kw arg} {
 global sping
 set lag [expr {([clock clicks]-[string trimleft [lindex [split $arg] e] :])/1000}]
 foreach {c v} [array get sping] {
  puthelp "privmsg $c :Reply from $from: $lag ms"
 }
}
G
GeeX
Voice
Posts: 29
Joined: Mon Sep 19, 2005 4:29 am

Post by GeeX »

It is the real server ping :wink:
Post Reply