It's supposed to send messages with a 15-second delay

V1:

Code:
ON *:JOIN:#: {
  %next = $ctime + 15
  if (%next < $ctime) {
    msg $nick Hello
    %next = $ctime + 15
  }
}


V2:

Code:
ON *:JOIN:#: {
  if (%next < $ctime) {
    %next = $ctime + 15
    msg $nick Hello
  }
}


Thank you

Last edited by joseluupp; 08/07/18 12:40 PM.