The fact it says (DC3X,ShilkaX) was because the (code) bracket wouldn't allow [ ], it changed one to ( and left the other ]. (Strange?)
The reason for "vehicle _this select 0" is because velocity of the player for example inside the plane would be [0,0,0], unless i placed
vehicle _this select 0. The AAA source is not tested, and hence a copy paste of _this select 0, because I can't even get the script to run, I kind've dodged the initial error when I first did [DC3] just to get on with it, but now when I need it, its buggering up.
It
works with
nil = DC3X execVM "AAA.sqf"
_veh = _this
however
not with any form of
array, ie:
nil = [DC3X] execVM "AAA.sqf"
_veh = _this select 0;
I've never seen this error before?If (!alive _veh) then {_bool = 0;};
If !(alive _veh) then {_bool = 0;};
Same thing. Both work, I just prefer it outside the bracket.EDIT:I have made progress, naturally it is working, however only if I remove the 'vehicle' pre-ceeding the _this select 0, which then makes the script not work.