09.04.2009, 12:46
Hello! I'm trying to make car ownership and it sims that i'm stuck in a place.. The command..
Here is what i have get so far:
The problem is that it keep comming up that the car is not for sale! I testing with a car with vehid 404, but it dont work!
Here is what i have get so far:
pawn Код:
dcmd_buycar(playerid, params[])
{
new car;
new carid[256];
format(carid, 256, "%d", GetPlayerVehicleID(playerid));
new confirm[64];
sscanf(params, "s", confirm);
if(strcmp(params, confirm, true) == 0)
{
if(car == 0)
{
SendClientMessage(playerid, COLOR_YELLOW, "This car is not for sale!");
}
else if(car == 1)
{
SendClientMessage(playerid, COLOR_YELLOW, "You bought this car for $10000, check /vhelp for commands.");
dini_Create(carid);
dini_Set(carid, "name", file);
car = 0;
}
}
else
{
if(GetVehicleModel(playerid) == 404)
{
SendClientMessage(playerid, COLOR_YELLOW, "This car costs $10000, type /buycar confirm to buy it.");
car = 1;
}
else
{
SendClientMessage(playerid, COLOR_YELLOW, "This car is not for sale!");
}
}
return 1;
}