mIRC Home    About    Download    Register    News    Help

Print Thread
#252175 26/03/15 02:08 PM
Joined: Nov 2014
Posts: 21
N
Ameglian cow
OP Offline
Ameglian cow
N
Joined: Nov 2014
Posts: 21
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,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
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.

Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
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* }
}


Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net
Joined: Nov 2014
Posts: 21
N
Ameglian cow
OP Offline
Ameglian cow
N
Joined: Nov 2014
Posts: 21
That is not working

Joined: Dec 2013
Posts: 779
N
Hoopy frood
Offline
Hoopy frood
N
Joined: Dec 2013
Posts: 779
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.

Nillens @ irc.twitch.tv
Nillen @ irc.rizon.net

Link Copied to Clipboard