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

by Coixi
Mon Nov 27, 2006 5:25 am
Forum: Script Requests
Topic: Script for checking Quakenet channel modes
Replies: 3
Views: 2648

"WTF" is what i wanna say now.

I can't even count how many different 'variations' of getchanmode + string match check i tried and none of them worked. This one does :)

Thanks!
by Coixi
Mon Nov 27, 2006 3:33 am
Forum: Script Requests
Topic: Script for checking Quakenet channel modes
Replies: 3
Views: 2648

Script for checking Quakenet channel modes

Hi, I'd like if someone could tell me how to check if +c is on in Quakenet channel. I've tried getchanmode <channel> and channel get <name> <setting> so far - without any luck. What i've understood after reading this forum quite a bit is that Quakenet doesn't follow RFC and won't report /WHO nor cha...
by Coixi
Wed Nov 15, 2006 3:01 pm
Forum: Scripting Help
Topic: Script works in shell but not as a proc
Replies: 12
Views: 7903

Heya,

How do i make sure that those timers won't become duplicate when i .rehash. I've seen a very simple script for that but after two hours of hardcore googling i haven't found it.

It was a if {} with some info_exists stuff but i just cannot find it.
by Coixi
Sun Nov 12, 2006 1:11 pm
Forum: Scripting Help
Topic: Script works in shell but not as a proc
Replies: 12
Views: 7903

Works like a charm, thanks.

Is utimer/timer best way to keep this whole proc running?

Or would you suggest something else. I want this to run in a loop, when everything is foreached -> it starts again. But i don't know any good way to do so.
by Coixi
Sun Nov 12, 2006 12:28 pm
Forum: Scripting Help
Topic: Script works in shell but not as a proc
Replies: 12
Views: 7903

Well, i did that but now the script sends the last message of $messages array to last channel in $channels array. Could you place the utimer in there in a way that it works like with after? Like this: PRIVMSG msg1 #chan1 (11:55:44) PRIVMSG msg1 #chan2 (11:55:54) PRIVMSG msg1 #chan3 (11:56:04) PRIVMS...
by Coixi
Sun Nov 12, 2006 6:51 am
Forum: Scripting Help
Topic: Script works in shell but not as a proc
Replies: 12
Views: 7903

Script works in shell but not as a proc

Hello, i've a simple double-foreach script which works nicely when it's runned in shell but when i put it inside proc { }, it won't work anymore. Here's the script: set channels "#chan1 #chan2 #chan3" set messages "msg1 msg2 msg3" foreach message $messages { foreach channel $chan...