Are meta flags editable?
-
Been trying to look around to see if flags in something like the vehicle.meta is editable and if not, could a script somehow call it and change the value?
Are there flags whose values have been evaluated? For example, in the vehicle.meta, the flag FLAG_ATTACH_TRAILER_ON_HIGHWAY seems to run on a variable which would provide a trailer to spawn with the semi but never 100%.
Is there anyway to "hook" in and see what that variable is or maybe force it to be a certain value?
-
https://github.com/E66666666/GTAVManualTransmission/blob/master/Gears/Memory/VehicleExtensions.cpp#L965
https://github.com/E66666666/GTAVManualTransmission/blob/master/Gears/Memory/VehicleFlags.hYou can read and thus probably write them, but I'm not sure what it'll do then. This also doesn't apply it on the instance itself afaik but globally.
-
Awesome thank you! Been searching over the past week for something other than the list of available flags or editing dds flags hehe.