I'm using a timer to send a message. It's a simple timer with some $calc involved...

example:

Code:
.timerMinuteLeft 1 $calc($3 * 60 - 60) msg # One minute remaining...
.timerFinished 1 $calc($3 * 60) msg # Game Over.
.timerWinner 1 $calc($3 * 60 + 3) msg # WINNER!! - $read(players.txt)


this works up until the last timer. Which outputs: "WINNER!! - "
as well as */msg: insufficient parameters


Tried creating a var to read the file and then replacing the $read with the %varname but that didn't work either. Ideas?