I want to modify a script to log data only via UDP but not to a file.
I found out that the annoying messages were logged via:
Code:
log_message ("[Fly] successfully loaded.")
After searching a bit within the amxmodx directory, i get the file
amxmodx.inc and found on the AMX Mod X API this information:
Code:
native log_message(const message[], any:...);
Than i made a second instance of
log_message like...
Code:
native log_message_udp(const message[], any:...);
...and changed any
log_message within the script to
log_message_udp.
So for now, i think i need to modify the part with
any: but i dont know how.
The documentation doesn't help me a lot at this point.
Any hints?
Thanks in advance!
--
Best regards
Alex