- 180

- France
If you look at the part of the Nuzzi Pit app code where decision to go to the pit is computed (line 401 of NuzziPitApp.lua), you'll find:It's not possible, it's not possible, sorry, but I'm angry...🤬🤬🤬
Shin's Monza88, for me, also has the exact same problem (a problem with no explanation or solution) as Ks_Monza_66: the cars enter the pits and can't exit because they disappear upon exiting and reappear in the pits again, in a loop.
CSP 0.2.9p1 and Nuzzi Pit App: in my opinion, the app isn't the problem. 🤬🤬
-- Loop through all ai drivers
for i = 1, ac.getSim().carsCount - 1, 1
do
-- Loop through the drivers pit stop laps array (pit stops strategy)
for a = 1, #aiDriversArray.pitStopsLapsStratArray, 1
do
-- Ai request scheduled tyre stop when:
-- 1) On lap they want to pit
-- 2) They haven't already requested (to stop spam)
-- 3) When they are not in pitlane & more than 25% round a lap to stop teleport to pit on exit bug
if ac.getCar(i).lapCount + 1 == aiDriversArray.pitStopsLapsStratArray[a] and aiDriversArray.pitStopRequested == false and ac.getCar(i).isInPitlane == false and ac.getCar(i).splinePosition >= 0.25 then
Seems to me the iteration is done on the laps where the AI should stop. Which may not be secure if you go out of the pitlane before you passed the finish line because " if ac.getCar(i).lapCount + 1 == aiDriversArray.pitStopsLapsStratArray[a]" and the other elements would still be True when you're released from the pits, so -> infinite loop
I think it is the case in Monza 66 where the pits are before the finish line, not sure if it is the same for Shi Suzuka version (I have the Carrera4 / Rainmaker / daBaeda where this is not the case, you gain a lap before being released from the pits and the bug here is that every AI retire once they go to pit lol)
The best would be to contact Nuzzi directly via his Patreon I think : at least he knows already there may be a problem of teleport on exit
I did not see a place in his code where it would modify the surfaces.ini, I tried it on Rouen-les Essarts and did not find any modifications of this file when using the app.
Last edited: