I'm trying to make an addon game ROULETTE.
I have this problem: I wish to have an alert is the number cosen by user is higher of 36 , or in any case not in the 0-36 range
This is what I did:
on *:text:!play*:#: {
if ($3 !isnum) { msg $chan You can only bet numerical values. | Halt }
if ($left($3,1) == $chr(45)) { msg $chan You can not use negative numbers $nick | halt }
if ($3 <= 0) && ($2 < 36) { msg $chan Please use a positive number. | halt }
if ($3 > 36) { msg $chan ALERT | halt }
What is wrong?
Thanks