Setting it up via server rewards?Solved
ive got  "Call Heli": {
"description": "Calls the Heli extremely close to you (please only use if no heli is out)",
"iconName": null,
"commands": [
"personalheli.call {steamId}",
"say Heli called by $player.name, to their location. Please do not interfere with it unless you have permission."
],
"displayName": "Call Heli to you",
"cost": 1600,
"cooldown": 0
},

But when they try to do it , it doesnt call the heli in? what am i doing wrong?
That command won't work unless everyone on your server has admin permissions as it is an admin console command.

Give default player group this permission : personalheli.use

Change your server rewards command to this : 

"Call Heli": {
"description": "Calls the Heli extremely close to you (please only use if no heli is out)",
"iconName": null,
"commands": [
"callheli $player.id 1 true",
"say Heli called by $player.name, to their location. Please do not interfere with it unless you have permission."
],
"displayName": "Call Heli to you",
"cost": 1600,
"cooldown": 0
},​
In response to LoneWolfAU ():
That command won't work unless everyone on your server has admin permissions as it is an admin conso...

Thanks for your input but it's incorrect:

no permissions required to default or admin group (serverrewards executes command as server console, so doesn't require any permissions)

minimal reward command:

    "heli": {
      "description": "",
      "iconName": null,
      "commands": [
        "personalheli.call $player.id",
        "say The helicopter was called to player <color=#64ff64>$player.name</color>"
      ],
      "displayName": "callheli to you",
      "cost": 1,
      "cooldown": 0


`personalheli.use` persmission - is a permission to use chat command /callheli
`personalheli.console` is a permission to use console command personalheli.call {steamid} (or $player.id) if admin wants to do it right in game by calling f1 console, it also could be called from server console (rcon).

Cool, thanks for clearing that up :)
Locked automatically