22.07.2013, 18:53
Quote:
ScRipTeRi: if (strcmp("/myteam", cmdtext, true, 10) == 0) { if(pTeam[playerid] == TEAM_POLICE){ SendClientMessage(playerid,COLOR_BLUE,"You're a police officer"); return 1; } if(pTeam[playerid] == TEAM_CRINIMALS){ SendClientMessage(playerid,COLOR_RED,"You're a crinimal"); return 1; } |
Quote:
FishyZ: new pTeam[MAX_PLAYERS]; #define TEAM_wCRINIMALS 0 #define TEAM_POLICE 1 |
pawn Код:
#define Criminals 0
#define Police 1
pawn Код:
new pTeam[MAX_PLAYERS];
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/myteam", cmdtext, true, 10) == 0)
{
if(pTeam[playerid] == 0)
{
SendClientMessage(playerid, -1, "You are a criminal");
return 1;
}
if(pTeam[playerid] == 1)
{
SendClientMessage(playerid, -1, "You are a police officer");
return 1;
}
}
if (strcmp("/police", cmdtext, true, 10) == 0)
{
pTeam[playerid] = 1;
return 1;
}
if (strcmp("/criminal", cmdtext, true, 10) == 0)
{
pTeam[playerid] = 0;
return 1;
}
return 0;
}