How to resize objects in the Arma Reforger World Editor.

The World Editor in Arma Reforger allows a user to scale placed objects easily. This could be very useful for a deathmatch mission. You could scale up a building and then have the whole deathmatch take place inside the scaled building. This would be a lot of fun. In the screenshot below, I have placed … Read more

Arma Reforger is out now.

https://store.steampowered.com/app/1874880/Arma_Reforger/. This is a stress test game to test out the new Enfusion Engine before the Arma 4 game goes into production. But it runs very well. Framerates are better than with Arma 3 and the Enfusion engine does allow better detail in the map. Transitioning to swimming from walking is fast and works quite … Read more

Very useful Arma 3 code for mods and missions.

A code sample that creates a weapon box with some ammo. Just change the class names to add a weapon of your choice to this box. class cfgVehicles { class Thing; class ThingX; class ReammoBox; class Strategic; class EAST_Box_Base; class NATO_Box_Base; class Railgun_Transport_Box: EAST_Box_Base { scope = 2; vehicleClass = "Ammo"; displayName = "Railgun Box"; … Read more

Useful Arma 3 code samples to improve your missions.

This code will make your Arma 3 missions run much more smoothly. And provide some nice tricks to make the mission more enjoyable. Put this into the initPlayerLocal.sqf file. This will remove stamina and make weapon sway much more realistic, i.e no Micheal J Fox mode after running. player setCustomAimCoef 0.34; player setUnitRecoilCoefficient 0.50; player … Read more