Search the Community
Showing results for tags 'config.bin'.
Found 2 results
-
Hi. How can I add requiredAddons to a mod? I know it should be added to the config.bin (or .cpp) and I know the structure should be something like this: class CfgPatches { class My_Mod { units[] = { }; weapons[] = { }; requiredAddons[] = {"CBA_Extended_EventHandlers"}; version = "0.993"; versionStr = "0.993"; versionDesc= "My Mod"; versionAr[] = {1,0,0}; author[] = {"Me"}; }; }; But I don't know where you get the name of the required mod from. For example, in the above code I don't know where the name "CBA_Extended_EventHandlers" comes from. (I know what it is though!) Can someone please explain it to me?
- 8 replies
-
- requiredaddons
- mod
-
(and 1 more)
Tagged with:
-
I am working on a spreadsheet of all stock and mod weapons that I have. Unfortunately there are tons of them, and typing in all these values by hand is quite a pain. I figured there has to be a way I can extract data from converted config.bin files for each weapon. (Spreadsheet would parse through the *.cpp files -- somehow - I don't know how yet). So where I am stuck is... how do I find these values in the config.bin/.cpp (converted) file for example the Khaybar? The values I have used in the spreadsheet are screenshotted, using the ACE virtual arsenal. Where is Range defined? Where is Impact defined? Where is MIL and MOA accuracy defined? Where is weight kg/lbs defined? Where is the ammo type defined? Where is the muzzle velocity in meters/second and feet/second defined? Where is barrel twist and length defined? displayName="$STR_A3_CfgWeapons_arifle_Katiba_F0"; gives me the weapon name, but not in a user-friendly way. How can I find that? Lastly, do any of these numbers have to be multiplied by another number to get the "true" representative number? For example, I see dispersion is for example 0.00145 You'll see in the screenshot below the cheap way I have to figure out range/impact by placing a grid of 10 squares over the graph bars, then deduce from that.