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.

Of windrop to eggdrop conf

General support and discussion of Eggdrop bots.
Post Reply
j
juanamores
Master
Posts: 317
Joined: Sun Mar 15, 2015 9:59 am

Of windrop to eggdrop conf

Post by juanamores »

For reasons of VPS, I will migrate bot from Windows to Linux.
TCLs I have programed working in linux?, I believe so, but just in case you wonder.
And the other question I have is with respect to eggdrop.conf file serves me wearing my windrop?

Code: Select all

set mod-path "modules/"
set help-path "help/"
set text-path "text/"
set text-path "tmp/"
set motd "text/motd"
set ctcp-version "Version 1.0"
 
# Fisical configuration of eggdrop
set username "Bot-Radio"
set nick "nickbot!passw"
set altnick "nickalt"
set botnet-nick "BOT"
set realname "My BoT"
set admin "Roger <email: Tu@email>"
set must-be-owner 0
set owner "juanamores"
set keep-nick 1

 
 # Registry files 
set userfile "Bot.ur"
set pidfile "pid.Bot"
set chanfile "Bot.chan"
 
 # Telnet port
listen 3333 bots
listen 4444 users
listen 5555 all

set dns-servers "192.168.1.1"
 
 # Network and servers
set network "CHATHISPANO"
set net-type 2
set default-port 6667
set servers {
        irc.irc-hispano.org:6667:xxxx
		irc.chathispano.com:6667:xxxx
		ariel.chathispano.com:6667:xxx
		miranda.chathispano.com:6667:xxx
}
 
 
# System configuration
set console "mkcobxs"
set global-flood-chan 0:0
set global-flood-deop 0:0
set global-flood-kick 0:0
set global-flood-join 0:0
set global-flood-ctcp 0:0
set global-flood-nick 0:0
set global-aop-delay 0:0
set global-idle-kick 0
set global-stopnethack-mode 0
set global-ban-time 0
 #flood for private message
set flood-msg 0:0
set default-flags "f" 
set notify-newusers "$owner"

set global-chanset {
+userinvites
+dynamicinvites
}
set use-invites 1 
set dcc-flood-thr 15
 


 #Modulos:
#loadmodule dns
loadmodule channels
loadmodule server
loadmodule ctcp
loadmodule irc
loadmodule notes
loadmodule console
loadmodule blowfish
checkmodule blowfish
 
 #Tcl Scripts
source scripts/alltools.tcl
source scripts/action.fix.tcl
source scripts/userinfo.tcl
source scripts/etc..........
For the purposes of the bot recognize me, just typing:
/msg MyBot IDENT mypasw
????
If they happen to something else I must change by migration of operating system please tell me. Thanks
If you do not understand my ideas is because I can not think in English, I help me with Google Translate. I only speak Spanish. Bear with me. Thanks :)
User avatar
Madalin
Master
Posts: 310
Joined: Fri Jun 24, 2005 11:36 am
Location: Constanta, Romania
Contact:

Post by Madalin »

Not really, when you migrate from a server to a server even linux - linux or this you have to compile the eggdrop and just move the necessary files like *.conf/chan/user/info director scripts and any other file that was custom added to the eggdrop.
User avatar
Get_A_Fix
Master
Posts: 206
Joined: Sat May 07, 2005 6:11 pm
Location: New Zealand

Post by Get_A_Fix »

Also, the TMP path between windrop and eggdrop are different.

windrop.conf

Code: Select all

set help-path "help/"
set text-path "text/"
set text-path "tmp/"
as compared to..

eggdrop.conf

Code: Select all

# Specify here where Eggdrop should look for help files. Don't modify this
# setting unless you know what you're doing!
set help-path "help/"

# Specify here where Eggdrop should look for text files. This is used for
# certain Tcl and DCC commands.
set text-path "text/"

# Set here a place to store temporary files.
set temp-path "/tmp"
Everything else is pretty much exactly the same.
I, personally, would never use a short.conf or a config file generated by a website or software. It's ALWAYS recommended to edit your eggdrop.conf file and then save/rename it to run as your bot, at least that way you're using the file that's shipped with your version, and by simply renaming and editing more *.conf files, you can run multiple instances of eggdrop (from the one account).
We explore.. and you call us criminals. We seek after knowledge.. and you call us criminals. We exist without skin color, without nationality, without religious bias.. and you call us criminals.
w
willyw
Revered One
Posts: 1197
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

Looks like a typo is in there.

Code: Select all

set text-path "text/"
set text-path "tmp/" 
text-path is in there twice.
temp-path is not in there at all.

Get-A-Fix wrote: I, personally, would never use a short.conf or a config file generated by a website or software.
I concur.
For a fun (and popular) Trivia game, visit us at: irc.librairc.net #science-fiction . Over 300K Q & A to play in BogusTrivia !
User avatar
Get_A_Fix
Master
Posts: 206
Joined: Sat May 07, 2005 6:11 pm
Location: New Zealand

Post by Get_A_Fix »

willyw wrote:Looks like a typo is in there.

Code: Select all

set text-path "text/"
set text-path "tmp/" 
text-path is in there twice.
temp-path is not in there at all.
Heh, I had copied that from the original post of juanamores, so their *.conf file should have thrown an error by now. I didn't even notice it, or I would have changed it, but it's good that it wasn't changed, so that now juanamores can edit the file appropriately.
We explore.. and you call us criminals. We seek after knowledge.. and you call us criminals. We exist without skin color, without nationality, without religious bias.. and you call us criminals.
w
willyw
Revered One
Posts: 1197
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

Get_A_Fix wrote: ...
Heh, I had copied that from the original post of juanamores, so their *.conf file should have thrown an error by now.
...
When I noticed it, I went back and found it in the original too.
For clarity, I should have mentioned where the typo originated.
Apologies to you.
I just whipped off a quick comment, in hopes that pointing it out would help.

Yes, I too wondered why the original poster was not mentioning errors.
For a fun (and popular) Trivia game, visit us at: irc.librairc.net #science-fiction . Over 300K Q & A to play in BogusTrivia !
j
juanamores
Master
Posts: 317
Joined: Sun Mar 15, 2015 9:59 am

Post by juanamores »

Thanks Get_A_Fix and willyw fixed! :D
If you do not understand my ideas is because I can not think in English, I help me with Google Translate. I only speak Spanish. Bear with me. Thanks :)
Post Reply