Heli.call command not workingNot An Issue
Hello, 
I want to have possibility to buy a patrol hélicopter event. But the command heli.call doesn't work.
This is my try:
"Patrol Helicopter": {
      "DisplayName": "Patrol Helicopter",
      "Shortname": "patrol.helicopter",
      "EnableBuy": true,
      "EnableSell": false,
      "Image": "https://i.imgur.com/vI6LwCZ.png",
      "SellPrice": 1.0,
      "BuyPrice": 2000.0,
      "BuyCooldown": 0,
      "SellCooldown": 0,
      "KitName": null,
      "Command": [
        "heli.call"
      ],
      "SkinId": 0
    },​

Thank You In Advance !

Unless you have a plugin that provides the heli.call command, then I'm pretty sure that command is client-side only.

The plugin uMod - Heli Control by Shady

     "Heli drop": {
      "DisplayName": "Heli drop",
      "Shortname": "helidrop",
      "EnableBuy": true,
      "EnableSell": false,
      "Image": "https://i.imgur.com/vI6LwCZ.png",
      "SellPrice": 1.0,
      "BuyPrice": 1.0,
      "BuyCooldown": 0,
      "SellCooldown": 0,
      "KitName": null,
      "Command": [
        "callheli pos $player.x $player.y $player.z"
      ],
      "SkinId": 0
    },

+ this example item ^ works. Although the heli doesn't attack you it does spawn above the player and flys around the map from what i could see. 

Locked automatically