-
Content Count
176 -
Joined
-
Last visited
-
Medals
Community Reputation
135 ExcellentAbout dave_beastttt
-
Rank
Sergeant
Recent Profile Visitors
-
CatBook-Yi23332 started following dave_beastttt
-
aussie battler started following dave_beastttt
-
CBA - Community Base Addons - ARMA 3
dave_beastttt replied to vipermaul's topic in ARMA 3 - ADDONS & MODS: COMPLETE
This error still happening in 3.14.0.200207 -
dave_beastttt started following Yellow chains, high CPU utilization
-
Yellow chains, high CPU utilization
dave_beastttt replied to RavenF18's topic in ARMA 3 - SERVERS & ADMINISTRATION
Try this basic.cfg language="English"; adapter=-1; 3D_Performance=1.000000; Resolution_W=800; Resolution_H=600; Resolution_Bpp=32; MaxMsgSend=384; MaxSizeGuaranteed=512; MaxSizeNonguaranteed=256; MinErrorToSend=0.01; MinErrorToSendNear=0.1; MaxCustomFileSize=1310720; Windowed=0; No need for that launch parameter as that is the default memory allocator -bandwidthAlg=2, i've done extensive testing with the alternate bandwidth algorithm and it's better now without that launch parameter -
Server FPS limit testing
dave_beastttt replied to Dedmen's topic in ARMA 3 - SERVERS & ADMINISTRATION
There's been no released perf builds for 1.96, there was a Steam perfV0 which is identical to release version (afaik) -
All spawned cars super fast
dave_beastttt replied to florinel76's topic in Exilemod (Unofficial)'s General Discussion
Nothing in those report files to suggest what is going on, the way to be sure would be to remove the mod and then see what happens -
CUP MAPS 2.0 Chernarus 2020 working on Exile Mod??
dave_beastttt replied to Sgt Smash's topic in Exilemod (Unofficial)'s General Discussion
If you have existing bases or additional map items such as Skalisty bridge, due to the height changes in the surface, everything looks like a staircase. Also, using the world name is case sensitive. -
Try asking here https://forums.bohemia.net/forums/forum/282-problems-bugs/
-
CUP MAPS 2.0 Chernarus 2020 working on Exile Mod??
dave_beastttt replied to Sgt Smash's topic in Exilemod (Unofficial)'s General Discussion
Ours is on Chernarus 2020, plenty of grey hairs getting it running and porting everything across, if anyone needs any help, drop me a pm -
Community Upgrade Project - CUP Maps 2.0
dave_beastttt replied to CUP's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Great work on updating a well loved map I think someone mentioned it on Discord, the castle tower at Zub is a little too high -
Found a pretty serious dupe method in Exile, it's done by accessing storage via a lootholder, in some instances, the storage isn't forced to update because it sees the container as the lootholder and doesn't force a save Pull ExileClient_object_player_event_onInventoryClosed from the client files and place in your mission file, change the code as per below:- if !(_container isKindOf "Man") then { if !((typeOf _container) in ["GroundWeaponHolder", "WeaponHolderSimulated", "LootWeaponHolder"]) then { ["vehicleSaveRequest", [netId _container]] call ExileClient_system_network_send; }; }; Change the above code to:- if !(_container isKindOf "Man") then { if !((typeOf _container) in ["GroundWeaponHolder", "WeaponHolderSimulated", "LootWeaponHolder"]) then { ["vehicleSaveRequest", [netId _container]] call ExileClient_system_network_send; } else { _acontainer = nearestObject [getPosATL player, "Exile_Container_Abstract"]; if!(isNull _acontainer)then { ["vehicleSaveRequest", [netId _acontainer]] call ExileClient_system_network_send; }; }; }; What the change does is if the container is a loot holder, it checks for closest Exile container storage, if there is one it forces a save on it Link in your mission config file CfgExileCustomCode
-
How to Lock/secured PBO File?
dave_beastttt replied to nagyszebi07's topic in Exilemod (Unofficial)'s Problems & Bugs
https://obfusqf.com/- 1 reply
-
- 1
-
Merry Christmas
dave_beastttt replied to Whitey01's topic in Exilemod (Unofficial)'s General Discussion
-
Best way to least ping for distant servers.
dave_beastttt replied to Arma-farma's topic in ARMA 3 - SERVERS & ADMINISTRATION
With fibre internet, you would have a lower latency than using a 4g mobile network -
Best way to least ping for distant servers.
dave_beastttt replied to Arma-farma's topic in ARMA 3 - SERVERS & ADMINISTRATION
Without moving physically closer to the server you are playing, you cannot lower your latency -
Server FPS limit testing
dave_beastttt replied to Dedmen's topic in ARMA 3 - SERVERS & ADMINISTRATION
I will once/if there's a perf build released -
ACE + Exile integration
dave_beastttt replied to chernaruski's topic in Exilemod (Unofficial)'s General Discussion
@tobiassolem got it working once in Exile