rogerblower 10 Posted April 7, 2020 Hi guys my script doesn't work, does anyone know what's wrong? _ObjCar = createVehicle ["C_Hatchback_01_sport_F", getMarkerPos "car", ["car1", "car2"], 0, "NONE"]; _ObjCar setVehicleInit "this say3D ["cars",50,1]"; processInitCommands; In Eden Editor, vehicle init works well... Share this post Link to post Share on other sites
gc8 977 Posted April 7, 2020 44 minutes ago, rogerblower said: _ObjCar setVehicleInit "this say3D ["cars",50,1]"; syntax error there with the quotation marks try: _ObjCar setVehicleInit "this say3D ['cars',50,1]"; Share this post Link to post Share on other sites
rogerblower 10 Posted April 7, 2020 20 minutes ago, gc8 said: _ObjCar setVehicleInit "this say3D ['cars',50,1]"; It doesn't work. Share this post Link to post Share on other sites
target_practice 163 Posted April 7, 2020 From the BIKI page on setVehicleInit: Quote For security reasons, the command was disabled in Arma 3. Use remoteExec for remote execution. https://community.bistudio.com/wiki/setVehicleInit 1 Share this post Link to post Share on other sites
rogerblower 10 Posted April 15, 2020 target_practice I couldn't get this script to work Does not work _ObjCar remoteExec ["this say3D ['cars',50,1]"]; _ObjCar remoteExec "this say3D ["cars",50,1]"; I am noob help me please 🙁 Share this post Link to post Share on other sites
POLPOX 778 Posted April 15, 2020 What exactly do you want? _ObjCar = createVehicle ["C_Hatchback_01_sport_F", getMarkerPos "car", ["car1", "car2"], 0, "NONE"]; _ObjCar say3D ["cars",50,1]; Why don't you take this way? Share this post Link to post Share on other sites
rogerblower 10 Posted April 15, 2020 1 hour ago, POLPOX said: What exactly do you want? _ObjCar = createVehicle ["C_Hatchback_01_sport_F", getMarkerPos "car", ["car1", "car2"], 0, "NONE"]; _ObjCar say3D ["cars",50,1]; Why don't you take this way? Worked perfectly POLPOX Thank you very much 👋 Share this post Link to post Share on other sites