theres no :end on that script
so you cant /goto end
try:
alias rules {
if ($1 !isop #yourchannelhere) { goto end }
msg #yourchannelhere Rules are:
msg #yourchannelhere 1) rule 1
msg #yourchannelhere 2) rule 2
:end
}
on *:TEXT:!rules*:#channel:{
rules $nick
}
or if you wanted just 1 person to see it you could use
//notice command
on *:TEXT:!rules*:#channel: {
notice $nick rules:
notice $nick 1) rule 1
notice $nick 2) rule 2
}