mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2015
Posts: 19
F
Pikka bird
OP Offline
Pikka bird
F
Joined: Jul 2015
Posts: 19
I don't know what I did but this command suddenly doesn't work anymore. I did try to "fix" a few things in here but I don't know what I did lol, thanks in advance

Code:
on *:TEXT:!latestvid:#: {
  if ($nick isop #) {
    msg # /me Check out the most recent YouTube video! 
    .timerAnnouncer 6 1800 /me Check out the most recent YouTube video!
  }
  else {

  }
}

Joined: Feb 2015
Posts: 243
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Feb 2015
Posts: 243
1800 seconds is a 30 minutes laugh Maybe you didnt wait long enough for it to trigger ??

Joined: Sep 2014
Posts: 52
Babel fish
Offline
Babel fish
Joined: Sep 2014
Posts: 52
Your timer isn't messaging a channel.
Code:
on *:TEXT:!latestvid:#: {
  if ($nick isop #) {
    msg # /me Check out the most recent YouTube video! 
    .timerAnnouncer 6 1800 msg # /me Check out the most recent YouTube video!
  }
  else {

  }
}

Joined: Jul 2006
Posts: 4,149
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,149
His timer is using the /me command, which is equivalent to /describe $chan, which is valid here.
Now, you might still be right that since he used /msg $chan /me, he probably want that as well in the timer.

@OP:you should have indicated what was the problem specifically, saying "it's not working" is vague.

Last edited by Wims; 21/10/15 09:54 PM.

#mircscripting @ irc.swiftirc.net == the best mIRC help channel
Joined: Jul 2015
Posts: 19
F
Pikka bird
OP Offline
Pikka bird
F
Joined: Jul 2015
Posts: 19
Sorry, my problem is that after the instant message right after I send out the command it doesn't show up anymore, and yes I am aware that its set to 30 mins and I've put it to 1 minute before but still hasn't responded.

Joined: Feb 2015
Posts: 243
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Feb 2015
Posts: 243
ok then the problem is what @paper0plastic said

Joined: Jul 2015
Posts: 19
F
Pikka bird
OP Offline
Pikka bird
F
Joined: Jul 2015
Posts: 19
oh i just noticed this and it finally worked, thank you!


Link Copied to Clipboard