POMOC[prodaja auta]

Započeo --Lood--, Oktobar 09, 2012, 15:38:51 POSLE PODNE

prethodna tema - sledeća tema

0 članova i 2 gostiju pregledaju ovu temu.

Scripta koju koristim : od 0

Opis problema:E vako kada igrac proda aauto, sve se lepo odradi(znaci auto se destroy, u scriptfiles od tog ID od vozila se promeni da je owned = 0, i owner = None, i igracu se namesti autokljuc = 999, ali medjutim kada igrac ponovo kupi auto opet sve lepo auto se stvori ispred salona, igrac dobije autokljuc sledeci slobodan ID auta, ali kada oce parkirat ili prodat nista se ne dogdja, a kada ga locira izbaci na farmu, pa ako znate do cega je? :s

Dio scripte:
if(dialogid == AKONTROLADA)
{
if(response)
{
if(!IsPlayerInRangeOfPoint(playerid, 10.0, 546.5853,-1272.7213,17.2482)) return SCM(playerid, ZUTA, "Moras biti kod autosalona");
new id = PlayerInfo[playerid][pAutoKljuc];
if(IsPlayerInVehicle(playerid, id))
{
if(PlayerInfo[playerid][pAutoKljuc] == 999) return SCM(playerid, COLOR_GREY, "Nemas auto!");
new string[128];
format(string, sizeof(string), "None");
strmid(CarInfo[id][cName], string, 0, strlen(string), 255);
new string2[128];
format(string2, sizeof(string), "None");
strmid(CarInfo[id][cOwner], string2, 0, strlen(string2), 255);

new file4[40];
format(file4, sizeof(file4), CBPATH, id);
new INI:File = INI_Open(file4);
INI_SetTag(File,"data");
INI_WriteInt(File,"cModel", 0);
INI_WriteInt(File,"cOwned", 0);
INI_WriteInt(File,"cPrice", 0);

INI_WriteInt(File,"cLocked", 0);
INI_WriteFloat(File,"cEntranceX", 0);
INI_WriteFloat(File,"cEntranceY", 0);
INI_WriteFloat(File,"cEntranceZ", 0);
INI_WriteFloat(File,"cEntranceA", 0);
INI_WriteInt(File,"cWorld", 0);
INI_WriteString(File,"cName", CarInfo[id][cName]);
INI_WriteInt(File,"cColorTwo", 0);
INI_WriteInt(File,"cColorOne", 0);
INI_WriteInt(File,"cVirWorld", 0);
INI_WriteString(File,"cOwner", CarInfo[id][cOwner]);
INI_Close(File);
DestroyVehicle(GetPlayerVehicleID(playerid));

PlayerInfo[playerid][pCash] = CeneVozila(id)/2;
GivePlayerMoney(playerid, CeneVozila(id)/2);
PlayerInfo[playerid][pAutoKljuc] = 999;
SCM(playerid, COLOR_YELLOW, "Prodao si auto u pola cijene!");
SacuvajAuta(id);

}
}
}


Slika/video: ako treba i to cu dodat....