i've searched but didn't get any results close to this.
it's quite simple, instead of:
PHP Code:
new name[32]
get_user_name(id,name,31)
use:
PHP Code:
new name[32] = get_user_name(id)
that would be better for making simple messages like:
PHP Code:
client_print(0,print_chat,"%s has connected to the server.",get_user_name(id))
is it possible? thanks.