Helicopter Tiers

Hello,

Having issues with this mod, when destroyed it will not spawn any loot and the heli respawns on fire and cannot be killed but still attacks on fire
 

Orange

Administrator
Hello, thanks for you report. Can you please provide any kind of video for better understanding and your plugin names list
 

Orange

Administrator
I see. Can you check what will be in combating after you hit it? And config of helicopter tiers please
 
I couldn't find anything on the ghost heli that comes after and there is no actual hitmarkers on it, there is only logs for the real one


Code:
{
  "Select random tier if no tiers was affected by chance": true,
  "Values": [
    {
      "Shortname": "tier1",
      "Enabled": true,
      "Display name": "Tier 1 Heli",
      "Broadcast in chat": true,
      "Chance": 50.0,
      "Health": 10000,
      "Main Rotor Health": 900,
      "Second Rotor Health": 500,
      "Bullet damage": 20.0,
      "Max speed": 50.0,
      "Crates to spawn minimal": 3,
      "Crates to spawn maximal": 4,
      "Instant crates unlock": true,
      "Protect spawn position": true,
      "Spawn on specific positions": false,
      "Specific positions": [
        {
          "x": 0.0,
          "y": 0.0,
          "z": 0.0
        },
        {
          "x": 100.0,
          "y": 0.0,
          "z": 100.0
        }
      ]
    },
    {
      "Shortname": "tier2",
      "Enabled": true,
      "Display name": "Tier 2 Heli",
      "Broadcast in chat": true,
      "Chance": 50.0,
      "Health": 15000,
      "Main Rotor Health": 1400,
      "Second Rotor Health": 700,
      "Bullet damage": 25.0,
      "Max speed": 50.0,
      "Crates to spawn minimal": 4,
      "Crates to spawn maximal": 6,
      "Instant crates unlock": true,
      "Protect spawn position": true,
      "Spawn on specific positions": false,
      "Specific positions": [
        {
          "x": 0.0,
          "y": 0.0,
          "z": 0.0
        },
        {
          "x": 100.0,
          "y": 0.0,
          "z": 100.0
        }
      ]
    },
    {
      "Shortname": "tier3",
      "Enabled": true,
      "Display name": "Tier 3 Heli",
      "Broadcast in chat": true,
      "Chance": 50.0,
      "Health": 200000,
      "Main Rotor Health": 1800,
      "Second Rotor Health": 1000,
      "Bullet damage": 35.0,
      "Max speed": 50.0,
      "Crates to spawn minimal": 5,
      "Crates to spawn maximal": 6,
      "Instant crates unlock": true,
      "Protect spawn position": true,
      "Spawn on specific positions": false,
      "Specific positions": [
        {
          "x": 0.0,
          "y": 0.0,
          "z": 0.0
        },
        {
          "x": 100.0,
          "y": 0.0,
          "z": 100.0
        }
      ]
    }
  ]
}
 
I have found the issue
"Instant crates unlock": false,
"Protect spawn position": false,

"Instant crates unlock" set to true is causing it to do a ghost heli without crates when it dies
"Protect spawn position" set to true is causing the heli to spin around circles where to spawns at
 
Last edited:

Orange

Administrator
I have found the issue
"Instant crates unlock": false,
"Protect spawn position": false,

"Instant crates unlock" set to true is causing it to do a ghost heli without crates when it dies
"Protect spawn position" set to true is causing the heli to spin around circles where to spawns at
Thanks, I will check that out, that helps to investigate problems
 
Top