I need to get the server prints and show the output to the player. Like when a command is for a server console and cannot be used in-game. like:
PHP Code:
register_svcmd("Acc_put", "function");
output in serverconsole:
PHP Code:
sv_print("Hello World");
and showing to player:
PHP Code:
// get sv_print
client_print(id, print_console, "%s", sv_print);
How can i do this?