Old 02-04-2004, 05:38 PM   #301
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default dZSbot v1.11 OUT !!!

after more than 300 downloads

here is a little update

DL link & changelog on 1st post

have fun
bounty
bounty is offline   Reply With Quote
Old 02-04-2004, 06:16 PM   #302
Xn3t
Member
 
Join Date: Dec 2003
Posts: 50
Default

g00d j0b bounty! greats!!!
Xn3t is offline   Reply With Quote
Old 02-07-2004, 05:08 AM   #303
typhon|wk
Member
 
Join Date: Nov 2003
Posts: 55
Default

nice bot as usual from you

i have a little request:

can u expand kill section for to kill users in mirc ?

!killuser <user>

thx
typhon|wk is offline   Reply With Quote
Old 02-07-2004, 01:13 PM   #304
nexxai
Junior Member
FlashFXP Registered User
ioFTPD Registered User
 
Join Date: Feb 2004
Posts: 11
Default

I'm a ****ing idiot. Ignore me. I even saw that too.
nexxai is offline   Reply With Quote
Old 02-07-2004, 01:26 PM   #305
alturismo
Senior Member
FlashFXP Registered User
ioFTPD Foundation User
 
Join Date: Nov 2001
Posts: 265
Default

check the readme.install.txt

might should take a look at the big header BOX

!!! -IF YOU HAVE "TCL error: couldn't duplicate input handle: bad file number" !!!
!!! -YOU SHOULD RUN WINDROP WITH -NT FLAGS (eggdrop.exe -nt) (read howto Hide Window part) !!!
alturismo is offline   Reply With Quote
Old 02-08-2004, 02:43 PM   #306
JoeBAR
Member
FlashFXP Registered User
ioFTPD Registered User
 
Join Date: Nov 2003
Posts: 42
Default

Can't get !version to werk anymore... is it me?
JoeBAR is offline   Reply With Quote
Old 02-09-2004, 03:31 AM   #307
laShan
Member
ioFTPD Foundation User
 
Join Date: Feb 2004
Posts: 46
Default

Update:
Suddenly struck me that J: is a removable drive. Talked to ADDiCT who set me up with another build of ioDiskSpace.exe that included removable drives.. Problem solved


Original post:

I have a problem with !free. One drive doesn't show up when I do !free all, it works fine if I do !free drivej though. Here is my free configuration:

set device(0) "C: drivec"
set device(1) "D: drived"
set device(2) "E: drivee"
set device(3) "H: driveh"
set device(4) "J: drivej"
set device(TOTAL) 5

Here is the output from bot:

<laShan> !free all
<|B0T|> [ B0T ] + [FREE] + [drivec: 20.47/47.21 GB]
<|B0T|> [ B0T ] + [FREE] + [drived: 39.33/76.69 GB]
<|B0T|> [ B0T ] + [FREE] + [drivee: 36.86/115.04 GB]
<|B0T|> [ B0T ] + [FREE] + [driveh: 15.39/32.00 GB]
<|B0T|> [ B0T ] + [FREE] + TOTAL: 112.04/270.93 GB

And:

<laShan> !free drivej
<|B0T|> [ B0T ] + [FREE] + [drivej: 9.30/27.92 GB] is free @ 33%
laShan is offline   Reply With Quote
Old 02-09-2004, 04:12 AM   #308
Xn3t
Member
 
Join Date: Dec 2003
Posts: 50
Default

it could be the sections config, revise it, maybe there are some section bad...

nice,
Xn3t is offline   Reply With Quote
Old 02-09-2004, 04:50 AM   #309
laShan
Member
ioFTPD Foundation User
 
Join Date: Feb 2004
Posts: 46
Default

Doesn't help. I've tried a bunch of different configurations. Thx for the suggestion though.
laShan is offline   Reply With Quote
Old 02-09-2004, 08:20 AM   #310
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default

