Hey,
i have a little game script and want that the game is automatically active (when i have written !on) every 10min WITHOUT a user have to type anything, everything in the game script works great when i do it with the "on *:text:!test:#:" command but that isnt what i want.

So i tried to make timers and a game alias:

Code:
on *:text:!on:#: {
  .timer.game 0 600 %gamealias
}
on *:text:!off:#: {
  .timer.game off
}

alias %gamealias {
  set -n %word $read(wordlist.txt,n)
  msg # Game: %word
}



That is just a example, but it dont work, mirc dont even setting up the timer! When i remove the "%" at the alias mirc loads the timer but dont give any message!

Its just really odd - someone can explain me what i do wrong?


Tldr:
Timers dont working for me when i use "%" in the script / alias title.


Last edited by Krawalli; 11/12/14 06:49 PM.