how it is assumed that I have to do?
PHP Code:
enum _:PlayerData
{
P_Name[32],
P_Connected,
...
}
new g_player_data[33][PlayerData];
public example( id )
{
client_print( id , print_chat , "The var g_player_data[id][P_Name] is %s", g_player_data[id][P_Name][0] == EOS ? "empty" : "not empty" );
}
Error: array must be indexed (variable "-unknown-")