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.

using psybnc scripts

Old posts that have not been replied to for several years.
Locked
t
tami
Voice
Posts: 13
Joined: Tue Feb 05, 2002 8:00 pm

using psybnc scripts

Post by tami »

hi,

i have an issue routing my eggdrop through a psybnc. i have tried 2 TCLs (one from this archive: mc_psybnc, and another i found off the web, irco-psybnc) and neither work for me. i have admin rights to the bouncer but don't actually see identification attempts. i DO, however, see connection attempts...

it stops on the identify screen...

-chanserv- please identify!

and then it doesn't seem to do anything....

if it helps, i use mirc on my regular nick and i can't do on... perform /quote pass PASSWORD ... something with bouncer config.

so am i wasting my time, or is this possible?

thanks.
t
tami
Voice
Posts: 13
Joined: Tue Feb 05, 2002 8:00 pm

Post by tami »

btw this is the script on one of them that failed..:

# Set this for the psybnc HOSTNAME or IP
set x.x.x.x:6667

# Your psybnc password
set psybnc_pass "password"

# Don't edit anything below unless you know what you're doing

bind notc - "please identify!" psybnc

proc psybnc {nick uhost hand arg} {
global psybnc_pass
putserv "PASS $psybnc_pass"
}

i don't understand why it wouldn't work.... everything looks right :(
User avatar
Papillon
Owner
Posts: 724
Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no

Post by Papillon »

the error is in this line probably

Code: Select all

proc psybnc {nick uhost hand arg} {
it is missing an argument, make it:

Code: Select all

proc psybnc {nick uhost hand arg {dest ""}} {
and try again
Elen sila lúmenn' omentielvo
t
tami
Voice
Posts: 13
Joined: Tue Feb 05, 2002 8:00 pm

Post by tami »

thanks, but it still hangs on the identify text... :(

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

Post by ppslim »

There has been three simalar reports within the last month, in regards to PSYBNC.

While not the same issues, it is more than likely caused by the same root problem.

There seems to be a issues within PSYBNC, causing messages to be mangled. This breaks eggdrop, and there is no real way to fix it, other than fixing PSYBNC, or not using the BNC
t
tami
Voice
Posts: 13
Joined: Tue Feb 05, 2002 8:00 pm

Post by tami »

hi ppslim,

thanks for your help. do you know exactly where the problem would be in psybnc?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Not at this current time.

At this time, it has not been proven that the issue is in eggdrop, or in psybnc. However, it has been prvoen that removing the psybnc connection from the equasion, solves the issues.

THis means that psybnc is sending malformed information to the bot, or eggdrop isn't parsing it correctly. Once psybnc is removed, all seems to operate fine in all the previously reported cases, leaving psybnc at blame.
t
tami
Voice
Posts: 13
Joined: Tue Feb 05, 2002 8:00 pm

Post by tami »

ah that's upsetting... my only concern for using a bnc at the moment is to hide my hostmask. :x oh well..

thanks for your assistance!
F
Freeman
Voice
Posts: 20
Joined: Thu Jan 30, 2003 6:46 am

Post by Freeman »

is your eggy on a shell with vhost? can set vhost in ur eggy conf.good luck
t
tami
Voice
Posts: 13
Joined: Tue Feb 05, 2002 8:00 pm

Post by tami »

Freeman wrote:is your eggy on a shell with vhost? can set vhost in ur eggy conf.good luck
no, it's not....that's why i'm using the bouncer...
Locked