12.02.2010, 18:12
I Know how to make a RCON command,
I Know how to make a Normal command.
I wanna make a Giveteam command that i can give Other players a Team.
This command i have:
But with this code i can give only myself a team.
I Know how to make a Normal command.
I wanna make a Giveteam command that i can give Other players a Team.
This command i have:
pawn Код:
if (strcmp("/giveteam", cmdtext, true, 10) == 0)
{
if (IsPlayerAdmin(playerid))
{
SetPlayerTeam(playerid, 1000);
return 1;
}
}