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.

fserv script

Old posts that have not been replied to for several years.
Locked
H
Herris

Post by Herris »

I am looking for a fserv script that will work with a windrop.

I tried configuring jircserv to no avail. =(
C
ClubCX
Voice
Posts: 35
Joined: Mon Nov 19, 2001 8:00 pm
Location: Bournemouth, UK
Contact:

Post by ClubCX »

Try terri's fileserver script. You can download it at http://www.botservice.net/en/downloads/fs.zip
H
Herris

Post by Herris »

I was looking for something with more features of a full featured fserv.

p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

From what I hear, jircserv will work better on windrop, than it does on eggdrop!

It could all be down to a simple sonfiguration problem
H
Herris

Post by Herris »

Unless it is a different version then the one I have jircserv uses some *nix specific commands.

At least from what I can see... Such as du.

This is what I get when I configure jircserv add it to the config file and run eggdrop:

[14:59] couldn't execute "du": no such file or directory
while executing
"exec du -s $dvs_fserve_path"
(procedure "dvs_fserve:func:du" line 3)
invoked from within
"dvs_fserve:func:du"
(procedure "dvs_fserve:func:startup" line 11)
invoked from within
"dvs_fserve:func:startup"
(file "scripts/jIRCserv.tcl" line 2393)
invoked from within
"source scripts/jIRCserv.tcl"
(file "eggdrop.conf" line 113)
H
Herris

Post by Herris »

### FSERVE SIZE CALCULATION ###
proc dvs_fserve:func:du {} {
global dvs_fserve_stats dvs_fserve_path
set dvs_fserve_stats(koffered) [lindex [exec du -s $dvs_fserve_path] 0]
set files 0
foreach entry [split [exec du -a $dvs_fserve_path] n] {
set name [lindex $entry 1]
if {![file isdirectory $name]} then {
incr files
}
}
set dvs_fserve_stats(foffered) $files
if {![string match *dvs?fserve?func?du* [string tolower [timers]]]} then {
timer 2 dvs_fserve:func:du
}
return
}
B
Bw

Post by Bw »

does anyone know if i can make jirc OFF a ctcp fserve, because my channel is moderated and only /ctcp triggered fserv's can be used...
Thanks in advance
s
sonic_tsunami

Post by sonic_tsunami »

windrop has the tendency to suck and blow at the same time...somehow it manages to do the physically impossible.
Most linux to windows ports suck becuase they've been watered down entirely.
get your bot on a free shll provider, a friend with a linux server that's up 24/7... windrop is weak [censored] man.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

sonic_tsunami wrote: Most linux to windows ports suck becuase they've been watered down entirely.
This is not true.

Windrop is 100% eggdrop.

Eggdrop allready has the code required to port to windows included. So long as you have Tcl, and a compiler, you can simply download and compile eggdrop.

The limitations are based on the interaction between Tcl and windows.
B
Bytez
Op
Posts: 168
Joined: Mon Aug 11, 2003 1:42 pm

Post by Bytez »

Is it safe to run an fserv from a paid shell provider account?
t
tainted
Master
Posts: 239
Joined: Sun May 12, 2002 8:00 pm
Location: chicago
Contact:

Post by tainted »

Check with their ToS and other policies first. You are usually best off emailing their admin or support/sales contact address and asking directly then guessing..
Locked