Go Back   FlashFXP Forums > > > >

Harm's scripts ioBanana, Readd script, ioVote

Closed Thread
 
Thread Tools Rate Thread Display Modes
Old 09-30-2003, 02:13 PM   #1
NalgeNunc
Junior Member
ioFTPD Registered User
 
Join Date: Jan 2003
Posts: 29
Default ioBanana - Fixes (up to v20)

Do also change these lines in the .ini

OnUploadComplete = EXEC ..\scripts\ioBanana.exe upload

Edit:
Look at this post: http://www.ioftpd.com/board/showthre...4f091fbd4e31e8
NalgeNunc is offline  
Old 11-11-2003, 06:42 PM   #2
Zer0Racer
Senior Member
ioFTPD Scripter
 
Join Date: Oct 2002
Posts: 703
Default Howto make WarChive announces work with ioBanana bot in 4 simple steps

http://www.ioftpd.com/board/showthre...2457#post12457
Zer0Racer is offline  
Old 12-08-2003, 08:53 AM   #3
Harm
Too much time...
Ultimate Scripter
 
Join Date: Jul 2003
Posts: 1,430
Default ioA 1.0.0

ioBanana v19 is compatible with ioA 1.0.0

Here is the updated part of the readme:
Code:
Step 6. Change ioA.cfg:
========================================
Pre_Run_Script	= "C:\ioFTPD\scripts\ioBanana.exe imdbpre"
========================================

also in ioA.cfg:
========================================
[Newdate]
Newdate_Log	= ""%vfs" "%area" "%desc" "%phys""

[PRE]
Pre_Log		= ""%user" "%group" "%type" "%vfs" "%desc" "%.2mb" "%.0files" "%release""

[Credits]
Credits_Log	= ""%user" "%group" "%mb" "%target""

[Wipe]
Wipe_Log		= ""%vfs" "%release" "%user" "%group" "%.0files" "%.0dirs" "%.0mb""

[Invite]
Invite_Log	= ""%user" "%group" "%ircnick""

[Request]
Request_Log	= ""%user" "%group" "%request""
Reqfilled_Log	= ""%user" "%group" "%request""
Reqdel_Log	= ""%user" "%group" "%request""

[Nuke]
Nuke_Log		= ""%vfs" "%user" "%group" "%nukee" "%nukeegroup" "%.0multi" "%.2size" "%reason""

[Unnuke]
UnNuke_Log	= ""%vfs" "%user" "%group" "%nukee" "%nukeegroup" "%.0multi" "%.2size" "%reason""
========================================
Harm is offline  
Old 12-17-2003, 01:34 PM   #4
Harm
Too much time...
Ultimate Scripter
 
Join Date: Jul 2003
Posts: 1,430
Default

You have to replace 2 lines in ioBanana.tcl to display all requests on !requests if you use ioA 1.0.0+.

Code:
set lines [lreplace $lines 0 1]
set lines [lreplace $lines end-2 end]
is now

Code:
set lines [lreplace $lines 0 0]
set lines [lreplace $lines end-1 end]
:banana:
Harm is offline  
Old 12-25-2003, 05:16 AM   #5
Jog
Member
ioFTPD Foundation User
 
Join Date: Jul 2003
Posts: 83
Default

ok . i wrote two lines in order to enable or disable the autovoice for the top 10 uploaders .. here just 3 simple steps:

1. Add the set disable lines below the other set variables lines in ioBanana.tcl.

...
set disable(NEWLEADER) 0

set disable(VOICETOP10) 0



2. Go to proc userJoined and add disable to global list of variables:

global ioss disable



3. Always in proc userJoined modify this line:

putquick "MODE $chan +v $nick"

in this way:

if { [info exists disable(VOICETOP10)] } {
if {$disable(VOICETOP10) == 0} {
putquick "MODE $chan +v $nick"
}
}



I hope this will help someone!
Jog is offline  
Old 12-25-2003, 05:49 AM   #6
Harm
Too much time...
Ultimate Scripter
 
Join Date: Jul 2003
Posts: 1,430
Default

Top 10 uploaders autovoice for all channels is already ready for next version. It will be able to use a different stats section for each channel.
Harm is offline  
Old 01-02-2004, 04:28 PM   #7
neoxed
Too much time...
FlashFXP Beta Tester
ioFTPD Scripter
 
