Originally Posted By: dude22072

(also for something else i'm doing do you know how to make a command only a certain user can use?)

yes,
only 1 user:
Code:
on *:TEXT:!command*:#: {
  if ($nick == myusername ) {
    msg # gotta have limitations
  }
}

mod: only:
Code:
on *:TEXT:!command*:#: {
  if ($nick isop #) return
    msg # moderator only command
}

list of users: (note: must be able to write these users with something like this:
Code:
on *:TEXT:!reg add*:#: {
  if ($nick !isop #) {
    write reglist.txt $$3
    msg $chan $$3 has been added to the regular list! 
  }

)

Code:
on *:TEXT:!to*:#: {
  if ($read(reglist.txt,nw,$nick)) {
    msg $chan timing out $$2 for $$3 seconds
    msg $chan .timeout $$2 $$3
  }
}

smile