duda123
Member-
Content Count
585 -
Joined
-
Last visited
-
Medals
Community Reputation
1341 ExcellentAbout duda123
-
Rank
Gunnery Sergeant
Profile Information
-
Gender
Not Telling
-
WolfeActual started following duda123
-
Shooting while rappelling is only supported if the client has the mod enabled. As far as I know, there's no way to include custom animations in the mission directly.
-
Advanced Train Simulator (ATS)
duda123 replied to duda123's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Using the dev version, here are some scripts you can use: 1. Create a train via script and give it some speed (place this in the init field of any train engine object placed on the map): this call { _train = [_this] call ATRAIN_fnc_createTrain; for "_i" from 0 to 5 do { [_train, "ATS_Trains_AE_Wagon"] call ATRAIN_fnc_attachTrainCar; }; _train setVariable ["ATRAIN_Remote_Cruise_Control_Enabled", true, true]; _train setVariable ["ATRAIN_Local_Velocity", 12]; _train setVariable ["ATRAIN_Remote_Velocity", 12, true]; }; 2. Derail the train (assumes the name of the editor-placed engine is TRAIN) [[TRAIN] call ATRAIN_fnc_getTrain] call ATRAIN_fnc_derailTrain 3. Control who can get in the train: [{some code that returns true or false. _this select 0 is the player},"You need a license to drive this train"] call ATRAIN_fnc_setTrainDriveCondition; [{some code that returns true or false _this select 0 is the player},"You need a license to ride this train"] call ATRAIN_fnc_setTrainRideCondition; -
Advanced Train Simulator (ATS)
duda123 replied to duda123's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Sorry, published to the wrong steam workshop item. The steam item above is now updated. -
Tankbuster started following duda123
-
Yes you can install it as a script without the addon. Your change seems good to me.
-
Advanced Train Simulator (ATS)
duda123 replied to duda123's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Updated version of ATS dev released: https://steamcommunity.com/sharedfiles/filedetails/?id=1249410807 -
I might be wrong, but I don't believe you can include animations in a mission.
-
You don't need to do anything special to get it to load. Just launch the game with this mod enabled and start any mission. Then, open your map and you should see icons over each ai group on your side.
-
Advanced Train Simulator (ATS)
duda123 replied to duda123's topic in ARMA 3 - ADDONS & MODS: COMPLETE
All great ideas! Have you tried out the dev build of ATS yet? It's headed in this direction :) Even has train derailments. Creating trains and moving them is possible via script in the dev build. However, I'd imagine editor module-based config would be better for most users. -
Formatting got all messed up, but give this a try. Stick it in your init.sqf. (Haven't tested the code yet) AR_Rappel_All_Cargo_Now = { params ["_vehicle"]; if(!local _vehicle) exitWith { [_this,"AR_Rappel_All_Cargo_Now",_vehicle] call AR_RemoteExec }; private _cargoCrew = (fullCrew _vehicle) select {(_x select 1 == "cargo" || _x select 4) && alive _x}; private _rappelUnits = _cargoCrew apply {_x select 0}; private _unitsOutsideVehicle = []; while { count _unitsOutsideVehicle != count _rappelUnits } do { { [_x, _vehicle] call AR_Rappel_From_Heli; sleep 1; } forEach (_rappelUnits-_unitsOutsideVehicle); { if!(_x in _vehicle) then { _unitsOutsideVehicle pushBack _x; }; } forEach (_rappelUnits-_unitsOutsideVehicle); sleep 2; }; }; AR_Rappel_Cargo_From_Heli_Action_Check = { params ["_player"]; private _vehicle = vehicle _player; if(_vehicle == _player) exitWith {false}; if(driver _vehicle != _player) exitWith {false}; private _cargoCrew = (fullCrew _vehicle) select {(_x select 1 == "cargo" || _x select 4) && alive _x}; private _rappelUnits = _cargoCrew apply {_x select 0}; _canRappelOne = false; { if([_x, _vehicle] call AR_Rappel_From_Heli_Action_Check) exitWith { _canRappelOne = true; }; } forEach _rappelUnits; _canRappelOne; }; if(!isDedicated) then { [] spawn { while {true} do { if(!isNull player && isPlayer player) then { if!(player getVariable ["AR_Rappel_Cargo_Loaded",false] ) then { _player addAction ["Rappel All Cargo", { [vehicle player] call AR_Rappel_All_Cargo_Now; }, nil, 0, false, true, "", "[player] call AR_Rappel_Cargo_From_Heli_Action_Check"]; _player addEventHandler ["Respawn", { player setVariable ["AR_Rappel_Cargo_Loaded",false]; }]; player setVariable ["AR_Rappel_Cargo_Loaded",true]; }; }; sleep 5; }; }; };
-
Advanced Sling Loading (MP & SP)
duda123 replied to duda123's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Add this to your init.sqf file: ASL_HEAVY_LIFTING_MIN_LIFT_OVERRIDE = 0; -
Now includes 10 MP slots, enemy and respawn/revive functionality. It's fully playable! Let me know if you try it out!
-
Dev build of Raiders published to steam! http://steamcommunity.com/sharedfiles/filedetails/?id=1275691404 Let me know what you think of the cave system!
-
Now uses a custom terrain to get the effect of water on the ground