14.03.2009, 13:41
sorry bout this but im stuck
what i need help with is my sellveh command what i want it to do is /selveh[player][Ammount] so you can sell it to a member ingame, any ideas on how i would do this, here you go V
what i need help with is my sellveh command what i want it to do is /selveh[player][Ammount] so you can sell it to a member ingame, any ideas on how i would do this, here you go VКод:
if (strcmp(cmd, "/sellveh", true) ==0 )
{
if(!IsPlayerInAnyVehicle(playerid)){return 1;}
if(GetCreatorID(vehicleid)!=0)
{
if (strmatch(VehicleSystem[GetCreatorID(vehicleid)][owner],Spielername(playerid)))
{
tmp = strtok(cmdtext,idx);
if(!strlen(tmp)){SendClientMessage(playerid,WHITE,"INFO: /sellveh [Price]");return 1;}
new Float:vx,Float:vy,Float:vz,Float:va;
GetVehiclePos(GetPlayerVehicleID(playerid),vx,vy,vz);
GetVehicleZAngle(GetPlayerVehicleID(playerid),va);
VehicleSystem[GetCreatorID(vehicleid)][x]=vx;
VehicleSystem[GetCreatorID(vehicleid)][y]=vy;
VehicleSystem[GetCreatorID(vehicleid)][z]=vz;
VehicleSystem[GetCreatorID(vehicleid)][a]=va;
VehicleSystem[GetCreatorID(vehicleid)][preis]=strval(tmp);
strmid(VehicleSystem[GetCreatorID(vehicleid)][owner],"dealercar",0,128,128);
SendClientMessage(playerid,WHITE,"This vehicle is now for Sale!");
GivePlayerMoney(playerid,strval(tmp));
SaveTool();
}
else
{
SendClientMessage(playerid,WHITE,"This Vehicle isnt yours!");
}
}
return 1;
}


