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

by silentziler
Wed May 09, 2018 10:55 pm
Forum: Script Requests
Topic: fmylife.com eggdrop tcl script request
Replies: 4
Views: 6272

fml script

############################################ # Command for random fml quote = !fml # ############################################ bind pub - !fml pub_FML proc pub_FML {nick uhost handle chan text} { package require http ## UNCOMMENT FOR HTTPS ## package require tls ## UNCOMMENT FOR HTTPS ## http::r...
by silentziler
Wed Jul 05, 2017 7:07 pm
Forum: Script Support & Releases
Topic: Help with modification of a script
Replies: 5
Views: 9100

If you want text after the URL

If the URL is the last thing in the sentence, it will be removed. If there is text remaining after the URL, the URL will remain. Replace your putserv with the code below: Updated: regexp {https://.* (..*)} $text - 2 if {[info exists 2] eq "0" } { regsub {https.*} $text {} text putserv &quo...
by silentziler
Wed Jul 05, 2017 2:07 pm
Forum: Script Support & Releases
Topic: Help with modification of a script
Replies: 5
Views: 9100

Re: Help with modification of a script

Add

Code: Select all

regsub {https.*} $text {} text
before your putserv!
by silentziler
Wed Jun 21, 2017 6:37 pm
Forum: Scripting Help
Topic: Remove a concrete blank character
Replies: 3
Views: 6285

Re: Remove a concrete blank character

Alternative:

regsub -all { <} $liveme1 {<} liveme1
regsub -all {> } $liveme2 {>} liveme2

instead of using [string map]
by silentziler
Mon Dec 07, 2015 5:04 pm
Forum: Scripting Help
Topic: fix an existing tcl script
Replies: 1
Views: 4250

Re: fix an existing tcl script

Hi guys, good site, congratulations, I downloaded some tcl which I would use for my new company to record sound, we only have PCs with Ubuntu, and I would need to know if you can change a script that already exists: http://www.egghelp.org/cgi-bin/tcl_archive.tcl?mode=download&id=1511 every time...
by silentziler
Thu Oct 22, 2015 1:18 pm
Forum: Script Requests
Topic: New wikipedia script pls
Replies: 2
Views: 5053

Re: New wikipedia script pls

Can i pls have a new wikipedia script. I think the one by incith-google and fordlawnmower is not working anymore :/ Thank you in advance. Wikipedia Quick Link by: Hen Asraf is a pretty nifty script, it posts a link to your search. Im sure you could probly modify the script to do more. Link: http://...
by silentziler
Thu Oct 22, 2015 11:37 am
Forum: Scripting Help
Topic: Bind pub with more than one word
Replies: 5
Views: 7475

Fixed!

silenziler: I forgot to mention this. Sorry. Spike^^ intuitively realized the problem. Spike^^: Thanks for jumping in, so silentziler didn't have to wait for me to re-appear here. silentziler: In the partyline, learn to use the .binds command. It will list current binds. You can search with it also...
by silentziler
Wed Oct 21, 2015 7:39 pm
Forum: Scripting Help
Topic: Bind pub with more than one word
Replies: 5
Views: 7475

Re: Bind pub with more than one word

Thanks for the suggestion.

So I tried what you recommended and the pubm doesn't seem to work.
I can type anything after !nfl and still trigger the command.

I might have to find a work around.
by silentziler
Wed Oct 21, 2015 3:01 pm
Forum: Scripting Help
Topic: Bind pub with more than one word
Replies: 5
Views: 7475

Bind pub with more than one word

So I may be a newb, ive done research and have tried a few things already to no avail. I would like to have a 'bind pub' with two words for a trigger, it currently looks like this: bind pub - "!nfl" get_sched I would like to have it triggered with: bind pub - "!nfl thurs" get_sch...
by silentziler
Mon Sep 14, 2015 9:11 am
Forum: Script Requests
Topic: Identify with nickserv before autop op
Replies: 4
Views: 6322

Re: Identify with nickserv before autop op

Hey willyw, Just wanted to say thanks for the suggestion! I will play with this code and see if I can't make something of it! I kinda figured it would be a pain in the rear, I did all kinds of research before coming here for help. I didnt see to many people with this question, so i figured I would r...
by silentziler
Wed Sep 09, 2015 11:09 am
Forum: Script Requests
Topic: Identify with nickserv before autop op
Replies: 4
Views: 6322

Identify with nickserv before autop op

Hello egghelp, So im currently using AutoopNick.tcl By CoMMy / kirian100@yahoo.com and im looking to add a line to check to see if a user has identified with nickserv before autoping. I removed the first IF line as it doesnt matter the channel. I was just wondering if its possible to add an ident ch...