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

by Landslyde
Sun Jan 20, 2019 5:33 pm
Forum: Eggdrop Help
Topic: Cannot assign requested address
Replies: 1
Views: 4371

Cannot assign requested address

I have a new IRCd set up on a dedicated server. On it I'm running two eggdrops connecting to lacalhost. No issues. But today I tried to launch an eggdrop v1.8 from a shell to my irc network and I get this: [15:43:20] === Bot: 1 channels, 0 users. [15:43:20] TLS: unable to load own certificate: error...
by Landslyde
Thu Jan 17, 2019 4:27 pm
Forum: Eggdrop Help
Topic: [SOLVED] How to connect eggdrop to localhost
Replies: 3
Views: 5132

Thanks simo. It was a config issue in my ircd conf. Got it connected now. Have a good one.
by Landslyde
Thu Jan 17, 2019 4:00 pm
Forum: Eggdrop Help
Topic: [SOLVED] How to connect eggdrop to localhost
Replies: 3
Views: 5132

[SOLVED] How to connect eggdrop to localhost

I have an eggdrop (1.8.3) on the same server as my IRCd (Inspircd) and want to connect the eggdrop to the IRCd through localhost. Is this possible?
by Landslyde
Tue Sep 05, 2017 6:49 pm
Forum: Scripting Help
Topic: New Line || Line Break
Replies: 4
Views: 6120

hey willyw:

I can live with that. It's a lot faster. And I only use it on my dedicated server where i run my little irc network. If it was a few hundred lines spewing out, that might be an issue (on other networks).

Thanks, willyw. I appreciate your help :D
by Landslyde
Tue Sep 05, 2017 5:29 pm
Forum: Scripting Help
Topic: New Line || Line Break
Replies: 4
Views: 6120

willw: Yeah, I've been using a putquick for each line, but that spews out the 15 lines very slowly. I have everything on just one putquick now (much faster), each item separated by a comma, but that's not the look I want. And you may very well be right about this perhaps not being possible. I did an...
by Landslyde
Tue Sep 05, 2017 4:48 pm
Forum: Scripting Help
Topic: New Line || Line Break
Replies: 4
Views: 6120

New Line || Line Break

I don't know how to do this. And maybe it just can't be done. Dunno. I want to break the lines at certain places (denoted by /n in my example): putquick "NOTICE $nick :Type This \n That \n Something else" I want the output to be: This That Something else This is just an example to demonstr...
by Landslyde
Tue Sep 05, 2017 4:29 pm
Forum: Scripting Help
Topic: How to check for certain nicks
Replies: 7
Views: 9316

caesar:

Thanks for that input. Now I know what ne means :-)
by Landslyde
Thu Aug 17, 2017 8:13 am
Forum: Scripting Help
Topic: How to check for certain nicks
Replies: 7
Views: 9316

Madalin:

Perfect! :D
by Landslyde
Sun Jul 30, 2017 7:18 pm
Forum: Scripting Help
Topic: How to check for certain nicks
Replies: 7
Views: 9316

How to check for certain nicks

This is a simple channel statistics script that i downloaded and am trying to modify so it won't track the channel bots. This is what I have that's failing: proc statistics::monitor {nickname hostname handle channel arguments} { set nick1 "kuneho" set nick2 "kuliglig" set nick3 &...
by Landslyde
Wed Jul 12, 2017 4:53 am
Forum: Eggdrop Help
Topic: Binding IPv6 to Eggdrops
Replies: 3
Views: 8283

Arnold_X-P:

I made that change, but no dice. The situation remains the same.

Do you have another suggestion?

Thanks.
by Landslyde
Tue Jul 11, 2017 2:35 pm
Forum: Eggdrop Help
Topic: Binding IPv6 to Eggdrops
Replies: 3
Views: 8283

Binding IPv6 to Eggdrops

I'm here because i don't believe it's a server issue. On my dedicated server, I have two third-level domain names that I use on two of my v1.8 bots: nslookup 2607:5300:60:9e65:a1:b2:c3:d4 Server: 127.0.0.1 Address: 127.0.0.1#53 Non-authoritative answer: 4.d.0.0.3.c.0.0.2.b.0.0.1.a.0.0.5.6.e.9.0.6.0....
by Landslyde
Thu May 04, 2017 6:23 am
Forum: Scripting Help
Topic: Deleted File Keeps Coming Back
Replies: 3
Views: 5518

My cron job: 00 03 * * * rm /home/shianne/eggdrop/scripts/dbase/statistics This works fine. Here's the restart.tcl. This works fine. ## this equals 04:00 am CST bind cron - {00 03 * * *} restart:cron proc restart:cron {min hour day month weekday} { restart } The bot restarts at the same time the fil...
by Landslyde
Thu May 04, 2017 3:33 am
Forum: Scripting Help
Topic: Deleted File Keeps Coming Back
Replies: 3
Views: 5518

Deleted File Keeps Coming Back

One of my bots (1.6.21) uses a statistics script that generates a file, tracking how much the users yack on the channel. I have a cron job that deletes this file daily (verified deletion). But, even though the file gets deleted, it keeps showing the old data as if it was never deleted. My Cron: 00 0...
by Landslyde
Sat Apr 22, 2017 9:40 pm
Forum: Scripting Help
Topic: [RESOLVED] Need help making script recycle
Replies: 3
Views: 6409

willyw: I edited the initial post and provided the entire script. I added in two places: ############################################# pub_word # this doesnt work ############################################# So in proc noone_gotit {} { global winuse chan letters ansonoff if {$ansonoff} { putserv &q...
by Landslyde
Sat Apr 22, 2017 5:25 am
Forum: Scripting Help
Topic: [RESOLVED] How to call a proc within a proc
Replies: 3
Views: 5441

caesar and willyw: This is an issue i'm having with a prior post: http://forum.egghelp.org/viewtopic.php?t=20324 This is a game script. The user calls the game with !word If no one guess the puzzle, the game ends. If the puzzle is guessed, the game also ends. I have the code in that post. I want to ...