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

by Get_A_Fix
Thu Jul 14, 2016 3:28 am
Forum: Script Requests
Topic: pub command for specific vhost
Replies: 3
Views: 5975

seems to work only the reason doesnt seem to take more than the first parameter While that method does work, in some cases, the best method for your code would be to use lrange, and split it: set reason [join [lrange [split $text] 1 end]] For the Shun command, you would want to either declare the d...
by Get_A_Fix
Fri Jul 08, 2016 8:04 am
Forum: Scripting Help
Topic: help tcl welcome
Replies: 9
Views: 10400

I would probably use caesar's code, due to his expertise, but I did make something exactly like this a while back for someone. This uses a setudef (user defined setting), allowing you to enable/disable per channel. This method allows for you to utilise $nick and $chan like normal, inside your messag...
by Get_A_Fix
Mon Jun 27, 2016 7:56 pm
Forum: Script Requests
Topic: public ban command
Replies: 5
Views: 8015

If you need to, you can check out some of my releases. There is a public ban script, an ignore script and many other's.
by Get_A_Fix
Thu Jun 23, 2016 9:40 pm
Forum: Script Requests
Topic: Shoutcast V2 working script.
Replies: 5
Views: 8064

juanamores wrote:Hello gamefan098 , post your code so we can help you better.
The shoutcast script is pretty big. Most people know it, or can look it up easily. Some of the features being requested are needed, but I think with such a large script it's best left to the author/maintainer.
by Get_A_Fix
Fri Jun 17, 2016 10:37 pm
Forum: Script Requests
Topic: enforce bans / kicks on all common channels
Replies: 21
Views: 22791

looks to be working good caesar is it possible to have it also remove ban on all channels if a ban is removed You'd have to bind mode - "% -b" [namespace current]::banRemoval and track either only the bans the bot placed, or all of the bans on each channel. It would require building anoth...
by Get_A_Fix
Thu Jun 16, 2016 9:40 pm
Forum: Script Requests
Topic: enforce bans / kicks on all common channels
Replies: 21
Views: 22791

Instead of {return} should be continue What's the point to iterate all channels and kick the user matching the ban mask, when the ban was placed just on a single channel? You know the user can return on the channel he/she was kicked but not banned, right? Also, you know about the enforcebans channe...
by Get_A_Fix
Thu Jun 16, 2016 9:38 pm
Forum: Script Requests
Topic: enforce bans / kicks on all common channels
Replies: 21
Views: 22791

Sure. I didn't know that's what you wanted. There are two ways to approach this, adding a server ban (so your @ and non-bot Ops can remove the ban), or an internal ban (which has to be manually removed from the bot). For the internal ban, read the ~/eggdrop/doc/tcl-commands.doc form on newchanban or...
by Get_A_Fix
Wed Jun 15, 2016 7:42 pm
Forum: Script Requests
Topic: enforce bans / kicks on all common channels
Replies: 21
Views: 22791

the default is like this only i dont know how to integrate it and make bot kick user from all common channels bind kick - "* *" msg_on_kick proc msg_on_kick {nick uhost handle chan target reason} { putserv "privmsg $target :Hello 05 $target you where kicked out from 02 $chan by 3 ( $...
by Get_A_Fix
Mon Jun 06, 2016 11:26 am
Forum: Scripting Help
Topic: TCL of google no longer works .. By FordLawnmower
Replies: 37
Views: 53008

in partyline error tcl [11:10] <JulieTh> [11:10:12] Tcl error [google]: invalid command name "checkUser" You can just change proc googleweb {nick host hand chan type search} { if {![checkUser $nick $chan]} {return} to proc googleweb {nick host hand chan type search} { if {![channel get $c...
by Get_A_Fix
Sun Jun 05, 2016 10:31 pm
Forum: Scripting Help
Topic: TCL of google no longer works .. By FordLawnmower
Replies: 37
Views: 53008

You'll want to start here ############################################################################################## proc googleweb {nick host hand chan type search} { if {![checkUser $nick $chan]} {return} and change this to ######################################################################...
by Get_A_Fix
Mon May 30, 2016 3:39 pm
Forum: Script Support & Releases
Topic: bad channel script
Replies: 2
Views: 8543

Arnold_X-P, you replied without giving any info or context to your post. All you've done is basically flooded the same code, but you didn't use the code tags. There's even a Code Button in the reply box. Please use this as it make use of syntax arrangement (which can in turn be useful to find missin...
by Get_A_Fix
Wed May 25, 2016 7:52 pm
Forum: Script Support & Releases
Topic: YoutubeTitle V2 - Version 2.1 (22/08/16)
Replies: 30
Views: 59911

caesar --- and and where I download http.tcl 2.7.. thanks If you're using eggdrop, refer to my previous post re; installing tcl tcllib tcl-tls - json and http packages are included, you'd only require http.tcl if you were running windrop (with VPS deals being so cheap these days anyone can run the ...
by Get_A_Fix
Mon May 23, 2016 8:31 pm
Forum: Script Requests
Topic: Mass voice
Replies: 10
Views: 12777

Simo, for 1.6.21 there is support for isop, ishalfop, and isvoice, but I think what you're talking about are isadmin and isowner. These are currently not supported and require a small script that was released by Thommey, which can be found here and is called Arbitrary chanmodes (+q, +a) Once you hav...
by Get_A_Fix
Fri May 20, 2016 11:42 am
Forum: Script Support & Releases
Topic: YoutubeTitle V2 - Version 2.1 (22/08/16)
Replies: 30
Views: 59911

the bad thing is that im using windows ( windrop ) not eggdrop :/ So is it there another way to get those scripts ? how unfortunate. Have you looked at maybe installing a dualboot on your system, so linux is installed, or how about a VPS (Virtual Private Server) as there are many good and cheap pro...
by Get_A_Fix
Thu May 19, 2016 7:29 pm
Forum: Script Support & Releases
Topic: YoutubeTitle V2 - Version 2.1 (22/08/16)
Replies: 30
Views: 59911

can you tell me from where can i download package require Tcl 8.5 package require http 2.7 package require tls package require json Use whatever package manager you have, yum, apt, synaptic, etc. For apt *drop sudo if you are in root*; sudo apt-get install tcl tcl8.5 tcl8.5-dev tcllib tcl-tls The j...