Tag Leute, hab'n Problem, wie mache ich das hier, das man das auto von ausen und von innen abschließen kann , habs auch schon mitm stock probiert aber ging irwie nicht, hier mal der befehl
if(!strcmp("/lock", cmdtext, true))
{
for(new i = 0; i<MAX_VEHICLES; i++)
{
new Float:cx, Float:cy, Float:cz,vehicleid;
GetVehiclePos(vehicleid ,cx ,cy ,cz);
if(IsPlayerInRangeOfPoint(playerid, 10.0, cx, cy, cz))
{
if(PlayerCar[i][vid] == GetPlayerVehicleID(playerid))
{
if(!strcmp(PlayerCar[i][Key], pn(playerid), false))
{
if(!PlayerCar[i][Lock])
{
PlayerCar[i][Lock] = 1;
SetVehicleParams4All(PlayerCar[i][vid], 0, 1);
SendClientMessage(playerid, COLOR_GREEN, ".:: Fahrzeug abgeschlossen! ::.");
return 1;
}
....