SA-MP Forums Archive
Tuning, paintjobs etc. places - disable - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Tuning, paintjobs etc. places - disable (/showthread.php?tid=662733)



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(playeridenterexitinteriorid){
       if(
enterexit == 1){
    new 
VehicleID GetPlayerVehicleID(playerid);
        if(
IfPlayerInPrivateVehicle(playeridVehicleID)){
            
SetVehiclePos(VehicleIDstartPos[VehicleID][0], startPos[VehicleID][1], startPos[VehicleID][2]);
            
SetPlayerInterior(playerid0);
            
LinkVehicleToInterior(VehicleID0);            
            
SetVehicleVirtualWorld(VehicleID0);
            
SetPlayerVirtualWorld(playerid0);
            
SetVehicleZAngle(VehicleID45.0000);
            
SetCameraBehindPlayer(playerid);
            
SendClientMessage(playeridC_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(playeridenterexitinteriorid){
       if(
enterexit == 1){
    new 
VehicleID GetPlayerVehicleID(playerid);
        if(
IfPlayerInPrivateVehicle(playeridVehicleID)){
            
SetVehiclePos(VehicleIDstartPos[VehicleID][0], startPos[VehicleID][1], startPos[VehicleID][2]);
            
SetPlayerInterior(playerid0);
            
LinkVehicleToInterior(VehicleID0);            
            
SetVehicleVirtualWorld(VehicleID0);
            
SetPlayerVirtualWorld(playerid0);
            
SetVehicleZAngle(VehicleID45.0000);
            
SetCameraBehindPlayer(playerid);
            
SendClientMessage(playeridC_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
Код:
print("Debug");
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(playeridvehicleid){
    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