[HELP] /myteam problem.
#1

Quote:

if (strcmp("/myteam", cmdtext, true, 10) == 0)
{
if(pTeam[playerid] == POLICE){
SendClientMessage(playerid,COLOR_BLUE,"You're a police officer");
return 1;
}
if(pTeam[playerid] == CRINIMALS){
SendClientMessage(playerid,COLOR_RED,"You're a crinimal");
return 1;
}

It will always say You're a crinimal.

Quote:

new pTeam[MAX_PLAYERS];
#define TEAM_wCRINIMALS 0
#define TEAM_POLICE 1

Any help?
Reply
#2

@Bump
Reply
#3

Try this
pawn Код:
if (strcmp("/myteam", cmdtext, true, 10) == 0)
{
if(pTeam[playerid] == POLICE){
SendClientMessage(playerid,COLOR_BLUE,"You're a police officer");
return 1;
}
if(pTeam[playerid] == wCRINIMALS){
SendClientMessage(playerid,COLOR_RED,"You're a crinimal");
return 1;
}
You defined it "wCRINIMALS" and wrote it in the command "CRINIMALS". Anyway, it's criminals not crinimals.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)