Pass the string directly no need for reformatting...
PHP Code:
console_print(players[i], "%s", szOutput)
PHP Code:
console_print(players[i], szOutput)
Also no need for using loop to print for each individual player just use index as 0 for all and remove the loops.
Also you can use bitsum values for print destination will be be more easy and reliable, same goes for notify type.
PHP Code:
enum _:ePrintDestination (<<=1) {
PRINT_CHAT = 1,
PRINT_CONSOLE
}
__________________