20.08.2017, 09:28
Код:
if(dialogid == DIALOG_CARBUY2) { if(response) { new num = listitem + 1; BuyCar[playerid] = num; if(GetPlayerCash(playerid) >= Stock[num][vPrice]) { if(Stock[num][vStock] > 0) { InsertCar(playerid,1,num); } else { new stringg[MAX_STRING]; format(stringg,sizeof(stringg),"Aceasta masina nu mai este disponibila in Dealership. Stoc epuizat.\nYou can't buy this vehicle from the dealership. Out of stock."); ShowPlayerDialog(playerid, DIALOG_NOSTOCK, DIALOG_STYLE_MSGBOX, "Out of stock", stringg, "Close",""); } } else return SendClientMessage(playerid, COLOR_GREY, "You don't have enough money to purchase this vehicle."); } return 1; }