<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/17849" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2010-07-09T16:51:26-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/17849</id>

		<entry>
		<author><name><![CDATA[marvz]]></name></author>
		<updated>2010-07-09T16:51:26-04:00</updated>

		<published>2010-07-09T16:51:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=93495#p93495</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=93495#p93495"/>
		<title type="html"><![CDATA[gseen issue. Can't load module [solved]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=93495#p93495"><![CDATA[
Realized that I didn't have<div class="codebox"><p>Code: </p><pre><code>loadmodule gseen</code></pre></div>in the .conf<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11259">marvz</a> — Fri Jul 09, 2010 4:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[marvz]]></name></author>
		<updated>2010-07-08T12:36:22-04:00</updated>

		<published>2010-07-08T12:36:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=93477#p93477</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=93477#p93477"/>
		<title type="html"><![CDATA[gseen issue. Can't load module [solved]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=93477#p93477"><![CDATA[
I'm trying to load the gseen script and I get the following messages when I try to load it:<br><div class="codebox"><p>Code: </p><pre><code>[09:08] Can't load modules gseen: Unknown module.[09:08] Tcl error in file 'beersnob.conf':[09:08] invalid command name "loadseenslang"    while executing"loadseenslang "en" "English" language/gseen.en.lang"    (file "gseen.conf" line 16)    invoked from within"source gseen.conf"    (file "beersnob.conf" line 227)[09:08] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)Connection closed by foreign host.</code></pre></div>Here is my gseen.conf file that is located in the /eggdrop directory:<div class="codebox"><p>Code: </p><pre><code>##############   General Settings############ the file where the seen data will be backuped.# WARNING: set this _before_ the module is loaded.set gseenfile "gseen.dat"# now load the moduleloadmodule gseen# load the English language fileloadseenslang "en" "English" language/gseen.en.lang# load the German language file# loadseenslang "de" "Deutsch" language/gseen.de.lang# set the default language to english...set default-slang "en"# ... but let #xwp use the german langfilesetchanseenlang #xwp "de"# the char that marks public commands (!seen, etc...)# "" is a valid optionset cmdchar "!"# delete data sets that are older than x daysset expire-seens 365# only answer x seen requests in y seconds to prevent floodingset max-seens 7:60# tell users if someone was !seen'ing for themset tell-seens 1# check if the user was online under a different nickset fuzzy-search 1# allow user to include wildcards in the search?set wildcard-search 1# break search if there are more than x matchesset max-matches 250# forward a request to other bots, if a !seen returned no result?set botnet-seens 1# store channels, which are +secret on the bot as [secret]?set hide-secret-chans 1# backup the seen data every x minutesset save-seens 60##############   AI Settings############ this setting configures on which sentences your bot should# attempt to do an ai-seen. Each of them is a simple wildcard# mask. Set this to "" if you want to deactivate ai-seens or# create more precise masks if the bots reacts too often.set ai-seen-binds {  "${nick}*seen*"  "${botnet-nick}*seen*"  "${nick}*gesehen*"  "${botnet-nick}*gesehen*"}# this is just the same as above, but if triggered it will# not do an ai-seen, but display its seen-stats.set ai-seenstats-binds {  "${nick}*seenstats*"  "${botnet-nick}*seenstats*"}# when doing an AI seen, ignore the following words (otherwise# the bot might give weird answers like "&lt;bot&gt; nick, bot was last seen..." :)set ai-seen-ignore "$nick ${botnet-nick} seen"</code></pre></div>Here is my .conf file for my eggdrop:<br><div class="codebox"><p>Code: </p><pre><code>#! ./eggdrop### Core Settings ###set admin "Marvz"set nick "Beersnob"set altnick "Beersnob-"set realname "Beersnob"set network "Others"set net-type "5"set init-server { putserv "mode Beersnob +i" }set default-port 6667set servers {  irc.irc4lyf.com    }set timezone "PST"set offset "7"set env(TZ) "$timezone $offset"set my-hostname "irc4lyf.com"set my-ip ""### Logfile Settings ###set max-logs 5set max-logsize 0set quick-logs 0logfile mcobxs * "logs/Beersnob.log"logfile jkp #spf "logs/#spf.log"set log-time 1set keep-all-logs 1set logfile-suffix ""set switch-logfiles-at 300set quiet-save 0### Console Settings ###set console "mkcobxs"### File &amp; Directory Settings ###set userfile "Beersnob.user"set pidfile "pid.Beersnob"set chanfile "Beersnob.chan"set force-expire 0set share-greet 0set use-info 1set sort-users 0set help-path "help/"set text-path "text/"set temp-path "/tmp"set motd "text/motd"set telnet-banner "text/banner"set userfile-perm 0600set mod-path "modules/"### BotNet Settings ###set botnet-nick "Beersnob"listen 3333 allset remote-boots 0set share-unlinks 0set protect-telnet 1set dcc-sanitycheck 1set ident-timeout 0set require-p 1set open-telnets 0set stealth-telnets 0set use-telnet-banner 0set connect-timeout 30set dcc-flood-thr 3set telnet-flood 5:60set paranoid-telnet-flood 1set resolve-timeout 15### Channel Settings ###loadmodule channelsset global-flood-chan 4:5set global-flood-deop 0:0set global-flood-kick 0:0set global-flood-join 4:05set global-flood-ctcp 2:02set global-flood-nick 5:20set global-aop-delay 0:00set global-idle-kick 0set global-chanmode "nt"set global-stopnethack-mode 0set global-revenge-mode 0set global-ban-time 0set global-exempt-time 60set global-invite-time 60set global-chanset {    +autoop           +autovoice    -bitch            -cycle    +dontkickops      +dynamicbans    +dynamicexempts   +dynamicinvites    +enforcebans      -greet    -inactive         +nodesynch    +protectfriends   +protectops    -revenge          -revengebot    -secret           +seen    +shared           -statuslog    +userbans         +userexempts    +userinvites      -protecthalfops    -autohalfop}channel add #spf {    chanmode "+tn"    idle-kick 0    flood-chan 5:4    flood-join 5:10    flood-ctcp 3:60    flood-deop 0:0    flood-kick 0:0}channel set #spf +enforcebans +dynamicbans +autoop +autovoice +protectops +protectfriends#set opchars "@&amp;~"### Advanced Settings ###set ignore-time 5set hourly-updates 00set owner "Marvz"set notify-newusers "Marvz"set default-flags "hp"set whois-fields "url birthday"set die-on-sighup 0set die-on-sigterm 1unbind dcc n tcl *dcc:tclunbind dcc n set *dcc:setset must-be-owner 1unbind dcc n simul *dcc:simulset max-dcc 50set enable-simul 1set allow-dk-cmds 1set dupwait-timeout 5### Module Settings ###loadmodule dnsloadmodule transferloadmodule shareloadmodule serverloadmodule ctcploadmodule ircloadmodule notesloadmodule consoleloadmodule blowfishcheckmodule blowfishloadmodule uptimeset keep-nick 1set strict-host 0set quiet-reject 1set lowercase-ctcp 0set answer-ctcp 3set flood-msg 5:5set flood-ctcp 3:60set never-give-up 1set strict-servernames 0set server-cycle-wait 60set server-timeout 60set servlimit 0set check-stoned 1set use-console-r 0set debug-output 0set serverror-quit 1set max-queue-msg 300set trigger-on-ignore 0set double-mode 0set double-server 0set double-help 0set optimize-kicks 1set stack-limit 4set ctcp-mode 0set bounce-bans 1set bounce-modes 0set max-bans 100set max-modes 30set kick-fun 0set ban-fun 0set learn-users 0set wait-split 600set wait-info 180set mode-buf-length 200bind msg - ident *msg:identbind msg - addhost *msg:addhostset no-chanrec-info 0set bounce-exempts 0set bounce-invites 0set max-exempts 20set max-invites 20set prevent-mixing 1set max-dloads 3set dcc-block 1024set copy-to-tmp 1set xfer-timeout 30set share-compressed 1set max-notes 50set note-life 60set allow-fwd 0set notify-users 1set notify-onjoin 1set console-autosave 1set force-channel 0set info-party 0# Many takeover attempts occur due to lame users blindly /msg ident'ing to# the bot and attempting to guess passwords. We now unbind this command by# default to discourage them. You can enable this command by un-commenting# the following two lines.bind msg - ident *msg:identbind msg - addhost *msg:addhost# This is a Tcl script to be run immediately after connecting to a server.bind evnt - init-server evnt:init_serverproc evnt:init_server {type} {  global botnick  putquick "MODE $botnick +ib-ws"  putquick "privmsg nickserv : identify ****"} ### Script Settings ###source scripts/alltools.tclsource scripts/action.fix.tcl#source scripts/bseen1.4.2.tcl#source scripts/mel2.tcl#source scripts/beer.tclsource gseen.conf</code></pre></div>I have been reading and I think my eggdrop directory might be the issue but, I don't want to make those changes due to my fear of messing something up. My current directory looks like this:<br><br>eggdrop/<br>beersnob.user<br>beersnob.chan<br>beersnob.conf<br>gseen.conf<br>README<br>eggdrop-1.6.19<br>bs_data_beersnob.bak<br>bs_data.beersnob<br>beersnob.user~bak<br>beersnob.chan~bak<br>eggdrop.conf<br>beersnob.notes<br><br>/language<br>/doc<br>/help<br>/filesys<br>/mel<br>/logs<br>/scripts<br>/text<br><br>Hope this is enough info. I did everything that the installation notes told me to do so I'm at a loss right now. Thanks in advance.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11259">marvz</a> — Thu Jul 08, 2010 12:36 pm</p><hr />
]]></content>
	</entry>
	</feed>
