Quote:
Originally Posted by Diegorkable
Nvm I fixed it by my own, I just used the function get_players instead, and it worked, for some wierd reason.
|
Here's what you were doing wrong
get_user_name(g_bIsReady[i], playername, 31)
->
get_user_name( i, playername, 31 )
Otherwise you were putting in a boolean for the first parameter, and I'm not sure why you didn't get a tag mismatch error.
__________________