Tuning, paintjobs etc. places - disable
#1

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;

Reply
#2

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?
Reply
#3

what do you mean by writing "under onenterexitmodshop"? change of vehicle position or what?
Reply
#4

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?
Reply
#5

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.
Reply
#6

Is
Код:
            SendClientMessage(playerid, C_RED, "You cannot modify this car!");
being sent?
Reply
#7

Yes.
Reply
#8

Quote:
Originally Posted by CherryMond
Посмотреть сообщение
Yes.
So what specifically in that code is not running?
Reply
#9

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?
Reply
#10

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)