If I did something like this. In this order.
Code:
new Temp[33]
get_user_name(id,Temp,32);
client_print(id,print_chat,"Your name is: %s",Temp);
get_user_name(SomeOtherID,Temp,32);
client_print(id,print_chat,"Your name is: %s",Temp);
Is there any chance that it could display the same name twice?
__________________