Hehe ok, I assume you want to catch the event
Server cvar "mp_timelimit" = "xx"
Anyway, register_logevent works like this (if I remember correctly):
register_logevent("Func to be called", number of total arguments of the event, argument specifications).
AFAIK, every " char indicates a new argument. That would mean that argument 0 is "Server cvar" and argument 1 is "mp_timelimit".
You might want to try this:
Code:
register_logevent("cvar_changed",4,"0=Server cvar", "1=mp_timelimit")
I will test it as soon as I will have access to a running Half Life install.
__________________