Hey! It's been a while since I played Factorio -_-
Hi! It's been a while since I meddled with GCKI, there are some major changes in BI ahead that have kept me quite busy, So, sorry for not replying sooner.
While the Autodrive mod is not updated for 1.1, I've been trying "AAI vehicles" for the same purpose. When I enter a car and drive it with a AAI Remote controller, I get that "claim this vehicle with keys" message endlessly whenever the vehicle stops. Is there a way to disable the hints?
Lines 2210f. in control.lua:
-- Inform player that the vehicle can be claimed
GCKI.output(player, {"GCKI-messages.vehicle_available", GCKI.loc_name(vehicle)})
Commenting this will get rid of the spam, but there should be a better solution. With AAI Programmable Vehicles, GCKI will do way more than usually necessary. For some reason, AAI replaces the vehicle whenever it has reached a waypoint (could be related to it using unit prototypes for pathfinding). So I guess AAI will evict the driver (the vehicle still exists, so you are informed that you can claim the vehicle), destroy the old vehicle, create a new one, and put the player character into that again. Therefore, on_driving_state changed will be triggered two times at each waypoint -- that's definitely a waste of UPS. I hope I can figure something out …