Jump to content

TeratosPrime

Member
  • Content Count

    1
  • Joined

  • Last visited

  • Medals

Everything posted by TeratosPrime

  1. TeratosPrime

    Claim Vehicles

    Hi guys, Hope I'm not to late to the Exile party to get a bit of help with this script 😕 I'm running a dedicated exile server and have this script apparently successfully installed. When a player with a codelock goes to claim ownership of a vehicle, they're prompted to get into the driver seat first, then enter a pin. After this...nothing happens at all. Looking at the debug console, we get this message: "ExileServer - Network message dispatch failed: Forbidden message name! Payload: [""tqcygcib"",""saveVehicleRequest"",[""2:889"",""7900""]]" From googling around a bit, it seems like the server is blocking this remote execution from happening. I'm running both Battleye and Infistar. Some people had a similar problem over at the Steam Advanced Towing page here:https://steamcommunity.com/sharedfiles/filedetails/?id=639837898 Specifically the advice given when a menu option for advanced towings 'deploy rope' option is selected and nothing happens (similar to my situation) is: Most likely your server is setup with a white list for remote executions. In order to fix this, you need to modify your mission's description.ext file, adding the following CfgRemoteExec rules. If using InfiStar you should edit your cfgremoteexec.hpp instead of the description.ext file. See https://community.bistudio.com/wiki/Arma_3_Remote_Execution for more details on CfgRemoteExec. class CfgRemoteExec { class Functions { class SA_Simulate_Towing { allowedTargets=0; }; class SA_Attach_Tow_Ropes { allowedTargets=0; }; class SA_Take_Tow_Ropes { allowedTargets=0; }; class SA_Put_Away_Tow_Ropes { allowedTargets=0; }; class SA_Pickup_Tow_Ropes { allowedTargets=0; }; class SA_Drop_Tow_Ropes { allowedTargets=0; }; class SA_Set_Owner { allowedTargets=2; }; class SA_Hint { allowedTargets=1; }; class SA_Hide_Object_Global { allowedTargets=2; }; }; }; I've found both the cfgremoteexec files (for the mission and infistar), but have absolutely no idea what to add to the file to make claim vehicle work. My coding is not up to scratch. Obviously the above Function list refers to Advanced Towing and not Claim Vehicles. Does anyone have any idea how to circumvent this issue? Would be much obliged if so. Free heli on my server if it works :P.
×