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 14 matches

by mrNobody
Mon Dec 23, 2013 4:08 am
Forum: Scripting Help
Topic: Confide trigger to a script
Replies: 4
Views: 5507

yeah that's how I fixed it eventually, thanks for the input :)
by mrNobody
Sun Dec 22, 2013 9:24 am
Forum: Scripting Help
Topic: Script executes on one bot but not on the other
Replies: 9
Views: 8001

I found what was causing this problem, apparently my production bot had the wrong hostname for my user, so it didn't trigger the script. updated the hostname and now it works as it should, thanks for your help though!
by mrNobody
Sat Dec 21, 2013 2:32 pm
Forum: Scripting Help
Topic: lsearch help
Replies: 10
Views: 9298

could anyone tell me how I can bind all those chans to an onjoin event? I tried set famchans [split [string trim $family] "\n"] foreach famchan $famchans { if {[llength $famchan]>"1"} { bind join - "[lindex $famchan 1] *" fambot:onjoin } } but that doesn't replace the [...
by mrNobody
Sat Dec 21, 2013 2:14 pm
Forum: Scripting Help
Topic: lsearch help
Replies: 10
Views: 9298

oh very interesting nml! I'm gonna look into that as well.
by mrNobody
Sat Dec 21, 2013 1:44 pm
Forum: Scripting Help
Topic: lsearch help
Replies: 10
Views: 9298

thnx spike, works flawlessly :)

I'm learning a lot of tcl principles by looking at your beer.tcl script, but the lack of comments makes it difficult to decipher sometimes xD
by mrNobody
Sat Dec 21, 2013 11:58 am
Forum: Scripting Help
Topic: lsearch help
Replies: 10
Views: 9298

lsearch help

Okay, I'm almost afraid to make yet another topic :$ I used search and couldn't find an answer, so here we go: I have this piece of code: set family { pubchan #chan1 famchan #chan2 capochan #chan3 topchan #chan4 } proc test {nick host handle chan args} { global family set family [split [string trim ...
by mrNobody
Sat Dec 21, 2013 11:51 am
Forum: Scripting Help
Topic: Confide trigger to a script
Replies: 4
Views: 5507

Thank you for this input willyw, now I know what I want is not possible xD.

I have combined all three scripts into one and switched it in one proc, like your second suggestion said.
by mrNobody
Fri Dec 20, 2013 2:25 pm
Forum: Scripting Help
Topic: Script executes on one bot but not on the other
Replies: 9
Views: 8001

no, the bot stays otherwise silent
by mrNobody
Fri Dec 20, 2013 8:00 am
Forum: Scripting Help
Topic: Script executes on one bot but not on the other
Replies: 9
Views: 8001

I made it putlog $err
by mrNobody
Fri Dec 20, 2013 5:33 am
Forum: Scripting Help
Topic: Script executes on one bot but not on the other
Replies: 9
Views: 8001

eggdrop 1.6.21, tcl version 8.5.11
It runs on a raspberry pi with debian linux. Both bots run on the same machine with virtually the same config file.
by mrNobody
Thu Dec 19, 2013 12:37 pm
Forum: Scripting Help
Topic: Script executes on one bot but not on the other
Replies: 9
Views: 8001

it returns error code 1

//edit:
If I remove the part that catches the error code it works on testbot

//edit2:
If I load it on the production bot, just like my own code, it doesn't execute.
by mrNobody
Thu Dec 19, 2013 9:38 am
Forum: Scripting Help
Topic: Script executes on one bot but not on the other
Replies: 9
Views: 8001

Script executes on one bot but not on the other

Hi all, I wrote a very simple script to set a mode to my channels. I have a production bot and a testbot on the same network. The testbot runs the script without any problems, but the production bot doesn't trigger it at all. I checked with .binds that the command is bound, and with .whois that I ha...
by mrNobody
Wed Dec 18, 2013 8:28 am
Forum: Script Support & Releases
Topic: Public Commands script (MCC v2.5)
Replies: 11
Views: 16848

*bump* anybody got a copy of this script?
by mrNobody
Mon Dec 02, 2013 5:30 am
Forum: Scripting Help
Topic: Confide trigger to a script
Replies: 4
Views: 5507

Confide trigger to a script

Hi all, Reading these forums has helped me a lot, but now I've come across a problem for which I can't find a solution in the search. I wrote three scripts which all use the same handles. Individually they work fine, but when I load them together on the same bot, only the last loaded script works. I...