LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   X-Chat script to enter a command every minute (https://www.linuxquestions.org/questions/programming-9/x-chat-script-to-enter-a-command-every-minute-224162/)

eam 08-29-2004 11:59 PM

X-Chat script to enter a command every minute
 
Does anyone have a script for X-Chat that will enter a command at set times (I need once a minute right now)?

DanTheKiwi 08-30-2004 12:23 AM

You could probably write one even if you don't know perl! Look at thier scripting documentation, it won't be hard at all to do.

eam 08-30-2004 03:25 AM

Ok, I started something, but I ran into some trouble. Using while (1) in my script killed X-Chat (not surprisingly)... what else could I do to make it keep checking if it's been a minute?

Here's what I have so far, I think the time part works but haven't been able to test it.

Code:

#!/usr/bin/perl -w

IRC::register("EveryMin", "1.0", "", "");

while (1) {
($sec, $min, $hour, $monthday, $month, $year, $weekday, $yearday, $isdaylight) = localtime(time);
if ($sec == 1) {
IRC::send_raw("whois smb3master\r\n");
}
}



All times are GMT -5. The time now is 08:09 PM.