First free pitstop.

rafalgt

Hi.
Is it possible to set the server so that the car entering into the pits to change tires has been assigned to the first space?

If you have two cars with a group of pit = 1 and one of them is already in the pits, the second car after the entrance to the pits receive other free space?
 
Hi rafalgt,
I'm not exactly sure of your question, but the .rFm file has some lines that dictate whether cars in a race will share a pitspot, or not.

>>>the lines below from the .rFm file ensure each car has it's own pit

PitGroupOrder
{
// format is: PitGroup = <# of vehicles sharing pit>, <groupname>
PitGroup = 1, Group1
PitGroup = 1, Group2
PitGroup = 1, Group3
PitGroup = 1, Group4
PitGroup = 1, Group5
PitGroup = 1, Group6
PitGroup = 1, Group7
PitGroup = 1, Group8
PitGroup = 1, Group9
PitGroup = 1, Group10
}

>>>and these lines below from the .rFm file provide that cars share a pit


PitGroupOrder
{
// format is: PitGroup = <# of vehicles sharing pit>, <groupname>
PitGroup = 2, Group1
PitGroup = 2, Group2
PitGroup = 2, Group3
PitGroup = 2, Group4
PitGroup = 2, Group5
PitGroup = 2, Group6
PitGroup = 2, Group7
PitGroup = 2, Group8
PitGroup = 2, Group9
PitGroup = 2, Group10
}


>>>then if you look in the .veh files you will see which pitgroup the car belongs
example:

PitGroup="Group2"

Hope that all makes sense.

And most non-F1 league mods I've seen use the following in the .veh file:

PitGroup=""

And using the above method, cars simply get next assigned pitspot when they log onto the server.
 

Back
Top