13.08.2012, 20:14
what PlayerInfo[playerid][pMember] is Medic Job?
edit: from the code I see that pMember 3 is Medic job, can you tell me why the hell do you have at the top of your command this?
so if player IS medic it will tell him that he is not medic? change it to
as the guy in first (?) reply said
edit: from the code I see that pMember 3 is Medic job, can you tell me why the hell do you have at the top of your command this?
Код:
if(PlayerInfo[playerid][pMember] == 3) { SendClientMessage(playerid, COLOR_LIGHTRED, "You are not a part of SD-EMS!!"); return 1; }
pawn Код:
if(PlayerInfo[playerid][pMember] != 3)
{
SendClientMessage(playerid, COLOR_LIGHTRED, "You are not a part of SD-EMS!!");
return 1;
}