DaLexy 53 Posted May 10, 2015 Share Posted May 10, 2015 Not working for me either, Visual Redist is installed since ages. Other LUA and ASI Scripts are working like they should. Cant see what the Console says as its not present, Tried now serveral ways to make it work but no avail, it doesnt. Link to post Share on other sites More sharing options...
skyrayfox 19 Posted May 10, 2015 Author Share Posted May 10, 2015 Not working for me either, Visual Redist is installed since ages. Other LUA and ASI Scripts are working like they should. Cant see what the Console says as its not present, Tried now serveral ways to make it work but no avail, it doesnt. You can try installing LUA Plugin SDK version, it comes with a console that will show you all error messages. Link to post Share on other sites More sharing options...
DaLexy 53 Posted May 10, 2015 Share Posted May 10, 2015 Same issue, but i found this here which fixed the issue http://gtaforums.com/topic/789139-vrelhook-lua-plugin-for-script-hook-v/?p=1067445407 Link to post Share on other sites More sharing options...
headscript 85 Posted May 10, 2015 Share Posted May 10, 2015 Same issue, but i found this here which fixed the issue http://gtaforums.com/topic/789139-vrelhook-lua-plugin-for-script-hook-v/?p=1067445407 yeah its a non tested newer version of the pugin Link to post Share on other sites More sharing options...
Full_Metal_Wolf 3 Posted May 10, 2015 Share Posted May 10, 2015 Is there a way to disable certain hotkeys?(Setting the key to "none" perhaps?) I don't want to accidentally toggle auto-drive, patrol, or turn the engine off while I'm just out and about. Link to post Share on other sites More sharing options...
RainingAcid 6 Posted May 10, 2015 Share Posted May 10, 2015 Question, is it possible to control trailers attached to 18 wheelers? Link to post Share on other sites More sharing options...
Minidoracat 0 Posted May 11, 2015 Share Posted May 11, 2015 Doesn't work with Realistic Train Mod 1.0.2 Link to post Share on other sites More sharing options...
Qianfulong 1 Posted May 11, 2015 Share Posted May 11, 2015 Hi there, is it possible to add the "auto patrol" or "auto drive to" option to a vehicle that is driven by a PED/NPC? This would be amazing for making movies since you were able to stage a scene. E.g. a scene where one car is driven by a NPC and another car is driven by the player/director. Link to post Share on other sites More sharing options...
iOnlyEatCops 1 Posted May 11, 2015 Share Posted May 11, 2015 Is there a way of changing the default start up menu key? Trying to change it to another F key. F3 or / (numpad divide) - Show/Close mod menu Link to post Share on other sites More sharing options...
skyrayfox 19 Posted May 11, 2015 Author Share Posted May 11, 2015 Is there a way of changing the default start up menu key? Trying to change it to another F key. F3 or / (numpad divide) - Show/Close mod menu Open the LUA file and change the key.openmenu code to another one. List of key codes is in the file too. Link to post Share on other sites More sharing options...
redleouf 2 Posted May 17, 2015 Share Posted May 17, 2015 (edited) One thing I would really really love (but I don't know if it is possible) is to be able to open any window one by one, with the other ones staying closed! Edit: Well, I just tried to modify your script and it worked, so I will do my own setup from here if you dont want to reupload a new version. Maybe some other people would like to have it though. Edited May 17, 2015 by redleouf Mkmaster2400 1 Link to post Share on other sites More sharing options...
merandus 9 Posted May 22, 2015 Share Posted May 22, 2015 Hello there This is a very nice mod I want the auto drive (AI) to go very faster, can i do that with this mod? Is there any possibilities that you add that so you could make the autodrive AI drive the vehicle faster? Link to post Share on other sites More sharing options...
UncleCrank 0 Posted May 22, 2015 Share Posted May 22, 2015 FEATURES: Auto-Drive to waypoint (AI will try to follow the traffic code, press "W, S or Space" to disengage) Auto-Patrol the area (AI will randomly drive the vehicle around, following the fraffic code) Could you combine this with a spawn driver routine so you can sit in the back of your vehicle, eg a stretch limo? Link to post Share on other sites More sharing options...
Anach 8 Posted May 23, 2015 Share Posted May 23, 2015 (edited) I just cannot get this mod to work; it's the only mod I've got that wont work, and I've tried various versions of the LUA plugin/SDK, all with the same result; it's not even listing as one of the loaded modules. I've even tried this mod by itself without any other mods, and still the same result. *Fixed Was missing a lib file somehow. Redownloaded from GTAV-Mods and reinstalled it. Edited May 23, 2015 by Anach Link to post Share on other sites More sharing options...
Mkmaster2400 0 Posted June 11, 2015 Share Posted June 11, 2015 (edited) Can you make it so it stops at the waypoint instead of crashing into a wall and then crashing into where I have the waypoint set? And How do I change the speed of the car? Edited June 11, 2015 by Mkmaster2400 Link to post Share on other sites More sharing options...
Drewgamer 5 Posted June 14, 2015 Share Posted June 14, 2015 (edited) For anyone trying to get the turn signals to work with the SDK version of the LUA Script Hook just follow the steps below. 1) Open RealisticVehicleControls.lua in a text editor (I like notepad ++, but feel free to use whatever you're comfortable with) 2) Find the following lines of code (they will be near the bottom) function rvc.toggleEmergencyIndicator() isEmergencyIndicatorOn = not isEmergencyIndicatorOn isLeftIndicatorOn = false isRightIndicatorOn = false VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, true, isEmergencyIndicatorOn) VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, false, isEmergencyIndicatorOn) rvc.updateMenus("EMERGENCY LIGHTS - ", isEmergencyIndicatorOn) rvc.keyDelay()endfunction rvc.toggleLeftIndicator() isLeftIndicatorOn = not isLeftIndicatorOn if isRightIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, false, false) isRightIndicatorOn = not isRightIndicatorOn end if isEmergencyIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, false, false) isEmergencyIndicatorOn = not false end VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, true, isLeftIndicatorOn) rvc.updateMenus("LEFT INDICATOR - ", isLeftIndicatorOn) rvc.keyDelay()endfunction rvc.toggleRightIndicator() isRightIndicatorOn = not isRightIndicatorOn if isLeftIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, true, false) isLeftIndicatorOn = not isLeftIndicatorOn end if isEmergencyIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, true, false) isEmergencyIndicatorOn = false end VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, false, isRightIndicatorOn) rvc.updateMenus("RIGHT INDICATOR - ", isRightIndicatorOn) rvc.keyDelay()end 3) Replace that code with the following code function rvc.toggleEmergencyIndicator() isEmergencyIndicatorOn = not isEmergencyIndicatorOn isLeftIndicatorOn = false isRightIndicatorOn = false VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 1, isEmergencyIndicatorOn) VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 0, isEmergencyIndicatorOn) rvc.updateMenus("EMERGENCY LIGHTS - ", isEmergencyIndicatorOn) rvc.keyDelay()endfunction rvc.toggleLeftIndicator() isLeftIndicatorOn = not isLeftIndicatorOn if isRightIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 0, false) isRightIndicatorOn = not isRightIndicatorOn end if isEmergencyIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 0, false) isEmergencyIndicatorOn = not false end VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 1, isLeftIndicatorOn) rvc.updateMenus("LEFT INDICATOR - ", isLeftIndicatorOn) rvc.keyDelay()endfunction rvc.toggleRightIndicator() isRightIndicatorOn = not isRightIndicatorOn if isLeftIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 1, false) isLeftIndicatorOn = not isLeftIndicatorOn end if isEmergencyIndicatorOn then VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 1, false) isEmergencyIndicatorOn = false end VEHICLE.SET_VEHICLE_INDICATOR_LIGHTS(playerVehicle, 0, isRightIndicatorOn) rvc.updateMenus("RIGHT INDICATOR - ", isRightIndicatorOn) rvc.keyDelay()end NOTE: I do not have a lot of experience with LUA and I do not know how this will work with newer (or other) versions of LUA Script Hook and may potentially break the mod. If you have any problems with THIS FIX let me know (I'll try, but I probably can't help if it's with the mod in general). Edited June 22, 2015 by Drewgamer Link to post Share on other sites More sharing options...
Rohith_Kumar_Sp 17 Posted June 21, 2015 Share Posted June 21, 2015 @skyrayfox can i open cargo plane front and back? i really am trying to find that mod, seeing a lot of videos online but dont know what mod are they using . Link to post Share on other sites More sharing options...
Drewgamer 5 Posted June 22, 2015 Share Posted June 22, 2015 @skyrayfox can i open cargo plane front and back? i really am trying to find that mod, seeing a lot of videos online but dont know what mod are they using . There is a button labeled "Open Alt Trunk" so I am assuming that this would allow that, but I have not tried it sadly Link to post Share on other sites More sharing options...