Quote:
Originally posted by laShan
Doesn't help. I've tried a bunch of different configurations. Thx for the suggestion though.
after some tests with laShan it seems the problem come from the latest ioDiskSpace exe (1.0.0.11)

you should talk with ADDiCT directly

thx for the report

have fun
bounty
bounty is offline   Reply With Quote
Old 02-09-2004, 09:35 AM   #311
durulink
Senior Member
 
Join Date: Mar 2003
Posts: 102
Default I expect to ...

Would you change like this next time?

nfourl.itcl

[string match "*.nfo" $vpath] to [string match -nocase "*.nfo" $vpath]
durulink is offline   Reply With Quote
Old 02-09-2004, 11:38 AM   #312
durulink
Senior Member
 
Join Date: Mar 2003
Posts: 102
Default

AND...

'show_free'
Code:
	} elseif { $arg == "ALL" } {
		for {set i 0} {$i < $device(TOTAL)} {incr i} {
			set output $announce(DEFAULT)
			foreach line [split [exec $binary(DF)] "\n"] {
				if { [string match [lindex $line 0] [string toupper [lindex $device($i) 0]]] == 1 } {
					set devices "\[[lrange $device($i) 1 end]: %bold[format %.2f [expr [lindex $line 3].0/1024]]%bold/[format %.2f [expr [lindex $line 5].0/1024]] GB\]"
					set total_freespace [expr $total_freespace + [expr [lindex $line 3].0/1024]]
					set total_space [expr $total_space + [expr [lindex $line 5].0/1024]]
				}
			}
			set output [replacevar $output "%msg" $devices]
			set output [basicreplace $output "FREE"]
			if { $blfs(KEY) != "" } {
				set eline [encrypt $blfs(KEY) $output]
				puthelp "PRIVMSG $chan :$blfs(HEADER) $eline"
			} else {puthelp "PRIVMSG $chan :$output"}
		}
		set output $announce(DEFAULT)
		set devices "%boldTOTAL%bold: %bold[format %.2f $total_freespace]%bold/[format %.2f $total_space] GB"
		set output [replacevar $output "%msg" $devices]
		set output [basicreplace $output "FREE"]
		if { $blfs(KEY) != "" } {
			set eline [encrypt $blfs(KEY) $output]
			puthelp "PRIVMSG $chan :$blfs(HEADER) $eline"
		} else {puthelp "PRIVMSG $chan :$output"}
Bug '\n' in iodiskspace.exe
Attached Images
File Type: jpg iodiskspace.jpg (26.3 KB, 336 views)
durulink is offline   Reply With Quote
Old 02-09-2004, 12:24 PM   #313
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default Re: I expect to ...

Quote:
Originally posted by durulink
Would you change like this next time?

nfourl.itcl

[string match "*.nfo" $vpath] to [string match -nocase "*.nfo" $vpath]
-nocase will be added in next rls for lame grps who use uppercase

if you can explain a little more your 2nd problem would be nice

have fun
bounty
bounty is offline   Reply With Quote
Old 02-09-2004, 03:00 PM   #314
Mouton
Posse Member
Ultimate Scripter
ioFTPD Administrator
 
Join Date: Dec 2002
Posts: 1,956
Default

DF seems to return \r\n, but u split on \n only... leaving a trailing \r to the string...

just trying to mind-read here!
Mouton is offline   Reply With Quote
Old 02-10-2004, 11:25 AM   #315
Mouton
Posse Member
Ultimate Scripter
ioFTPD Administrator
 
Join Date: Dec 2002
Posts: 1,956
Default

Ur confusing by pasting itcl code...

B0unty: he means that the .exe he uses as $binary(DF) seems to echo \r\n AFTER D: instead of BEFORE.
Dunno if u wrote ioDiskSpace.exe or not... but it seems to be his problem.
Mouton is offline   Reply With Quote
Reply

Tags
bounty, dzsbot, fun, link, update

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 11:55 AM.

Parts of this site powered by vBulletin Mods & Addons from DragonByte Technologies Ltd. (Details)