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.

Search found 86 matches

by Xpert
Sat May 08, 2004 4:12 am
Forum: Archive
Topic: Arrange numbers
Replies: 3
Views: 780

Found it, 10x alot :P
by Xpert
Sat May 08, 2004 3:05 am
Forum: Archive
Topic: Arrange numbers
Replies: 3
Views: 780

Arrange numbers

Hello, I have a txt file with lines like: 34 Xpert 708 Skipper 24 skin 4001 yusi etc'. And i want to arrange the numbers from the biggest one to the smallest one, like this: 1. yusi: 4001. 2. Skipper: 708. 3. Xpert: 34. 4. skin: 24. etc' for all the numbers in the txt file. Anybody has an idea? thx :)
by Xpert
Tue Apr 27, 2004 3:45 am
Forum: Archive
Topic: Ipv6 resolver script
Replies: 2
Views: 952

Thanks, you helped me a lot :P
by Xpert
Mon Apr 26, 2004 4:28 pm
Forum: Archive
Topic: Ipv6 resolver script
Replies: 2
Views: 952

Ipv6 resolver script

Anyone has scripts that doing that:
(Xpert) !ipv6 2001:618:400:bf69::63
(eggush) 2001:0618:0400:BF69:0000:0000:0000:0063 PTR RECORD 3.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.9.6.f.b.0.0.4.0.8.1.6.0.1.0.0.2.ip6.arpa
Thanks :)
by Xpert
Fri Apr 16, 2004 10:44 am
Forum: Archive
Topic: Launched into background
Replies: 9
Views: 2530

Maybe his host is blocked or the server isn't written correctly?
by Xpert
Wed Apr 14, 2004 6:28 am
Forum: Archive
Topic: Who can help me?!
Replies: 1
Views: 970

Use this code: set channel "#channel" set mychan "#channel-to-invite" bind join - * join:invite proc join:invite {nick host hand chan} { global channel mychan if {([string equal -nocase "$channel" "$chan"]) && (![onchan $nick $mychan])} { putserv "...
by Xpert
Tue Apr 13, 2004 9:25 am
Forum: Archive
Topic: Sending string with multiple line across botnet
Replies: 8
Views: 2213

I think you can remove the "/" in "(,)".
try:

Code: Select all

regsub -all "(" $conn "" conn 
regsub -all ")" $conn "" conn
:P
by Xpert
Tue Apr 13, 2004 8:40 am
Forum: Archive
Topic: Sending string with multiple line across botnet
Replies: 8
Views: 2213

To remove the "{,}" you should use the regsub command. regsub -all "\{" $dccsend "" dccsend regsub -all "\}" $dccsend "" dccsend Your code should be like that: proc dcc:sends {} { set dccsend [join [list [dcclist SEND]]] set send2 "" regsub...
by Xpert
Tue Apr 13, 2004 3:38 am
Forum: Archive
Topic: need topic append script
Replies: 12
Views: 3697

Try this:

Code: Select all

bind pub n "!settopic" pub:topic
bind pub n "!appendtopic" pub:append

proc pub:topic {nick host hand chan args} {
  putserv "topic $chan :$args"
}
proc pub:append {nick host hand chan args} {
  putserv "topic $chan :[topic $chan], $args"
}
:)
by Xpert
Tue Apr 13, 2004 3:31 am
Forum: Archive
Topic: Sending string with multiple line across botnet
Replies: 8
Views: 2213

use the 'foreach' command:

Code: Select all

proc dcc:sends {} {
  set dccsend [join [list [dcclist SEND]]]
  set send2 ""
  foreach send $dccsend {
    append send2 "$send"
  }
  putlog "$send2"
}
Should work, but not tested :P
by Xpert
Fri Apr 09, 2004 10:45 am
Forum: Archive
Topic: Normal time to unixtime
Replies: 4
Views: 1751

Re: Normal time to unixtime

Ok, sorry :P
by Xpert
Fri Apr 09, 2004 10:40 am
Forum: Archive
Topic: need a TCL script plz help me!! ;(
Replies: 12
Views: 3852

Yeah, use this code: set myfile "send.txt" bind join - * join:pub proc join:pub {nick host hand chan} { global myfile set read [open "myfile" r] while {[gets $read line] != -1} { if {[string equal -nocase "$line" "$nick"]} { close $read return 1 } } dccsend fi...
by Xpert
Thu Apr 08, 2004 2:04 pm
Forum: Archive
Topic: Normal time to unixtime
Replies: 4
Views: 1751

[unixtime]? :P
by Xpert
Sun Apr 04, 2004 1:31 pm
Forum: Archive
Topic: login/logout script
Replies: 8
Views: 1966

Oh, my mistake.
Change this:

Code: Select all

if {![string equal -nocase "$line" "$nick"} {
to:

Code: Select all

if {![string equal -nocase "$line" "$nick"]} {
:)
by Xpert
Sun Apr 04, 2004 10:39 am
Forum: Archive
Topic: banlist
Replies: 5
Views: 1560

No problem :P