17.03.2015, 15:27
It isn't right, where did you even get that?
If you want to send a game text to the server helpers, then loop through the players. Even if you code worked, it would send the game text to only one player. Example:
* Note that, that isn't a copy/paste code, it's only an example.
If you want to send a game text to the server helpers, then loop through the players. Even if you code worked, it would send the game text to only one player. Example:
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(aUserInfo[i][user_admin_level] => P_LEVEL_HELPER)
{
GameTextForPlayer(i, "~r~New Report", 5000, 3);
}
}