-
Content Count
323 -
Joined
-
Last visited
-
Medals
Community Reputation
189 ExcellentAbout soolie
-
Rank
Staff Sergeant
Contact Methods
-
Youtube
MikeSulo
-
Steam url id
soolie
-
XBOX Live
InSuloWeTrust
Recent Profile Visitors
-
Vandeanson started following soolie
-
Is there UI design tutorials for Arma 3?
soolie replied to Quilnux's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
-
[Release] GOM - Aircraft Loadout V1.35
soolie replied to Grumpy Old Man's topic in ARMA 3 - MISSION EDITING & SCRIPTING
http://bit.ly/GomAirLoadoutSoolie Like I said, it's kind of broken. Please share if you fix it. Everything I touched in the functions, I commented. Search for "Soolie" -
[Release] GOM - Aircraft Loadout V1.35
soolie replied to Grumpy Old Man's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Really love this. I overhauled the UI. Somehow broke the RscEdits and the delete button(i think from adding stuff into your updating code). Here's a video of how it looks. If you like it, it's yours. Especially if you want to fix it 😂 -
How many vehicles can you cram with SQF within given area without a collision?
soolie replied to Rydygier's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Ok, last one. Not as many are spawning now but seems to work well with all land vehicles. Totals - B_Truck_01_box_F - 49 B_G_Quadbike_01_F - 154 C_man_1 - 259 // -------------[position, vehicle classname] call fnc_allTheSpots; // -------------[[5552,7011,0],"B_Truck_01_box_F"] call fnc_allTheSpots; fnc_allTheSpots = { _box = "Land_VR_Shape_01_cube_1m_F" createVehicle (_this select 0); _vehType = _this select 1; _veh = _vehType createVehicle [0,0,0]; _bBox = boundingBoxReal _veh; _sphereSize = _bBox select 2; _vehSize = _sphereSize * 1.2; deleteVehicle _veh; for "_i" from 0 to 360 step 1 do { for "_j" from 0 to 92 step 1 do { _relpos = _box getRelPos [_j, _i]; _empty = _relpos findEmptyPosition [5,8,_vehType]; if !(_empty isEqualTo []) then { _empty set [2,0]; _nearest = nearestObjects [_empty, [_vehType],_vehSize]; if !(count _nearest >0) then { _markerName = createMarker [str _relpos, _empty]; _markerName setMarkerType "hd_dot"; _veh = _vehType createVehicle [0,0,0]; _veh setDir _i; _veh setPos _empty; }; }; }; }; _mrkrCount = count allMapMarkers; systemChat format ["%1", _mrkrCount]; }; -
How many vehicles can you cram with SQF within given area without a collision?
soolie replied to Rydygier's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Managed to get 52 every time without that other fnc. Crashed the game way too many times messing with this _box = "Land_VR_Shape_01_cube_1m_F" createVehicle [5552,7011,0]; _vehType = "B_Truck_01_box_F"; for "_i" from 0 to 360 step 1 do { for "_j" from 0 to 92 step 1 do { _relpos = _box getRelPos [_j, _i]; _empty = _relpos findEmptyPosition [5,8,_vehType]; if !(_empty isEqualTo []) then { _empty set [2,0]; _nearest = nearestObjects [_empty, [_vehType], 11]; if !(count _nearest >0) then { _markerName = createMarker [str _relpos, _empty]; _markerName setMarkerType "hd_dot"; _veh = _vehType createVehicle [0,0,0]; _veh setDir _i; _veh setPos _empty; _vehPos = getPos _veh; }; }; }; }; _mrkrCount = count allMapMarkers; systemChat format ["%1", _mrkrCount]; -
How many vehicles can you cram with SQF within given area without a collision?
soolie replied to Rydygier's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I got 52 but used KillzoneKid's fnc_isFlatEmpty off the notes here https://community.bistudio.com/wiki/isFlatEmpty -
GEORGE FLOROS GR started following soolie
-
easy [Release] Base Builder
soolie replied to wogz187's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Still working out the object placement. Trying a bunch of different things like setting the pos in a loop with lineintersectsurfaces, vectormultiply based on screen center, using attachtorelative etc. Just working out the best way. Should have something soon(tm).- 10 replies
-
- 5
-
- objects
- constuction
-
(and 2 more)
Tagged with:
-
easy [Release] Base Builder
soolie replied to wogz187's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Getting really close to finished with this. Going to release a beta version later tonight to be tested.- 10 replies
-
- 3
-
- objects
- constuction
-
(and 2 more)
Tagged with:
-
easy [Release] Base Builder
soolie replied to wogz187's topic in ARMA 3 - MISSION EDITING & SCRIPTING
- 10 replies
-
- 3
-
- objects
- constuction
-
(and 2 more)
Tagged with:
-
easy [Release] Base Builder
soolie replied to wogz187's topic in ARMA 3 - MISSION EDITING & SCRIPTING
- 10 replies
-
- 5
-
- objects
- constuction
-
(and 2 more)
Tagged with:
-
easy [Release] Base Builder
soolie replied to wogz187's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Looking good. Do you mind sharing any plans you have for it? Messed with the UI a bit last night, here's what I came up with so far. (model preview rotates) Cfg for adding new objects to build menu Open/Load UI and Change/Rotate model preview UI cfg- 10 replies
-
- 5
-
- objects
- constuction
-
(and 2 more)
Tagged with:
-
Congrats on the release. Server's running great. Who made that ui doe? <3
- 143 replies
-
Spawning complex compositions
soolie replied to HazJ's topic in ARMA 3 - MISSION EDITING & SCRIPTING
was re-reading and missed something - copyToClipboard str _houses; _houses should be _comps now copyToClipboard str _comps; Sorry!- 12 replies
-
- 1
-
- compositions
- vectors
-
(and 3 more)
Tagged with:
-
Spawning complex compositions
soolie replied to HazJ's topic in ARMA 3 - MISSION EDITING & SCRIPTING
This is my own, was originally for decorating houses but worked well with a lot of objs with diff dir/vectors/objs on tables etc Edited a bit for you to use but only uses simple objects so some checks might be needed for more advanced use. This is basically what you describe in your first post without the check for sim. I know all the worldpos and attaching detaching looks weird but I tested a lot. Building in VR and then spawning on diff terrains at diff elevations and such This is the only way I could get it to work every time but maybe you can figure something I couldn't. Can't test the edit right now so hopefully no stupid syntax errors.- 12 replies
-
- 1
-
- compositions
- vectors
-
(and 3 more)
Tagged with:
-
soolie started following Apex Framework
-
copyToClipboard needs a string copyToClipboard str _cnt;