Sign in to follow this  
MGTDB

Stop players flipping

1 post in this topic

If you have players rolling up to other vehicles in trader, then flipping theirs to launch other players vehicles, made a simple fix
Pull ExileClient_object_vehicle_flip.sqf from the client files into your mission folder
In class CfgExileCustomCode add
 

ExileClient_object_vehicle_flip = "ExileClient_object_vehicle_flip.sqf";

Open that file, after  _vehicle = _this select 0;
Add

_nearestVehicles = count nearestObjects [player, ["LandVehicle","Tank","Air","Ship"], 10];
if((ExilePlayerInSafezone) && (_nearestVehicles > 1)) exitWith
{
     ["ErrorTitleOnly", ["Other vehicle in close proximity"]] call ExileClient_gui_toaster_addTemplateToast;
     false
}; 

 

  • Like 9

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.