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

by SpiKe^^
Mon Feb 14, 2022 1:11 pm
Forum: Scripting Help
Topic: Sun and Moon script
Replies: 18
Views: 6268

Post the code

Post the entire code you are currently running.
by SpiKe^^
Tue Feb 08, 2022 5:17 pm
Forum: Scripting Help
Topic: Need help hacking pkb.tcl by SpiKe^^
Replies: 16
Views: 5395

I find it hard to believe that someone would willingly choose to use an irc client that blindly adds unwanted random characters to the text they type: and then won't even allow them to backspace out those unwanted random characters:
by SpiKe^^
Tue Feb 08, 2022 12:44 am
Forum: Scripting Help
Topic: Need help hacking pkb.tcl by SpiKe^^
Replies: 16
Views: 5395

wtf

What in the world are you talking about? That code was never designed to strip the : from nick: Read the patch request from just above the linked content. Actually that request was yours... "for example doing !k @somenick" You never said your channel ops were typing in nicks followed by a ...
by SpiKe^^
Mon Feb 07, 2022 10:36 am
Forum: Scripting Help
Topic: check if nick is in channel
Replies: 3
Views: 1507

by SpiKe^^
Mon Feb 07, 2022 3:57 am
Forum: Scripting Help
Topic: Need help hacking pkb.tcl by SpiKe^^
Replies: 16
Views: 5395

pkb.tcl version 1.5 +kick-hack tested

Loaded and quick tested the current modified code and all is fine. Somewhere you messed up your code again, or are also running another script that doesn't play well with this script. <SpiKe^^> .k sumguy * sumguy was kicked by Morticia (Stop that.) <SpiKe^^> .k sumguy a custom reason * sumguy was ki...
by SpiKe^^
Mon Feb 07, 2022 3:34 am
Forum: Scripting Help
Topic: Need help hacking pkb.tcl by SpiKe^^
Replies: 16
Views: 5395

pkb.tcl version 1.5 +kick-hack

Here is a clean copy of the pkb script with only the last 3 patches applied. Give this last patch a fair testing, and load this script on a bot with no other scripts loaded. Do NOT edit the script code at all prior to testing this modified code. Use .restart to load the code clean on the bot. ######...
by SpiKe^^
Sun Feb 06, 2022 4:43 am
Forum: Scripting Help
Topic: Need help hacking pkb.tcl by SpiKe^^
Replies: 16
Views: 5395

You added quite a bit of code there, I have no idea where you messed up.

If !kb works so should !k

Go back to the original script, and add back your hacks one at a time until you break it.
Then remove the last hack, and don't do that again:)
by SpiKe^^
Wed Feb 02, 2022 5:08 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 11856

That's not what I said.

Said it just does that and kills the other options for the k and kb commands.

Try the hack and see...
by SpiKe^^
Wed Feb 02, 2022 3:35 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 11856

Lame hack

Try find this line in the script.... if {$uh ne "Timer" && ![is:allowed $nk $hn $ch]} { return 0 } and add these lines just after that line... if {$do eq "k" || $do eq "kb"} { if {[llength [set temp [split $tx]]]>1 && ![matchstr ".*" [lindex $t...
by SpiKe^^
Wed Feb 02, 2022 2:58 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 11856

That's because the command is: !k Dari .test
by SpiKe^^
Wed Feb 02, 2022 2:50 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 11856

I don't get the difference.

the stacker can work with a "stack" of 1, just as well as 4 or 44?
by SpiKe^^
Wed Feb 02, 2022 2:26 pm
Forum: Script Support & Releases
Topic: Public Kick/Ban Script (w/ stored info & extended mutes)
Replies: 30
Views: 11856

I thought that was how it worked now?
by SpiKe^^
Wed Feb 02, 2022 2:21 pm
Forum: Scripting Help
Topic: Sun and Moon script
Replies: 18
Views: 6268

Moon phases

While I have no idea if there is an easier way to do this, this is how I might do it... if {$phnumber==0 || $phnumber==1} { set phase "new moon" } elseif {$phnumber<0.25} { set phase "waxing crescent" } elseif {$phnumber==0.25} { set phase "first quarter" } elseif {$phn...
by SpiKe^^
Sat Jan 29, 2022 3:17 am
Forum: Script Requests
Topic: Dictionary
Replies: 11
Views: 4434

Dictionary Lookup v1.2 (+redirectable)

Dictionary Lookup v1.2 (+redirectable) Addresses the no reply for things like "draws" and "Another" by following the redirect... # Description: This script will query dictionary.com and give a simple response # # v1.0 Initial release giving a simple dictionary result (jaxson) # v...
by SpiKe^^
Tue Jan 25, 2022 5:37 pm
Forum: Scripting Help
Topic: Sun and Moon script
Replies: 18
Views: 6268

That error is probably coming from this line where you call $location before you set that variable...

Code: Select all

set sun_moon_data [::SunMoon::download_data https://api.ipgeolocation.io/astronomy?[http::formatQuery apiKey $::SunMoon::apikeys(astro) $location]]