mIRC Home    About    Download    Register    News    Help

Print Thread
#252175 26/03/15 02:08 PM
N
Nathanael
Nathanael
N
How do I fix this?


on *:join:#:{
set timer[Cat] 0 10
set -u1 %rand $r(1,7)
if (%rand == 1) { msg $chan Meow }
if (%rand == 2) { msg $chan Purr! }
if (%rand == 3) { msg $chan *Licks myself clean* }
if (%rand == 4) { msg $chan *Scratches my paws on the scratching post* }
if (%rand == 5) { msg $chan *Yawns* }
if (%rand == 6) { msg $chan *Curls up into a ball and falls asleep* }
if (%rand == 7) { msg $chan *Rolls over onto my belly* }
}

Joined: Dec 2008
Posts: 1,483
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,483
Put it on the Recycle Bin.

Code:
on !*:join:#: {
  var %rand = $rand(1,7)
  if (%rand == 1) { msg $chan Meow }
  if (%rand == 2) { msg $chan Purr! }
  if (%rand == 3) { msg $chan *Licks myself clean* }
  if (%rand == 4) { msg $chan *Scratches my paws on the scratching post* }
  if (%rand == 5) { msg $chan *Yawns* }
  if (%rand == 6) { msg $chan *Curls up into a ball and falls asleep* }
  if (%rand == 7) { msg $chan *Rolls over onto my belly* }
}

Last edited by westor; 26/03/15 02:26 PM.
Joined: Dec 2013
Posts: 771
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 771
It looks like he wants an infinite timer to evaluate after 10 seconds with a random message. (He probably doesn't want it to go for infinity, but that's what he put in the original code)
Code:
on !*:join:#: {
  timerCat 0 10 catmessage $chan
}

alias catmessage { 
  var %rand = $rand(1,7)
  if (%rand == 1) { msg $1 Meow }
  elseif (%rand == 2) { msg $1 Purr! }
  elseif (%rand == 3) { msg $1 *Licks myself clean* }
  elseif (%rand == 4) { msg $1 *Scratches my paws on the scratching post* }
  elseif (%rand == 5) { msg $1 *Yawns* }
  elseif (%rand == 6) { msg $1 *Curls up into a ball and falls asleep* }
  elseif (%rand == 7) { msg $1 *Rolls over onto my belly* }
}

N
Nathanael
Nathanael
N
That is not working

Joined: Dec 2013
Posts: 771
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 771
Then look at something other that is causing errors, maybe bracket mismatches in your other codes? The one I gave you will work as intended assuming everything else is.

Last edited by Khaled; 29/03/15 01:42 PM.

Link Copied to Clipboard