egghelp.org community Forum Index
[ egghelp.org home | forum home ]
egghelp.org community
Discussion of eggdrop bots, shell accounts and tcl scripts.
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

2 Newbie Questions

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    egghelp.org community Forum Index -> Archive
View previous topic :: View next topic  
Author Message
ZDarkGoku
Voice


Joined: 04 Dec 2004
Posts: 7

PostPosted: Sun Dec 05, 2004 2:31 pm    Post subject: 2 Newbie Questions Reply with quote

1) My eggdrop bot is not responding to "/msg LiveBot hello" or DCC/CTCP chats.

2) How do I make the bot auto-identify its nickname on NickServ when it logins.
_________________
The Official DBLive Website
- irc.GamesNET.com (#dblive)
Back to top
View user's profile Send private message Send e-mail
]Kami[
Owner


Joined: 24 Jul 2003
Posts: 590
Location: Slovenia

PostPosted: Sun Dec 05, 2004 2:37 pm    Post subject: Reply with quote

1)Use search function.

2)Use search function.
_________________
Slovene Eggdrop Page
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
demond
Revered One


Joined: 12 Jun 2004
Posts: 3073
Location: San Francisco, CA

PostPosted: Sun Dec 05, 2004 2:38 pm    Post subject: Reply with quote

don't double post, check the replies of your previous post on the same subject in the junk yard section
Back to top
View user's profile Send private message Visit poster's website
ZDarkGoku
Voice


Joined: 04 Dec 2004
Posts: 7

PostPosted: Sun Dec 05, 2004 3:08 pm    Post subject: Reply with quote

Well... there are almost no posts concerning on DCC/CTCP the eggdrop bot. I've done everything the "Searched" posts said and still can't say "hello" or DCC to it.
_________________
The Official DBLive Website
- irc.GamesNET.com (#dblive)
Back to top
View user's profile Send private message Send e-mail
demond
Revered One


Joined: 12 Jun 2004
Posts: 3073
Location: San Francisco, CA

PostPosted: Sun Dec 05, 2004 3:16 pm    Post subject: Reply with quote

make sure you didn't unbind *msg:hello (check your config); also make sure you've opened a listen port in the config
Back to top
View user's profile Send private message Visit poster's website
ZDarkGoku
Voice


Joined: 04 Dec 2004
Posts: 7

PostPosted: Sun Dec 05, 2004 3:30 pm    Post subject: Reply with quote

This is what I have in my config file. I can telnet to the bot with PuTTY on its listen port but I cannot DCC to it or say hello to it, weird. I saw somewhere that it says I need a userfile or something in the eggdrop directory of the shell.

Code:

#!/home/zdarkgoku/eggdrop

### BASIC SETTINGS ###

set username "zdarkgoku"

set admin "ZDarkGoku <email: ZDarkGoku@mail.com>"

set network "irc.GamesNET.net"

set timezone "EST"

set offset "5"

### LOG FILES ###

set max-logs 5

set max-logsize 0

set quick-logs 0

set log-time 0

set quiet-save 0

set switch-logfiles-at 300

set keep-all-logs 0

set logfile-suffix ".%d%b%Y"

logfile ksxrow dblive "dblive.log"

### CONSOLE ###

set console "mkcobxs"

### FILES AND DIRECTORIES ###

set userfile "LiveBot.user"

set pidfile "pid.LiveBot"

set userfile-perm 0600

set sort-users 0

set help-path "help/"

set text-path "text/"

set mod-path "modules/"

set temp-path "/tmp"

set motd "text/motd"

set telnet-banner "text/banner"

### BOTNET/DCC/TELNET ###

listen 4505 all

set remote-boots 2

set share-unlinks 1

set protect-telnet 1

set require-p 1

set dcc-sanitycheck 0

set open-telnets 0

set stealth-telnets 1

set paranoid-telnet-flood 1

set use-telnet-banner 0

set ident-timeout 5

set connect-timeout 15

set dcc-flood-thr 3

set telnet-flood 5:60

set resolve-timeout 15

### MORE ADVANCED SETTINGS ###

set owner "ZDarkGoku"

set ignore-time 15

set hourly-updates 00

set max-dcc 50

set notify-newusers "$owner"

set default-flags "hp"

set whois-fields "url birthday"

set dupwait-timeout 5

set dupwait-timeout 5

set must-be-owner 1

unbind dcc n set *dcc:set

unbind dcc n tcl *dcc:tcl

unbind dcc n simul *dcc:simul

set enable-simul 0

set allow-dk-cmds 0

set die-on-sigterm 0

set die-on-sighup 0


### MODULES ###

# CHANNELS MODULE #

loadmodule channels

set chanfile "LiveBot.chan"

set ban-time 120

set exempt-time 60

set invite-time 60

set force-expire 0

set share-greet 0

set use-info 1

set global-flood-chan 10:60

set global-flood-join 5:60

set global-flood-kick 3:10

set global-flood-nick 5:60

set global-flood-deop 3:10

set global-flood-ctcp 3:60

set global-aop-delay 5:30

set global-chanmode "nt"

set global-idle-kick 0

set global-stopnethack-mode 0

set global-revenge-mode 1

set global-chanset {
  +autoop
  +autovoice
  -bitch
  +cycle
  +dontkickops
  +dynamicbans
  +dynamicexempts
  +greet
  +dynamicinvites
  -enforcebans
  -inactive
  -nodesynch
  -protectfriends
  +protectops
  -revenge
  -revengebot
  -secret
  -seen
  +shared
  +statuslog
  +userbans
  +userexempts
  +userinvites
}

channel add #dblive {
 chanmode "+nt-likm"
 idle-kick 0
 stopnethack-mode 0
 revenge-mode 0
 ban-time 120
 exempt-time 60
 invite-time 60
 aop-delay 5:30
 flood-chan 10:60
 flood-deop 3:10
 flood-kick 3:10
 flood-join 5:60
 flood-ctcp 3:60
 flood-nick 5:60
}