Join Date: May 2003
Posts: 1,326
Default

For those of you who would like the IRC stats commands !bw !speed !uploaders !leechers !who working again, I put together the old who messages and changed a few of the cookies to work with ioBanana v19 and ioFTPD v5.4.x until Harm is able to update ioBanana

Copy the included message files to /text/ftp and add the following alias to your ioFTPD.ini
Code:
[FTP_Custom_Commands]
who = @swho
Notes:
- Be sure to remove other references of who in custom commands section of the ini.
- Thanks to AlteredSo (from IRC) for testing and confirming they work.

Last edited by neoxed; 01-09-2008 at 12:48 AM.
neoxed is offline  
Old 01-02-2004, 07:05 PM   #8
wooolF[RM]
Senior Member
ioFTPD Foundation User
 
Join Date: Oct 2003
Posts: 411
Default

Quote:
Originally posted by NeoXed
For those of you who would like the IRC stats commands !bw !speed !uploaders !leechers !who working again, I put together the old who messages and changed a few of the cookies to work with ioBanana v19 and ioFTPD v5.4.x until Harm is able to update ioBanana
Thnx a lot NeoXed, worked flawessly
wooolF[RM] is offline  
Old 01-02-2004, 08:46 PM   #9
neoxed
Too much time...
FlashFXP Beta Tester
ioFTPD Scripter
 
Join Date: May 2003
Posts: 1,326
Default

Quote:
Originally posted by wooolF[RM]
Thnx a lot NeoXed, worked flawessly
Excellent
neoxed is offline  
Old 01-03-2004, 08:44 AM   #10
MatC
Member
ioFTPD Foundation User
 
Join Date: Nov 2003
Posts: 42
Default

Quote:
Originally posted by wooolF[RM]
Thnx a lot NeoXed, worked flawessly
Yes thx!
MatC is offline  
Old 01-08-2004, 03:59 AM   #11
glory4
Junior Member
ioFTPD Foundation User
 
Join Date: Jan 2004
Posts: 13
Default good. thank you very much

working good!

thank you.
glory4 is offline  
Old 01-08-2004, 10:54 PM   #12
silver
Junior Member
 
Join Date: Sep 2003
Posts: 8
Default

Quote:
Originally posted by NeoXed
For those of you who would like the IRC stats commands !bw !speed !uploaders !leechers !who working again, I put together the old who messages and changed a few of the cookies to work with ioBanana v19 and ioFTPD v5.4.x until Harm is able to update ioBanana

Copy the included message files to /text/ftp and add the following alias to your ioFTPD.ini
Code:
[FTP_Custom_Commands]
who = @swho
Notes:
- Be sure to remove other references of who in custom commands section of the ini.
- Thanks to AlteredSo (from IRC) for testing and confirming they work.
very nice, needed that ! THANKS M8!!
silver is offline  
Old 02-17-2004, 01:50 AM   #13
ChipMunk666
Senior Member
ioFTPD Foundation User
 
Join Date: Jun 2003
Posts: 220
Default

it didn't worked for me only showing one user.
And the bw isn't really 100%
Something that i did wrong?
i am using
ioFTPD version 5-5-6r
ioBanana version v19
ioA 1.1.0

i saw some other site who scripts laying around would this help solveing the problem too?
i need it to announce on sitebot
ChipMunk666 is offline  
Old 02-17-2004, 02:02 AM   #14
Harm
Too much time...
Ultimate Scripter
 
Join Date: Jul 2003
Posts: 1,430
Default

I'm afraid another sitewho won't help.
ioBanana v19 needs the old ioFTPD sitewho or neoxed's message files that reproduce its output using site swho.

ioBanana v20 won't need it. Beta testers will try it in a couple of days.
Harm is offline  
Old 02-17-2004, 02:03 AM   #15
ChipMunk666
Senior Member
ioFTPD Foundation User
 
Join Date: Jun 2003
Posts: 220
Default

What ya need to be to be a iobanana beta tester?
hehe
thx for the quick reply
ChipMunk666 is offline  
Closed Thread

Tags
edit, exec, onuploadcomplete, scriptsiobanana.exe, upload

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 08:58 AM.

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