mIRC Homepage
Posted By: Orobas edit to help script to avoid ops - 06/02/19 12:16 PM
Looking to edit simple ctcp version on join help channel so that it ignores the ops.

Code:
on *:JOIN:#help: {
  set %.ch $chan
  CTCP $nick VERSION
  /notice $nick ctcp version was made so we can be prepared for client based questions on usage and commands.
}
on 1:CTCPREPLY:VERSION*:/onotice #help $nick is using IRC client: $2-
Posted By: Raccoon Re: edit to help script to avoid ops - 06/02/19 01:56 PM
The main trick is knowing how long it takes for an op to become opped after they've joined, so your script would have to wait at least that long to give them a chance to op up.

You'll create a queue of nicknames that you've stacked up to VERSION and then work through that queue after the minimum time has elapsed. A good idea is to simply reset the wait-timer in case of heavy join activity, netsplits, or abusive part/join behavior. If the queue list exceeds say 5 or 10 users, then dump it and set a 5 minute cooldown ignore.

As you work through this queue of nicknames, you check if they are '(%nick !isop #help)' before versioning them, otherwise skip and try the next name in the queue if any.
Posted By: Orobas Re: edit to help script to avoid ops - 06/02/19 02:11 PM
I've got it Raccoon smile
Thanks for the ideas

Code:
on *:JOIN:#help: {
  set %.ch $chan
  if ($nick isop $chan) { halt }
  else if ($nick !isop $chan)
  .timer 1 3 CTCP $nick VERSION
}
on 1:CTCPREPLY:VERSION*:/onotice #help $nick is using IRC client: $2- | /notice $nick ctcp version was made so we can be prepared for client based questions on usage and commands. 
© mIRC Discussion Forums