Jump to content
  • 0

[Issue] Can't get in vehicle together with Sarge


Coco-Nuts

Question

9 answers to this question

Recommended Posts

  • 0

I have not had this problem, i have had simliar problem but that was before Sarge-AI came on my server, it is a common bug where only one can enter at a time. I was in my car driving to my friend to pick him up, he couldn't get in so i jumped out and let him in, and then i couldn't get in. We both ended up relogging to fix the issue temporarily.

Link to comment
Share on other sites

  • 0

I have the same problem, it is very annoying and I do not know how to fix it. If someone enters sometimes the scroll menu disappears, or you just can't enter. First I thought this could be because of the skins but while testing it seems not. It does depend on Sarge I think :(

Link to comment
Share on other sites

  • 0

Hey guys,

 

I had the same problem yesterday, i fixed it by doing this,

 

Go into, addons\Sarge\Sar_config.sqf 

 

Find the line,

 

// run fix for the issue that bandits cant travel in a vehicle with survivors EXPERIMENTAL, might not work 100% DO NOT ENABLE for the time being

// -----------------------------------------------
SAR_FIX_VEHICLE_ISSUE = false;
 
Change it to:
 

// run fix for the issue that bandits cant travel in a vehicle with survivors EXPERIMENTAL, might not work 100% DO NOT ENABLE for the time being

// -----------------------------------------------
SAR_FIX_VEHICLE_ISSUE = true;
 
This made it work for me and my friend to enter the vehicle at same time, with sarge AI, hope it helps!
Link to comment
Share on other sites

  • 0

ebay you are right, it is to do with the way sides are set, not so much which skin they are wearing though. If an AI commander / driver is not on the same side as you the vehicle will be locked for you.

 

The AI may also try and shoot you if they are in a loaded armoured vehicle. Have even had people say that the bus tried to run them down, don't think it was related though :)

RESISTANCE is the AI side, CIVILIANS tend to be zombies (though there are issues here as zombies are spawned clientside so server spawned AI can't 'see' them).

 

WEST is (I think) normal Survivors and EAST is bandits.

 

What you have there is everybody dislikes everybody :)

 

My latest bus uses:

RESISTANCE setFriend [WEST,1];//Like Survivors..
RESISTANCE setFriend [EAST,0];//Don't like banditos !
WEST setFriend [RESISTANCE,1];
EAST setFriend [RESISTANCE,0];
Link to comment
Share on other sites

  • 0

do this:

 

******add at the end of your init.sqf******
 
if (!isDedicated) then {
        [] execVM "Scripts\fixRating.sqf";
};
 
 
*****Then create the following and put it in a "Scripts" folder in the root of your mission file. Scripts\fixRating.sqf******
 
 
 
while {alive player} do
{
    if (rating player < 0) then {
        player addRating abs(rating player);
    };
    sleep 1;
};
 
 
*Thanks to AmberHelios, the almighty wizard fingers for this.
Link to comment
Share on other sites

  • 0

 

do this:

 

******add at the end of your init.sqf******
 
if (!isDedicated) then {
        [] execVM "Scripts\fixRating.sqf";
};
 
 
*****Then create the following and put it in a "Scripts" in the root of your mission file. Scripts\fixRating.sqf******
 
 
 
while {alive player} do
{
    if (rating player < 0) then {
        player addRating abs(rating player);
    };
    sleep 1;
};
 
 
*Thanks to AmberHelios, the almighty wizard fingers for this.

 

 

this fix seems to be good with 2 ppl, havent had a chance to test with more. thanks!

Link to comment
Share on other sites

  • 0

 

do this:

 

******add at the end of your init.sqf******
 
if (!isDedicated) then {
        [] execVM "Scripts\fixRating.sqf";
};
 
 
*****Then create the following and put it in a "Scripts" folder in the root of your mission file. Scripts\fixRating.sqf******
 
 
 
while {alive player} do
{
    if (rating player < 0) then {
        player addRating abs(rating player);
    };
    sleep 1;
};
 
 
*Thanks to AmberHelios, the almighty wizard fingers for this.

 

Baker,

Thank you, this helped me - liked!

 

 

 

this fix seems to be good with 2 ppl, havent had a chance to test with more. thanks!

I have tested this with 3 players now (hero + survivor + bandit) we could get into the same vehicle in any order - working just fine.

Link to comment
Share on other sites

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
  • Advertisement
  • Discord

×
×
  • Create New...