Hi all,
i have a safehost code that i use for a long time it was working great when i had mIRC 6.14 & Vincula 4.9.
But a few time ago, i have installed mIRC 6.16 and Nuclear, and it stopped working as it should work, i also now use mIRC 6.16 with Vincula NGen 1.6.2, same problem
I use it to prevent my hosts (i.e with host access added) to give hammer when i'm not there, usually, it should take off their hammer when they come in the room.
here is the code i use :
#safehost on
on *:op:#: {
 if ($nick != $me) {
  sockwrite -nt msn.server.* mode $chan -o $opnick
 }
}
on *:owner:#: {
 if ($nick != $me) {
  sockwrite -nt msn.server.* mode $chan -q $opnick
 }
}
on *:Deop:#: {
 if ($nick != $me) {
  mode $chan +o $opnick
 }
}
#safehost end
Someone gave me this code but it doesn't change anything:
on *!:op:*: { mode # -o $opnick }
on *!:owner:*: { mode # -q $opnick }
on *!:Deop:*: { mode # +o $opnick }
Any idea how to fix it please ??
Thank you