First problem
I never understood how comes this. For example, if a user connects with a fps_max more than 101 then it will appear a message. I tried this but doesn't work:
Code:
public client_putinserver(id)
{
new fpsmax[11];
get_user_info(id, "fps_max", fpsmax, 10);
if(fpsmax > 101)
{
client_print(id, print_chat, "Watch out because you have your fps_max more than 101.");
}
etc....
But it says something like undefined index or array must be indexed.
Second problem
What is the difference between
new g_Variable[33] and new bool:g_Variable[33] ? Are there any other types?
Thanks for the support.