02.10.2011, 14:46
OK,so basically my vehicle ownership is ALMOST finished,but in the last miles i'm ecountering problems.Like with /park command,even if I enter a vehcile,if it's owned,or it's not it says Unknown command.
Help,please?
pawn Код:
COMMAND:park(playerid,params[])
{
new vstring[64];
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName,sizeof(pName));
format(vstring,sizeof(vstring),"/VehicleOwnership/%s.txt",pName);
new vehicleid=GetPlayerVehicleID(playerid);
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,COLOR_RED,"This command must be used only on your owned car");
if(IsPlayerInAnyVehicle(playerid))
{
for(new i=0;i<MAX_CARS;i++)
{
if(VehicleInfo[vehicleid][vOwned] == true)
{
new Float:x,Float:y,Float:z;
GetVehiclePos(vehicleid,x,y,z);
VehicleInfo[vehicleid][vFloatX] = x;
VehicleInfo[vehicleid][vFloatY] = y;
VehicleInfo[vehicleid][vFloatZ] = z;
dini_FloatSet(vstring,"VehFloatX",VehicleInfo[vehicleid][vFloatX]);
dini_FloatSet(vstring,"VehFloatY",VehicleInfo[vehicleid][vFloatY]);
dini_FloatSet(vstring,"VehFloatZ",VehicleInfo[vehicleid][vFloatZ]);
}
if(VehicleInfo[vehicleid][vOwned] == false) return SendClientMessage(playerid,COLOR_RED,"This command must be used only on your own car");
}
}
return true;
}