Quote:

1st one:
on *:text:!beer*:#: {/.describe $chan hands $2 a beer }

ok i want it to give a beer to a random person if they dont type anything after !beer


Use:
Code:
on *:text:!beer*:#: {
  if ($2) {
    .describe $chan hands $2 a beer
  }
  else .describe $chan hands $nick(#,$rand(1,$nick(#,0)) a beer
}



Quote:

2nd one:
on *:text:op me*:#: {/.describe $chan if u ask for that one more time i will kick you and than ban you from ever coming in here }

ok as u can see it dont kick them if they say op me agian i want this to change right now i have to manualy do it i want the bot to give them a warnig and then kick them


Use:
Code:
on *:text:op me*:#: {
  if ($level($address($nick,2)) != warn && $level($address($nick,2)) != ban) {
    .describe $chan If u ask for that one more time i will kick you and then ban you from ever coming in here.
    alevel warn $address($nick,2)
  }
  else {
    ban -k $chan $address($nick,2)
    alevel ban $address($nick,2)
  }
}


Invision Support
#Invision on irc.irchighway.net