mIRC Home    About    Download    Register    News    Help

Print Thread
#242919 20/09/13 08:48 PM
Joined: Aug 2013
Posts: 22
A
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Aug 2013
Posts: 22
Hi so I have this Command that everytime someone do !pokeball they randomly catch a pokemon... there is a Floodtimer on it. but What I would like to do is. Set it that Mod can still use it whenever they want. as of right now mods have to wait every 5 minutes like everyone else. But I want the mods can use it whenever. they don't have to worry about the floodtimer do anyone know how to do this?

Code:
on *:text:!Pokeball:#: {
  if ((%floodpokeball) || ($($+(%,floodpokeball.,$nick),2))) { return }
  set -u10 %floodpokeball On
  set -u300 %floodpokeball. $+ $nick On
  var %pokemon $read(pokemon.txt)
  var %pokemone $read(pokemonE.txt)
  msg # %pokemonE 
}

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
Code:
on *:text:!Pokeball:#: {
  if ($nick !isop #) && ((%floodpokeball) || ($($+(%,floodpokeball.,$nick),2))) { return }
  set -u10 %floodpokeball On
  set -u300 %floodpokeball. $+ $nick On
  var %pokemon $read(pokemon.txt)
  var %pokemone $read(pokemonE.txt)
  msg # %pokemonE 
}


Link Copied to Clipboard