01.06.2009, 14:49
Is there a way to set a gravity only for a player, or a CUSTOM function.
I.G: There isn't a function to send a client message for a team, but Are custom funtions like, SendCopMessage:
I.G: There isn't a function to send a client message for a team, but Are custom funtions like, SendCopMessage:
Код:
SendCopMessage(color, text[]) {
for(new i = 0; i < MAX_PLAYERS; i ++) {
if(IsPlayerConnected(i)) {
if (gTeam[i] == TEAM_COPS) {
SendClientMessage(i, color, text);
}
}
}
return 1;
}


