if(strcmp(cmd, \"/jogsimutat\", true) == 0){if(!strlen(tmp)){SendClientMessage(playerid, COLOR_GRAD1, \"Használat: /jogsimutat [iD]\");return 1;}giveplayerid = ReturnUser(tmp);tmp = strtok(cmdtext, idx);if(PlayerInfo[playerid][Jogsi] == 1){format(string, sizeof(string), \" Megmutattad a jogsidat %s!\", giveplayer,giveplayerid);SendClientMessage(playerid, COLOR_GRAD1, string);format(string, sizeof(string), \" %s Engedélye: Van!\", giveplayer);SendClientMessage(giveplayerid, COLOR_GRAD1, string);}else{format(string, sizeof(string), \" Megmutattad a jogsidat %s!\", giveplayer,giveplayerid);SendClientMessage(playerid, COLOR_GRAD1, string);format(string, sizeof(string), \" %s Engedélye: Nincs!\", giveplayer);SendClientMessage(giveplayerid, COLOR_GRAD1, string);}return 1;}
if(strcmp(cmd, \"/jogsimutat\", true) == 0){tmp = strtok(cmdtext, idx);giveplayerid = ReturnUser(tmp);if(!strlen(tmp)){SendClientMessage(playerid, COLOR_GRAD1, \"Használat: /jogsimutat [iD]\");return 1;} else if(giveplayerid==INVALID_PLAYER_ID) {SendClientMessage(playerid, COLOR_GRAD1, \"Hibás játékos id!\");return 1; }if(PlayerInfo[playerid][Jogsi] == 1){format(string, sizeof(string), \" Megmutattad a jogsidat %s!\", giveplayer,giveplayerid);SendClientMessage(playerid, COLOR_GRAD1, string);format(string, sizeof(string), \" %s Engedélye: Van!\", giveplayer);SendClientMessage(giveplayerid, COLOR_GRAD1, string);}else{format(string, sizeof(string), \" Megmutattad a jogsidat %s!\", giveplayer,giveplayerid);SendClientMessage(playerid, COLOR_GRAD1, string);format(string, sizeof(string), \" %s Engedélye: Nincs!\", giveplayer);SendClientMessage(giveplayerid, COLOR_GRAD1, string);}return 1;}