if(strcmp(cmd,\"/jogosítvány\",true)==0 || strcmp(cmd,\"/jogsi\",true)==0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, \"Használat: /jogsi [playerid/PartOfName]\");
return 1;
}
giveplayerid = ReturnUser(tmp);
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
if (ProxDetectorS(8.0, playerid, giveplayerid))
{
if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, \"Magadnak nem tudod megmutatni,használd a /licenses parancsot!\"); return 1; }
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new text1[20];
new text2[20];
new text4[20];
new text5[20];
if(PlayerInfo[playerid][pCarLic]) { text1 = \"Van\"; } else { text1 = \"Nincs\"; }
if(PlayerInfo[playerid][pFlyLic]) { text4 = \"Van\"; } else { text4 = \"Nincs\"; }
if(PlayerInfo[playerid][pBoatLic]) { text2 = \"Van\"; } else { text2 = \"Nincs\"; }
if(PlayerInfo[playerid][pGunLic]) { text5 = \"Van\"; } else { text5 = \"Nincs\"; }
format(string, sizeof(string), \"|__________ %s Jogosítvány __________|\", sendername);
SendClientMessage(giveplayerid, COLOR_WHITE, string);
format(string, sizeof(string), \"** Autó jogosítvány: %s.\", text1);
SendClientMessage(giveplayerid, COLOR_GREY, string);
format(string, sizeof(string), \"** Pilóta jogosítvány: %s.\", text4);
SendClientMessage(giveplayerid, COLOR_GREY, string);
format(string, sizeof(string), \"** Hajó jogosítvány: %s.\", text2);
SendClientMessage(giveplayerid, COLOR_GREY, string);
format(string, sizeof(string), \"* %s megmutatta a jogosítványát neked.\", sendername);
SendClientMessage(giveplayerid, COLOR_WHITE, string);
format(string, sizeof(string), \"* Megmutattad a jogosítványod neki: %s.\", giveplayer);
SendClientMessage(playerid, COLOR_WHITE, string);
}
else
{
SendClientMessage(playerid, COLOR_GREY, \" Nem vagy elég közel hozzá!\");
return 1;
}
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, \" Nincs fent az a játékos !\");
return 1;
}
}
return 1;
}
Bart: Majd máskor ilyet rakj Code-ba.