scifer
Member-
Content Count
198 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout scifer
-
Rank
Sergeant
Profile Information
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Dialog Tutorial For Noobs [By A Noob]
scifer replied to iceman77's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
The PDF link is broken! -
I didn't post my Moodjukebox script cause BI moved music files making it outdated. I tried to register at VLC forums to ask but it crashes when I accept the terms.
-
-
I created a script that analyses the current scenario and plays in-game soundtracks switching between tension, darkness and truce moods automatically. Now I want to play local soundtrack files in VLC triggered by this script. How can I send any output so VLC scripting catches it and start playing new tracks accordingly? Thank you!
-
Why it doesn't work in Desert_E CUP map?
-
theme and musicClass parameters usage
scifer posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
I saw two new parameters in CfgMusic classes: theme musicClass What are they used for? What is the difference between them? -
Please note this map was scaled down by at least 50%. It is very noticeable by looking at the airfields' ground textures, specially the airfield near the main dam. Every thing were shrinked! And this map is considerably old as for today it is totally reasonable to have a map this size with higher detail, let alone in the future. Would you be willing to scale this map up in a future update?
-
Getting optics magnification from the config in A3
scifer replied to Rydygier's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
As stated at http://forums.bistudio.com/showthread.php?82952-How-to-get-correct-magnification Some optics have different base numbers like the CUP_optic_ACOG displayName = "Trijicon ACOG TA31F"; Advertised magnification: 1.5x - 6x opticsZoomInit = 0.0623; opticsZoomMax = 0.0623; opticsZoomMin = 0.0623; Actual magnification = 0.2492 / 0.0623 = 4 How to find the base number from config then? -
Can't wait to see this mod in DayZ. Imagine a server with dinosaurs in place of zombies.
-
US Helicopters (HAFM OVerhaul) MOD
scifer replied to kimi_uy's topic in ARMA 3 - ADDONS & MODS: COMPLETE
When is it going to have Advanced Flight Model? -
How to find a vehicle's mass / weight
scifer replied to scifer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you but what is the point? -
How to find a vehicle's mass / weight
scifer replied to scifer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you! Yes I know. It's just a bad habit from the past that is stuck in my mind. -
How to find a vehicle's mass / weight
scifer replied to scifer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Sorry I should have said it only is in the experimental branch currently. -
How to find a vehicle's mass / weight
scifer replied to scifer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
It is too inaccurate. One kg above the limit and I would end up with an object that cannot be lifted. Roughly what I did was: Generate SCF_cargoList with: _vehicle = [_this, 0, vehicle player, [objNull]] call bis_fnc_param; _allVehicles = [configFile >> "CfgVehicles"] call bis_fnc_returnChildren; _slingables = []; for [{_i = 0}, {_i < count _allVehicles}, {_i = _i + 1}] do { _candidateConfig = _allVehicles select _i; _slingPoints = getArray (_candidateConfig >> "slingLoadCargoMemoryPoints"); _isSlingable = count _slingPoints > 0; _scope = getNumber (_candidateConfig >> "scope"); _isBase = _scope < 2; if (_isSlingable && !_isBase) then { _slingables = _slingables + [configName _candidateConfig]; }; }; _slingables Filter the SCF_cargoList with: SCF_maxCargoMass = getNumber (configFile >> "CfgVehicles" >> typeOf _vehicle >> "slingLoadMaxCargoMass"); while {_tooLight || _tooHeavy} do { _cargoType = SCF_cargoList call bis_fnc_selectRandom; _cargoObject = _cargoType createVehicle _cargoPosition; _cargoMass = getMass _cargoObject; _tooLight = if (_cargoMass < (SCF_maxCargoMass / 2)) then {true} else {false}; _tooHeavy = if (_cargoMass > SCF_maxCargoMass) then {true} else {false}; if (_tooLight || _tooHeavy) then { SCF_cargoList = SCF_cargoList - [_cargoType]; deleteVehicle _cargoObject; }; }; -
How to find a vehicle's mass / weight
scifer replied to scifer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
As a workaround I'm spawning the object and cheking with getMass in a 'while' loop. If the mass is above helo's 'slingLoadMaxCargoMass' it deletes the object and try another one. -
Laxemann's "Enhanced Soundscape" (L_ES) - Gun reverb and echo based on terrain
scifer replied to laxemann's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Oh! Now I see why. Just watched the video.