Quote:
Originally Posted by ConnorMcLeod
If you want to always have strings filled (i doubt you need, that's why you have to clearly explain why you want this) :
PHP Code:
new g_szUsersFlags[32][27];
public client_infochanged(id)
{
if( is_user_connected(id) && !is_user_bot(id) )
{
get_flags(get_user_flags(id), g_szUsersFlags[id], charsmax( g_szUsersFlags[] ));
}
}
|
It its perfect, thank you so much, I did not know about get_flags native.