War-Thunder-Datamine icon indicating copy to clipboard operation
War-Thunder-Datamine copied to clipboard

CCIP and bomb drag

Open lelp2222222229 opened this issue 1 year ago • 9 comments

Where can i find how the game calculates impact points for bombs and how the drag on the bomb is calculated? And how could i effectively parse each aircrafts files and pull the bombs it can hold?

lelp2222222229 avatar Oct 05 '23 17:10 lelp2222222229

Oh also, is there anything anywhere about how the mouse aim autopilot works?

lelp2222222229 avatar Oct 05 '23 18:10 lelp2222222229

Where can i find how the game calculates impact points for bombs and how the drag on the bomb is calculated? And how could i effectively parse each aircrafts files and pull the bombs it can hold?

Hi, I can't answer the first question but the second yes. All aircrafts files are stored in "aces.vromfs.bin_u\gamedata\flightmodels". To see what bombs each aircraft can carry you will first need to determine whether the plane supports custom presets (i.e usually top tiers can, like the a10). If the aircraft does not allow custom presets, then the weapons it can carry are inside "weapon_presets":

"weapon_presets": {
    "preset": [
      {
        "name": "a6m2_default",
        "blk": "gameData/FlightModels/weaponPresets/a6m2_default.blk"
      },
      {
        "name": "A6M2_2x60kg",
        "blk": "gameData/FlightModels/weaponPresets/a6m2_bombs.blk",
        "reqModification": "a6m_9in_mod30"
      }
    ]
  },

In this case "blk" points to the location of the file that holds the information about that specific preset. Inside it there will be another "blk" key that ultimately points to the file with the weapon specs. For planes with custom presets the thing is trickier (if you want to extract this data with code) because you can also see, for each plane pylon, what it can carry. Other than that the process is almost the same. It was a painful process when I did for my API lol.

Sgambe33 avatar Oct 15 '23 19:10 Sgambe33

In this case "blk" points to the location of the file that holds the information about that specific preset. Inside it there will be another "blk" key that ultimately points to the file with the weapon specs. For planes with custom presets the thing is trickier (if you want to extract this data with code) because you can also see, for each plane pylon, what it can carry. Other than that the process is almost the same. It was a painful process when I did for my API lol.

So there's no simple way to just grab every weapon from any selected aircraft? Just a load of selection statements?

lelp2222222229 avatar Oct 15 '23 20:10 lelp2222222229

In this case "blk" points to the location of the file that holds the information about that specific preset. Inside it there will be another "blk" key that ultimately points to the file with the weapon specs. For planes with custom presets the thing is trickier (if you want to extract this data with code) because you can also see, for each plane pylon, what it can carry. Other than that the process is almost the same. It was a painful process when I did for my API lol.

So there's no simple way to just grab every weapon from any selected aircraft? Just a load of selection statements?

I tried and I wanted to be exact every time. This is the only way I found tbh. I wish it was easier

Sgambe33 avatar Oct 18 '23 19:10 Sgambe33

"Hi, can someone please help me understand how to use the War Thunder ESP? I'm unfamiliar with how GitHub works and have been searching for a simple ESP cheat for quite some time. Unfortunately, I've been scammed several times. If anyone knows of a reliable ESP cheat, please let me know. Thank you."t.

Its-hawas avatar Feb 05 '24 05:02 Its-hawas

"Hi, can someone please help me understand how to use the War Thunder ESP? I'm unfamiliar with how GitHub works and have been searching for a simple ESP cheat for quite some time. Unfortunately, I've been scammed several times. If anyone knows of a reliable ESP cheat, please let me know. Thank you."t.

How about you don't cheat?

llama-for3ver avatar Feb 05 '24 05:02 llama-for3ver

"Hi, can someone please help me understand how to use the War Thunder ESP? I'm unfamiliar with how GitHub works and have been searching for a simple ESP cheat for quite some time. Unfortunately, I've been scammed several times. If anyone knows of a reliable ESP cheat, please let me know. Thank you."t.

How about you don't cheat?

The experience of playing a game is ruined when cheaters use underhanded tactics to shoot you from out of nowhere. It's frustrating and can quickly turn a fun game into a tedious one. I'm interested in understanding how the GitHub repository is linked to War Thunder. Can you provide some insight on this?

Its-hawas avatar Feb 05 '24 05:02 Its-hawas

"Hi, can someone please help me understand how to use the War Thunder ESP? I'm unfamiliar with how GitHub works and have been searching for a simple ESP cheat for quite some time. Unfortunately, I've been scammed several times. If anyone knows of a reliable ESP cheat, please let me know. Thank you."t.

How about you don't cheat?

The experience of playing a game is ruined when cheaters use underhanded tactics to shoot you from out of nowhere. It's frustrating and can quickly turn a fun game into a tedious one. I'm interested in understanding how the GitHub repository is linked to War Thunder. Can you provide some insight on this?

I honestly have no idea what you are trying to say

llama-for3ver avatar Feb 05 '24 05:02 llama-for3ver

Where can i find how the game calculates impact points for bombs and how the drag on the bomb is calculated? And how could i effectively parse each aircrafts files and pull the bombs it can hold?

Hi, I can't answer the first question but the second yes.

Hi, is this restricted information or you just don't know?

SuperBuster11 avatar Aug 16 '24 00:08 SuperBuster11