0 files liked
1 comment
0 videos
0 uploads
0 followers
Bug: Uber Driver Revamped breaks vanilla story subtitles/dialogue and mission progression
GTA V Enhanced 1.0.1158.13
ScriptHookVDotNet Enhanced 1.1.0.6 Stable
Uber Driver Revamped 2.0.5
I found a reproducible issue where simply having UberDriverRevamped.dll loaded causes some vanilla story dialogue and subtitles to disappear, and can prevent mission progression. One confirmed example is the Father/Son mission: the final Los Santos Customs trigger fails.
Removing only UberDriverRevamped.dll completely fixes the dialogue, subtitles and mission trigger.
After inspecting the DLL, the issue appears to come from:
UberDriverRevamped.Core.Jobs.JobManager.SuppressLegacySubtitle()
This method is reached from the normal JobManager.Process() tick path and calls:
GTA.UI.Screen.ShowSubtitle(string.Empty, 1);
It continues to run even when Uber is offline, so it repeatedly clears/overwrites GTA's subtitle channel every tick.
I patched SuppressLegacySubtitle() to immediately return without calling ShowSubtitle().
Result:
Vanilla story dialogue restored
Vanilla subtitles restored
Father/Son Los Santos Customs trigger works again
Tested two Uber rides afterward and Uber functionality still worked normally
It looks like SuppressLegacySubtitle() is leftover logic from the old subtitle-based route system and can probably be safely removed from the per-tick path in the current HUD version.