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

by ComputerTech
Fri Mar 19, 2021 12:13 am
Forum: Scripting Help
Topic: Google search
Replies: 34
Views: 17091

Google search

So was trying to make a Google search script, which eould retrieve the URL and Title of the search term, (this is my first time messing with http and websites) bind PUB - "!google" ct:google package require http package require tls proc ct:google {nick host hand chan text} { set token [htt...
by ComputerTech
Tue Mar 16, 2021 6:43 pm
Forum: Script Support & Releases
Topic: CT-VoteKick
Replies: 6
Views: 3863

CrazyCat, thats how the VoteKick script works, only the first votant can choose the target, but i do see i need to add a way to restrict One vote per $host per Vote :lol:

Ok so i "think" the above code edit should work, will see in a bit :P
by ComputerTech
Tue Mar 16, 2021 2:12 pm
Forum: Script Support & Releases
Topic: CT-VoteKick
Replies: 6
Views: 3863

Still working, but i hope this is better :lol: ######################## # CT-Votekick 0.2 ######################## # ComputerTech # 16/03/21 ######################## # Set flags of script usage set ctvk(flag) "ofmn" # Set trigger set ctvk(trig) "!votekick" # Set X time (in second...
by ComputerTech
Tue Mar 16, 2021 11:53 am
Forum: Script Requests
Topic: Very Simplistic Flood Kick Script
Replies: 10
Views: 6413

I am trying to try make my own Flood Protection Script, like some others have :wink:

and thanks @caesar for your suggestion, will change that ;)

and i haven't planned how to track things as you said yet, of course if you have any more ideas, do share :P
by ComputerTech
Tue Mar 16, 2021 12:04 am
Forum: Script Requests
Topic: Very Simplistic Flood Kick Script
Replies: 10
Views: 6413

Just thought i'd share some Code a friend of mine(Nando) made # configure the text flood tolerance lines per seconds set text_tolerance "4:10" # end of config bind pubm - * chan_flood proc chan_flood {nick uhost hand chan text} { global text_tolerance nick_last_message_time nick_lines nick...
by ComputerTech
Mon Mar 15, 2021 8:00 pm
Forum: Script Support & Releases
Topic: CT-VoteKick
Replies: 6
Views: 3863

CT-VoteKick

Just wanted to make a fun script, so i made a VoteKick script. :P Still in Beta ######################## # CT-Votekick 0.1 ######################## # ComputerTech # 16/03/21 ######################## # Set flags of script usage set ctvk(flag) "ofmn" # Set trigger set ctvk(trig) "!votek...
by ComputerTech
Sat Mar 13, 2021 1:43 am
Forum: Script Requests
Topic: Warn Action
Replies: 30
Views: 15185

Just thought i'd make the script "fancier" ########################################################################### # xAction.tcl ############################################### # Author ComputerTech, caesar, Spike^^ # Version 0.1 (BETA) # Released 12/03/2021 # GitHub https://github.com...
by ComputerTech
Fri Mar 12, 2021 3:21 pm
Forum: Scripting Help
Topic: Best way to test Proc speed
Replies: 9
Views: 5008

Just thought i'd post my finished working proc speed test code :lol: bind PUB - "!speed" do:test proc proc:name {nick host hand chan text} { putserv "PRIVMSG $chan :foo" } proc do:test {nick host hand chan text} { set foo [ time {proc:name $nick $host $hand $chan $text} 1] set ao...
by ComputerTech
Fri Mar 12, 2021 2:19 pm
Forum: Script Support & Releases
Topic: FZcommands
Replies: 13
Views: 7964

Goga, I found the problem,

Download

Tested and working :)

TIP: Next time try looking in your bot's partyline for script error's, it really helps us/we scripters :)
by ComputerTech
Fri Mar 12, 2021 12:23 am
Forum: Script Support & Releases
Topic: FZcommands
Replies: 13
Views: 7964

Goga, and the error is? makes it "Much" more difficult with no error messages
by ComputerTech
Thu Mar 11, 2021 8:32 pm
Forum: Script Requests
Topic: Warn Action
Replies: 30
Views: 15185

# Set max warnings before Punishment set warn(max) "4" # Set X time before timer undo's warning amount (in seconds) set warn(time) "120" # Set Kick Reason set warn(reason) "Hey No Action Please!" bind CTCP - ACTION action:avoid proc action:avoid {nick host hand chan ke...
by ComputerTech
Thu Mar 11, 2021 1:12 pm
Forum: Script Support & Releases
Topic: FZcommands
Replies: 13
Views: 7964

Just found a bug in the join and part commands i added to FZcommands, will fix it after work :) EDIT Should work perfectly now :) i added join for public command and part for private commands :wink: (Offtopic) thank you caesar for pointing out the url issue, i indeed forgot to add the file to the di...
by ComputerTech
Wed Mar 10, 2021 5:03 pm
Forum: Scripting Help
Topic: Best way to test Proc speed
Replies: 9
Views: 5008

thanks willyw, appreciate it :wink:
by ComputerTech
Wed Mar 10, 2021 2:14 pm
Forum: Script Requests
Topic: Warn Action
Replies: 30
Views: 15185

Haven't tested it myself yet though, but will after work :)
by ComputerTech
Wed Mar 10, 2021 2:11 pm
Forum: Scripting Help
Topic: Best way to test Proc speed
Replies: 9
Views: 5008

Best way to test Proc speed

So is this a good/best way to test the proc speed? bind PUB - "!test" speed:test proc speed:test {nick host hand chan text} { set start [clock clicks] putquick "MODE $chan +o $nick" set end [clock clicks] puthelp "PRIVMSG $chan : Timespan: [expr ($end-$start)/1000.0]ms"...