tessék szerombol a személyi.
if(strcmp(cmd,\"/személyi\",true)==0 || strcmp(cmd,\"/szemelyi\",true)==0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, \"Használat: /személyi [playerid/PartOfName]\");
return 1;
}
giveplayerid = ReturnUser(tmp);
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
if (ProxDetectorS(8.0, playerid, giveplayerid))
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new age = PlayerInfo[playerid][pAge];
new housekey = PlayerInfo[playerid][pPhousekey];
format(string, sizeof(string), \"|__________ %s Személyi igazolványa __________|\", sendername);
SendClientMessage(giveplayerid, COLOR_WHITE, string);
format(string, sizeof(string), \"** Név: %s\", sendername);
SendClientMessage(giveplayerid, COLOR_GREY, string);
if(PlayerInfo[playerid][pSex] == 1)
{ SendClientMessage(giveplayerid,COLOR_GREY,\"** Nem: Férfi\"); }
else if(PlayerInfo[playerid][pSex] == 2)
{ SendClientMessage(giveplayerid,COLOR_GREY,\"** Nem: Nõ\"); }
format(string, sizeof(string), \"** Kor: %d\", age);
SendClientMessage(giveplayerid, COLOR_GREY, string);
format(string, sizeof(string), \"** Házszám: %d\", housekey);
SendClientMessage(giveplayerid, COLOR_GREY, string);
format(string, sizeof(string), \"* %s megmutatta a személyi igazolványát neked.\", sendername);
SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string);
format(string, sizeof(string), \"* Megmutattad a személyi igazolványodat neki: %s.\", giveplayer);
SendClientMessage(playerid, COLOR_LIGHTBLUE, 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;
}
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: - Ne duplaposztolj, használd a szerkesztés gombot!
- És máskor ilyet rakj Code-ba!