Dont understand it good, but
@
PHP Code:
for(new i=0; i < iCount; i++)
{
index = szPlayers[i]
}
// ur code
is wrong, You are saving the last id that has been saved.
What this piece of code means is that your running true all players id's but it will only go trough that piece of code, once you closed it you will just use the last saved id.
Hope im a little clear
so it will be
PHP Code:
for(new i=0; i < iCount; i++)
{
index = szPlayers[i]
switch(iRandomNum) {
case 0: {
set_user_gravity(index, float(gravity))
client_print(0, print_chat, "Everybody Can Fly!")
}
}
// and on
}
__________________