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.

Search found 202 matches

by Get_A_Fix
Thu Jun 15, 2017 9:17 pm
Forum: Script Support & Releases
Topic: Dalnet Bot Service 2.0
Replies: 23
Views: 29914

WOW, that script is so old, I haven't used that Hotmail email since the 90's
by Get_A_Fix
Wed Apr 26, 2017 8:41 am
Forum: Eggdrop Help
Topic: Defero Access Denied Error
Replies: 5
Views: 9325

Shouldn't have needed to reinstall Defero, glad it's working now.
by Get_A_Fix
Sun Apr 02, 2017 9:12 pm
Forum: Eggdrop Help
Topic: botchk issue
Replies: 7
Views: 11867

m4s wrote:Hi,

Try this:
./autobotchk chmod.conf -dir "/home/devnull/eggdrop/" -noemail -5

You did not write the "!!!
That still doesn't work. It's easier to just crontab -e and enter manually.
by Get_A_Fix
Sun Apr 02, 2017 9:15 am
Forum: Eggdrop Help
Topic: botchk issue
Replies: 7
Views: 11867

Same thing for me. Running Debian 8.7, with 3.16.0-4-amd64 kernel. Eggdrop compiled perfectly, with no stdout errors. It only errored when I created cron using ./autobotchk devnull@matrix.home: cd ~/eggdrop/scripts; chmod 700 autobotchk; ./autobotchk chmod.conf -dir /home/devnull/eggdrop -noemail au...
by Get_A_Fix
Wed Mar 22, 2017 5:08 pm
Forum: Script Requests
Topic: Auto Voice To Those Who Are Register NICK.
Replies: 78
Views: 72499

No, I have no edit, I put same like you gave me. It only works for only one channel. I tested myself. Strange, this is a script I run on a bot and it works fine across several channels. You can check your binds, to see if another script may be interfering: .binds check* Other than that, I don't see...
by Get_A_Fix
Wed Mar 22, 2017 12:03 pm
Forum: Script Requests
Topic: Auto Voice To Those Who Are Register NICK.
Replies: 78
Views: 72499

This TCL only working in one channel... However I have activated in ALL channels. WHY ? I don't know why, the code is very simple and it works on all channel's for me and other people. Either you've edited it and something went wrong, or another script is causing conflicts (the first statement is u...
by Get_A_Fix
Wed Mar 22, 2017 12:01 pm
Forum: Script Requests
Topic: kick/ban on invite
Replies: 31
Views: 27635

Wow, that's strange. I didn't test the code, as stated, but it seemed logical to me. I did take into consideration that nicks invite nicks, not just to channels, I added the string match *#* but didn't add an else (which would have been for nick based invites). The bots I do run are currently in an ...
by Get_A_Fix
Tue Mar 14, 2017 7:10 am
Forum: Script Requests
Topic: kick/ban on invite
Replies: 31
Views: 27635

i get this error : Tcl error [check:invite]: illegal channel: #jkjs hmm, strange, I haven't been able to test it but I was going from willyw's script. It, from past experience, should have worked fine. I edited the code above, try recopying, rehash and trigger the event again. ( it seems to get the...
by Get_A_Fix
Mon Mar 13, 2017 7:29 pm
Forum: Script Requests
Topic: kick/ban on invite
Replies: 31
Views: 27635

Try this (untested) # noinvite.tcl,v1.0 ## SYNTAX: !noinvite on|off # Set global trigger set noInvTrig "!" # Set the time duration (in minutes) for ban here (if 0 is set, this would be permanent) set timetoban "5" # Set flags that can enable/disable this procedure (default: globa...
by Get_A_Fix
Mon Mar 13, 2017 3:16 pm
Forum: Script Requests
Topic: kick/ban on invite
Replies: 31
Views: 27635

willyw wrote:Wow... I don't even remember doing that.
lol :)

I always check search, to make sure it hasn't already been covered before giving any info. I found that, thought it was best to post it than make something. Saves on time and doubling up code.
by Get_A_Fix
Mon Mar 13, 2017 10:14 am
Forum: Script Requests
Topic: kick/ban on invite
Replies: 31
Views: 27635

lol, bMotion is an AI script, much like egg-fu or a lower-end alice instance. The script gives you the raw, it shows how to set the nickname using $from and channel from $text - you only really need the341 proc.

You should be able to make it work, but if not, someone may post a full snippet for you.
by Get_A_Fix
Mon Mar 13, 2017 2:56 am
Forum: Script Requests
Topic: kick/ban on invite
Replies: 31
Views: 27635

You could play around with something like this and make it do what you need. The fundamentals are there.
by Get_A_Fix
Mon Mar 13, 2017 12:19 am
Forum: Script Support & Releases
Topic: Pandorabot.tcl
Replies: 71
Views: 81150

caesar wrote:What typo? I'm confused cos all i did was copy/paste the old line and replace the putnow with puthelp. :roll:
Then it must be a copy/paste error.

Code: Select all

puthelp "PUTHELP..."
by Get_A_Fix
Sat Mar 11, 2017 1:11 pm
Forum: Script Support & Releases
Topic: Pandorabot.tcl
Replies: 71
Views: 81150

I would also replace the: putnow "privmsg $c :$responce" with: puthelp "puthelp $c :$responce" It sends the text I address the eggdrop in the channel (it appears in the pandorabots.com bot logs), but I get no response on IRC. Can anyone help me? Thanks! This is a typo by caesar,...
by Get_A_Fix
Tue Mar 07, 2017 12:34 pm
Forum: Scripting Help
Topic: Determining the bot's own current nick?
Replies: 8
Views: 8719

Have you checked the ~/eggdrop/doc/tcl-commands.doc file?

The built-in method would be the $botnick variable. You can return your own handle with [matchattr [nick2hand $nick]] and your attributes using [chattr [nick2hand $nick] $chan]