DeathF0X
Member-
Content Count
143 -
Joined
-
Last visited
-
Medals
Everything posted by DeathF0X
-
Community Upgrade Project - CUP Terrains
DeathF0X replied to CUP's topic in ARMA 3 - ADDONS & MODS: COMPLETE
@the1krisrob @CUP I also had this random objects in Takistan and we use no Alive. -
[WIP] Terrain Diyala province Iraq
DeathF0X replied to Cype_Revenge's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Added: Altis and Stratis Visual Upgradeatm all customs maps are fu**** up, let the modder some time to fix it. -
Intel incoming, the bug with the duplicated canister is now fixed and the fuel is now synced between clients. I added 3den attributes support. Canister Vehicles/Cars: Next update will include a optional pbo called "fox_fuel", it will increase the fuel consumption based on the player count in the vehicle and where you drive(road,offroad). Need some time to test/tweak, planned release sometime next week. Phil :ph34r: mhhh
-
[WIP] Terrain Diyala province Iraq
DeathF0X replied to Cype_Revenge's topic in ARMA 3 - ADDONS & MODS: COMPLETE
This map is soooo fu***** awesome, the details,the terrain, amazing. We played yesterday out first mission there. Thank you so much for taking your time to create this map. The only request i have, if valid, is there a second runway execpt for the main airport ? it would be nice if theres somewhere a airstrip for the bad guys. -
Looks like the eventhandler executes with every player, its on my todo list. Modules are planned in the future, tbd.
-
Tried yesterday the performace binaries, during our 3h coop no ui lag and stable 40fps+ on the server. I will try it again this sunday with a new profile and with the default exe. Thx for your help.
-
[Solved] Patching Class Land_CanisterFuel_F
DeathF0X posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Hey guys, i need to patch the class "Land_CanisterFuel_F", ive got the following problem, i cant access the class directly(Land_Suitcase_F and other classes work perfectly), the only soloution i found is to abstract the "Land_CanisterFuel_F" and create a new one( no solution ). Works: class CfgVehicles{ class ThingX; class Land_Suitcase_F{ class CfgVehicles{ class ThingX; class Sample_Land_CanisterFuel_F : Land_CanisterFuel_F { Why this didnt work ? class CfgVehicles{ class ThingX; class Land_CanisterFuel_F { -
[Solved] Patching Class Land_CanisterFuel_F
DeathF0X replied to DeathF0X's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Thx it works now -
returns 5972, 1.16847e+007
-
Yes sir, returns 386, 131831
-
Tophe's Arma Dedicated Server Tool (TADST)
DeathF0X replied to tophe's topic in ARMA 3 - SERVERS & ADMINISTRATION
crashed on startup, deleted TADST folder works fine now. My only suggestion is, is it possible to add support for autodetect mods in subfolder like, Arma 3/my-collection/@myaddon ? Atm the autodetect only supports root folder mods. Thx for that great server launcher :jump_clap: -
Awesome work !
-
ACE3 - A collaborative merger between AGM, CSE, and ACE
DeathF0X replied to acemod's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Binoculars and Optics w/ range measuring functions DO NOT WORK anymore #3160 https://github.com/acemod/ACE3/issues/3160 -
Great mod idea, cant wait to test it when im home.
-
Thats awesome !
-
Wir suchen DICH ! Ja genau DICH ! Du hast genug von Casual Arma und willst endlich “richtiges†MilSim Arma spielen, dann bist du bei uns genau richtig. FOX ist eine fiktive TIER1 Einheit die Weltweit agiert. Unsere Missionen decken ein weites Aufgabenspektrum ab: Patrouillieren, Eskorts von VIPs, Tauchen, Fallschirmspringen, Fliegen, JTAC, etc. da ist für jeden was dabei. Da lange Texte langweilig sind und du sicher auch noch viele fragen hast kannst du uns auf dem TS besuchen oder adde mich einfach in Steam. Nun auch auf Arma 3 UNITS vertreten ! Allgemeine Informationen: tier1-operations.com oder http://xof.at TS3: 89.163.140.34 oder klick Was bieten wir dir: Eine Personalisierte Ausbildung zum TIER1 Operator. Leistungsstarker Ded. Root mit 2 Gameserver und TS. Freie Waffenauswahl (Situationsbedingt) Große Mod Auswahl, CUP,RHS,ACE3,TFAR,... Was wollen wir von dir: Aktivität, RL geht vor aber 1-2h unter der Woche sollten kein Problem sein. Ein Funktionierendes Headset.
-
Enemy occupation system (eos)
DeathF0X replied to bangabob's topic in ARMA 3 - MISSION EDITING & SCRIPTING
If theres a way to check via script if all units in the chache are killed ? -
Hey, is there a way to convert/escape the string into a function name ? So its logs a string error. Example: ["myFunction",["a","b"] ] call example; example = { _fnc = _this select 0; _params = _this select 1; _params call _fnc; };
-
String to function name
DeathF0X replied to DeathF0X's topic in ARMA 3 - MISSION EDITING & SCRIPTING
thx i will try it when im back home, -
Working out trigger for bigger project.
DeathF0X replied to thedubl's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Yes as long as you keep the array in sync with the client|server. init.sqf crates = ["Box_FIA_Support_F","Box_XXX_Suport_F"]; mission.sqf, extra chance to get a special box crates pushBack "Box_FFFF_Suport_F"; _crateClass = crates call BIS_fnc_selectRandom; _obj = createVehicle [_crateClass, getMarkerPos "myHiddenCrate", [], 0, "CAN_COLLIDE"]; BUT if you modify the array local and start the script on the local player then the array is in desync. Addaction is a local command, if you modify the array from the script: player addAction ["ASD", "oohh.sqf"]; oohh.sqf crates pushBack "FFFFF_FFF"; Other : crates = ["Box_FIA_Support_F","Box_XXX_Suport_F",Box_FFFF_Suport_F]; You : crates = ["Box_FIA_Support_F","Box_XXX_Suport_F",Box_FFFF_Suport_F,"FFFFF_FFF"]; as you posted publicVariable is the solution. crates pushBack "FFFFF_FFF"; publicVariable "crates"; You can reverse engineer my old project. -
Working out trigger for bigger project.
DeathF0X replied to thedubl's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i read somewhere that scripted triggers only work with globals vars, had the same problem. Workaround: _crate2 = createVehicle [_crate_class, _pos2, [], 0, "CAN_COLLIDE"]; .... waitUntil { (!alive _crate1) AND (!alive _crate2) AND (!alive _crate3) OR (mission_abort) }; ... -
Awesome, great work :)
- 12 replies
-
- sqf
- cheat sheet
-
(and 3 more)
Tagged with:
-
OO PDW - oriented object Persistent Data World
DeathF0X replied to code34's topic in ARMA 3 - MISSION EDITING & SCRIPTING
i dont read all but i would say, _name : string // is the savename in inidbi and _object : object // is the crate ["saveObject", ["myCustomBox", myBoxVar]] call OO_PDW; then you use the load function and call the box with "myCustomBox" as inidbi object #edit ["loadObject", "myCustomBox] call OO_PDW; -
Hey, is there any way to get the workshop files downloaded to a linux server. Google cant find any useful information. The only i find is about a "host_workshop_collection" command, nothing arma related. Cya Phil
-
[Release] Ambient Helicopters
DeathF0X replied to DeathF0X's topic in ARMA 3 - MISSION EDITING & SCRIPTING
vengeance1 im working on it #update 1.1 + Readme + Sample Mission + Settings now on top ( _heliArray, _heliPadClasses ) - Removed Eventhandler file only "ambientHeli.sqf" required