I want to put this console command to give some "Coins" to other player.
The problem is... i dont know how to do that.
Comand from console: givecoins name or steamid - the ammount of coins will be configured in (config.GiveCoins) Please help me with that.
[ConsoleCommand("givecoins")]
private void CmdExpGive(ConsoleSystem.Arg args)
{
// i wanna put in this par of the code to give coins to other players
BasePlayer player = args.Player();
if(player == null) return;
ExShops[player.userID].EXP += config.GiveCoins;
return;
}