# SERVER MODULE #

loadmodule server


set servers {
 irc.GamesNET.net:6667
}

set net-type 0

set nick "\[LiveBot]"

set altnick "\[LiveBot?]"

set keep-nick 1

set strict-servernames 0

set never-give-up 1

set realname "/msg \[LiveBot] hello"

set default-port 6667

set server-cycle-wait 60

set server-timeout 60

set servlimit 0

set check-stoned 1

set serverror-quit 1

set max-queue-msg 300

set optimize-kicks 1

set use-console-r 0

set debug-output 0

set strict-host 0

#set nick-len 9

set answer-ctcp 3

set flood-msg 5:60

set flood-ctcp 3:60

set quiet-reject 1

set lowercase-ctcp 0

set double-help 0

set trigger-on-ignore 0

set double-mode 0

set use-penalties 1

#set check-mode-r 1

set double-server 0

# DNS MODULE #

loadmodule dns

# CTCP MODULE #

loadmodule ctcp

set ctcp-mode 0

# IRC MODULE #

loadmodule irc

set bounce-bans 1

set bounce-modes 0

set kick-fun 0

set ban-fun 0

set learn-users 0

set no-chanrec-info 0

set max-modes 30

set max-bans 20

set wait-split 600

set wait-info 180

set mode-buf-length 200

unbind msg - hello *msg:hello
bind msg - myword *msg:hello

unbind msg - ident *msg:ident

unbind msg - addhost *msg:addhost

set bounce-exempts 0

set bounce-invites 0

#set use-exempts 0

#set use-invites 0

set prevent-mixing 1

set max-exempts 20

set max-invites 20

#set include-lk 1

#set use-354 0

#set rfc-compliant 1
#set kick-method 1

#set modes-per-line 3

# TRANSFER MODULE #

#loadmodule transfer

set max-dloads 3

set dcc-block 1024

set xfer-timeout 30

set copy-to-tmp 0

# COMPRESS MODULE #

loadmodule compress

set share-compressed 0

set compress-level 9

# SHARE MODULE #

loadmodule share

set resync-time 900

set private-globals "mnot"

set allow-resync 0

set private-global 0

set private-user 0

set override-bots 0

# FILESYSTEM MODULE #

loadmodule filesys

set files-path "/home/zdarkgoku/eggdrop/filesys"

set incoming-path "/home/zdarkgoku/eggdrop/filesys/incoming"

set filedb-path ""

set max-file-users 20

set max-filesize 1024

set upload-to-pwd 0

# NOTES MODULE #

loadmodule notes

set notefile "LiveBot.notes"

set max-notes 50

set note-life 60

set allow-fwd 0

set notify-users 1

set notify-onjoin 1

# CONSOLE MODULE #

loadmodule console

set console-autosave 1

set force-channel 0

set info-party 0

