04.03.2017, 17:39
Why I can not respond to orders if there is something wrong please correct
This is an order to sell a house
Thanks Before
This is an order to sell a house
PHP код:
CMD:jualrumah(playerid, params[])
{
new nama[MAX_PLAYER_NAME];
GetPlayerName(playerid, nama, sizeof(nama));
for(new i=0; i<sizeof(rInfo); i++)
{
if(rInfo[i][r_id]) continue;
if(IsPlayerInRangeOfPoint(playerid, 3,rInfo[i][r_x],rInfo[i][r_y],rInfo[i][r_z]))continue;
if(!strlen(rInfo[i][r_pemilik]))
if(!strcmp(rInfo[i][r_pemilik],nama,true))
{
rInfo[i][r_harga]=rInfo[i][r_harga]/2;
GivePlayerMoney(playerid, rInfo[i][r_harga]);
strmid(rInfo[i][r_pemilik], "", 0, MAX_PLAYER_NAME, MAX_PLAYER_NAME);
updateRumah(i);
saveRumah(i);
return 1;
}
return SendClientMessage(playerid,Warna_Merah,"Kamu bukan pemilik rumah ini");
}
return 1;
}