Hey Everyone,
This has been a great help, I do have one question. Did anyone know out how to add the user level commands.
So right now I only have two options which is edit the script to have
This allowing anyone to use it
on $*:text:/^!(\S+)/:#:{
if ($readini(commands.ini,n,#,$regml(1))) msg # $v1
}
Or this allowing only ops
on $*:text:/^!(\S+)/:#:{
if ($nick !isop #) return
if ($readini(commands.ini,n,#,$regml(1))) msg # $v1
}
Is there a way when the op creates the command to say who can use it?