A couple of questions about development

Is it possible to return which seat the ped is currently in (when they’re in a vehicle)?

Is it possible to return how many possible seats are available inside a vehicle?

Is it possible to run a timer from 25 to 0, and each second check to GetDistanceBetween?

How would I do the above?

Don’t think there’s a native for that, but you can loop trough all vehicle seats (GetVehicleModelNumberOfSeats native) and then check if the ped is on that seat by using GetPedInVehicleSeat

Like this?https://runtime.fivem.net/doc/natives/#_0x2AD93716F184EDA4

Please explain