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

by cvanmeer
Mon Jan 24, 2011 5:51 pm
Forum: Scripting Help
Topic: inverted flags?
Replies: 1
Views: 2198

inverted flags?

Hello everyone, I am in need of assistance....I want to build a script that will message every user on join...the only catch is...the op's must not be msg'd so in stead of doing a bind join - * procname I would need something like an inverted flag like bind join -o * procname is that possible someho...
by cvanmeer
Thu Dec 16, 2010 1:23 am
Forum: Scripting Help
Topic: Execute script commands from another script
Replies: 3
Views: 3227

Thx lads
by cvanmeer
Wed Dec 15, 2010 12:44 pm
Forum: Scripting Help
Topic: Execute script commands from another script
Replies: 3
Views: 3227

Execute script commands from another script

Hi all, Situation: 2 scripts, first script has a trigger !a that performs an action. Second script has trigger !b that performs an action. They are both seperate scripts (e.g. a.tcl and b.tcl) Now I want to create a new script (e.g. c.tcl) and set a trigger !c that will execute !a and !b. Is that po...
by cvanmeer
Wed Dec 15, 2010 8:03 am
Forum: Script Support & Releases
Topic: Problem with getchanidle in combination with aidle.tcl
Replies: 2
Views: 4411

Thank you.
I've combined my script with a RAW 319 binding to check the 'complete' idle time. It's now working exactly as I planned :)
by cvanmeer
Fri Dec 10, 2010 8:37 pm
Forum: Script Support & Releases
Topic: Problem with getchanidle in combination with aidle.tcl
Replies: 2
Views: 4411

Problem with getchanidle in combination with aidle.tcl

Hi all, I am trying to use the aidle.tcl script. So I set the maxidle to 2 hours...so after 2 hours of idle time of the user in the channel, the user should be kicked. But it's not working the way I supposed to. It seems that the getchanidle is not the same as the WHOIS $nick $nick. When I restart t...
by cvanmeer
Sun May 16, 2004 5:33 am
Forum: Archive
Topic: Restrictive timer
Replies: 4
Views: 1219

thx..that did the trick :)
I owe you one

Chrizz
by cvanmeer
Fri May 14, 2004 3:39 pm
Forum: Archive
Topic: Restrictive timer
Replies: 4
Views: 1219

Thx for your reply.

I've tried to implement your example, but it seems it doesn't work.
It seems to skip the first part and go right into the second part, not checking for the 60 seconds.

I've tried some stuff, but it didn't work out for me...

Any ideas how to fix it?

gr.

Chris
by cvanmeer
Thu May 13, 2004 1:51 pm
Forum: Archive
Topic: Restrictive timer
Replies: 4
Views: 1219

Restrictive timer

Hi all, I have a question. I have this command that will retrieve a certain server status from a webpage and report it on the channel. But what I want is to put a restrictive timer on it, so the command (!status) can only be used once every one minute. And if someone triggers the command within that...
by cvanmeer
Sun Mar 07, 2004 5:16 am
Forum: Archive
Topic: Need a lil help with this tcl script
Replies: 15
Views: 3538

what would you have to change in this script to respond to multiple words?
by cvanmeer
Sat Mar 06, 2004 5:27 am
Forum: Archive
Topic: Grab 2 lines from WWW. Not working so good :S
Replies: 0
Views: 1320

Grab 2 lines from WWW. Not working so good :S

Hi guys, I want to strip some data from a webpage. Now the problem is, the data I want, is always in de the same line, but not in the exact same place at all times. My problems concerns 2 lines: Line 1: <tr><td bgcolor=#B8C5E2 align=right> </td><td bgcolor=#C9D3E9>Total number of page views up till ...
by cvanmeer
Fri Mar 05, 2004 3:57 am
Forum: Archive
Topic: Write out userlist on a specific channel every x minutes
Replies: 10
Views: 3453

this part:

Code: Select all

$fXML = file_get_contents(
gives an error:

Code: Select all

Fatal error: Call to undefined function: file_get_contents() in /var/www/html/xml/users.php on line 10
Just to mention it. Not TCL related at all

gr.

Chrizz
by cvanmeer
Mon Feb 09, 2004 4:17 pm
Forum: Archive
Topic: lil` help or mega help
Replies: 7
Views: 1567

in the tcl script: find for !kick and replace it with .k
it's that simple

you'll find the !kick near a 'bind' commando
for example:

Code: Select all

bind pub - !kick pub:kick
or something like that. otherwise find a tutorial for making tcl eggdrop scripts (try www.suninet.nl)

Chrizz
by cvanmeer
Mon Feb 09, 2004 8:55 am
Forum: Archive
Topic: Simple Coding Help Please
Replies: 5
Views: 1493

Try this code:

Code: Select all

bind pub - hello pub:hello 
proc pub:hello {nick host handle chan text} { 
        puthelp "PRIVMSG $chan :Hello $nick" 
} 
putlog "Response Script Loaded" 
by cvanmeer
Mon Feb 09, 2004 3:34 am
Forum: Archive
Topic: Help about regexp syntax
Replies: 6
Views: 1704

here is a lil thingie to help you get started. set lookup [open "|/bin/grep -R #TINGIE YOU WANT TO SEARCH FOR# $arg"] while {![eof $lookup]} { catch {set result [gets $lookup]} putserv "PRIVMSG $nick :$result" } catch {close $lookup} return 1 hope it helps. gr. Chris
by cvanmeer
Wed Jan 28, 2004 8:25 pm
Forum: Archive
Topic: ServerCheck script
Replies: 5
Views: 2145

thank you!
it worked