Tuning, paintjobs etc. places - disable -
CherryMond - 09.01.2019
Hi, I've problem.
I tried make disable tuning etc. places for private vehicles, but it is not working.
I won't creating new object, because this will be working on default vehicles. Somebody have any ideas?
PHP код:
public OnEnterExitModShop(playerid, enterexit, interiorid){
if(enterexit == 1){
new VehicleID = GetPlayerVehicleID(playerid);
if(IfPlayerInPrivateVehicle(playerid, VehicleID)){
SetVehiclePos(VehicleID, startPos[VehicleID][0], startPos[VehicleID][1], startPos[VehicleID][2]);
SetPlayerInterior(playerid, 0);
LinkVehicleToInterior(VehicleID, 0);
SetVehicleVirtualWorld(VehicleID, 0);
SetPlayerVirtualWorld(playerid, 0);
SetVehicleZAngle(VehicleID, 45.0000);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, C_RED, "You cannot modify this car!");
return 1;
}
}
return 1;
}
Re: Tuning, paintjobs etc. places - disable -
Kevinas100 - 09.01.2019
Quote:
Originally Posted by CherryMond
Hi, I've problem.
I tried make disable tuning etc. places for private vehicles, but it is not working.
I won't creating new object, because this will be working on default vehicles. Somebody have any ideas?
PHP код:
public OnEnterExitModShop(playerid, enterexit, interiorid){
if(enterexit == 1){
new VehicleID = GetPlayerVehicleID(playerid);
if(IfPlayerInPrivateVehicle(playerid, VehicleID)){
SetVehiclePos(VehicleID, startPos[VehicleID][0], startPos[VehicleID][1], startPos[VehicleID][2]);
SetPlayerInterior(playerid, 0);
LinkVehicleToInterior(VehicleID, 0);
SetVehicleVirtualWorld(VehicleID, 0);
SetPlayerVirtualWorld(playerid, 0);
SetVehicleZAngle(VehicleID, 45.0000);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, C_RED, "You cannot modify this car!");
return 1;
}
}
return 1;
}
|
Did you try to put it under onplayerentermodshop?
Re: Tuning, paintjobs etc. places - disable -
CherryMond - 09.01.2019
what do you mean by writing "under onenterexitmodshop"? change of vehicle position or what?
Re: Tuning, paintjobs etc. places - disable -
Chyakka - 09.01.2019
Write out a
before the if statement to confirm the callback is being correctly called. Assuming it is, the issue could be your IfPlayerInPrivateVehicle function, could you post it?
Re: Tuning, paintjobs etc. places - disable -
CherryMond - 09.01.2019
PHP код:
stock IfPlayerInPrivateVehicle(playerid, vehicleid){
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER){
if(PrivCar[playerid][idPrivateVehicle] == vehicleid){
return true;
} else {
return false;
}
}
return 0;
}
This function is good, it also works in other places. Debugs are being printed.
Re: Tuning, paintjobs etc. places - disable -
Chyakka - 09.01.2019
Is
Код:
SendClientMessage(playerid, C_RED, "You cannot modify this car!");
being sent?
Re: Tuning, paintjobs etc. places - disable -
CherryMond - 09.01.2019
Yes.
Re: Tuning, paintjobs etc. places - disable -
Chyakka - 09.01.2019
Quote:
Originally Posted by CherryMond
Yes.
|
So what specifically in that code is not running?
Re: Tuning, paintjobs etc. places - disable -
CherryMond - 09.01.2019
After entering the garage, the code I gave is working, but on the left a menu is displayed with the choice of tuning options. How can I disable it?
Re: Tuning, paintjobs etc. places - disable -
Chyakka - 09.01.2019
I've had a little look around and haven't found anything that could directly solve your issue but you could make use of the OnVehicleMod callback and just return 0; informing the player they cannot mod their personal vehicle.
https://sampwiki.blast.hk/wiki/OnVehicleMod