# ASSOC MODULE #

#loadmodule assoc

# BLOWFISH MODULE #

checkmodule blowfish

# SEEN MODULE #

loadmodule seen

# UPTIME MODULE #

loadmodule uptime

# WIRE MODULE #

#loadmodule wire

# WOOBIE MODULE #

#loadmodule woobie

### SCRIPTS ###

source scripts/alltools.tcl
source scripts/action.fix.tcl
source scripts/compat.tcl
source scripts/userinfo.tcl

loadhelp userinfo.help


_________________
The Official DBLive Website
- irc.GamesNET.com (#dblive)
Back to top
View user's profile Send private message Send e-mail
CtrlAltDel
Halfop


Joined: 02 Jun 2004
Posts: 49

PostPosted: Sun Dec 05, 2004 3:42 pm    Post subject: Reply with quote

Quote:
unbind msg - hello *msg:hello
bind msg - myword *msg:hello


try /msg [LiveBot] myword Confused
Back to top
View user's profile Send private message
ZDarkGoku
Voice


Joined: 04 Dec 2004
Posts: 7

PostPosted: Sun Dec 05, 2004 3:48 pm    Post subject: Reply with quote

I'm still not getting any reply from the bot.
_________________
The Official DBLive Website
- irc.GamesNET.com (#dblive)
Back to top
View user's profile Send private message Send e-mail
Alchera
Revered One


Joined: 11 Aug 2003
Posts: 3344
Location: Ballarat Victoria, Australia

PostPosted: Sun Dec 05, 2004 6:34 pm    Post subject: Reply with quote

You have unbound 'hello' and therefore need to "/msg LiveBot myword"
_________________
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Back to top
View user's profile Send private message Visit poster's website
Frontier
Voice


Joined: 27 Sep 2005
Posts: 3
Location: Bornholm, Denmark

PostPosted: Tue Sep 27, 2005 3:04 am    Post subject: Same problem here Reply with quote

Alchera wrote:
You have unbound 'hello' and therefore need to "/msg LiveBot myword"


Being honest here, I have the exact same problem. The bot won't respond to anything but telnet.

After having found this out, I have installed a few other TCL scripts (google, googlescore, etc) - and they work OK (respond to channel triggers).

I'm running the latest windows version on a Win2K3 server. This is an excerpt from my eggdrop.conf:
#unbind msg - hello *msg:hello
bind msg - hi! *msg:hello


Neither hello or hi! works...

Sincerely,
Klaus J.
Back to top
View user's profile Send private message Visit poster's website
De Kus
Revered One


Joined: 15 Dec 2002
Posts: 1361
Location: Germany

PostPosted: Tue Sep 27, 2005 3:55 am    Post subject: Reply with quote

have you verified that 'learn-users' is set to '1'?

If ZDarkGokus config paste is still uptodate he is the example of "too stupid to read the comments in the config file".
_________________
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...


Last edited by De Kus on Tue Sep 27, 2005 3:56 am; edited 1 time in total
Back to top
View user's profile Send private message MSN Messenger
Frontier
Voice


Joined: 27 Sep 2005
Posts: 3
Location: Bornholm, Denmark

PostPosted: Tue Sep 27, 2005 3:56 am    Post subject: Re: Same problem here Reply with quote

OK - got it working now.

I simply changed set learn-users to 1 in my eggdrop.conf file.

I hope this helps other users, having the same problem...
Back to top
View user's profile Send private message Visit poster's website
Derek
Voice


Joined: 26 Sep 2005
Posts: 12

PostPosted: Tue Sep 27, 2005 7:07 am    Post subject: Reply with quote

Dang Sad That didn't fix my problem. I still cannot DCC chat w/ the bot. Only telnet works. Anymore ideas?
Back to top
View user's profile Send private message
demond
Revered One


Joined: 12 Jun 2004
Posts: 3073
Location: San Francisco, CA

PostPosted: Wed Sep 28, 2005 12:56 am    Post subject: Reply with quote

Derek wrote:
Dang Sad That didn't fix my problem. I still cannot DCC chat w/ the bot. Only telnet works. Anymore ideas?


virtually all possible reasons for that are listed and explained in the top sticky post of this forum
_________________
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use [code] tag when posting logs, code
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    egghelp.org community Forum Index -> Archive All times are GMT - 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Forum hosting provided by Reverse.net

Powered by phpBB © 2001, 2005 phpBB Group
subGreen style by ktauber