Instead of it doing a "chat" announcement of "you got a berry" what about doing it like this?

so it announces "berries +0x" or low-grade
Merged post
question, can you use:
inventory.giveto {playername} apple 1
versus using:
player.inventory.GiveItem(ItemManager.CreateByName("apple"));
The difference between the two (that I have seen) top one is basically an RCON / F1 (with permissions) command that gives you that "Apple" +1 notification on the right but always does a global broadcast.
Any help in what direction to turn this ship would be appreciated :)
Merged post
if the plugin author is interested, the answer to adding bottom right side pop-up notification:
void OnCollectiblePickup(Item item, BasePlayer player)
{
//Get berry from hemp
if (item.info.displayName.english.Contains("Cloth"))
{
if (Oxide.Core.Random.Range(0, 100) < berryChance)
{
//player.inventory.GiveItem(ItemManager.CreateByName(berryItem, Oxide.Core.Random.Range(berryAmountMin, berryAmountMin + 1)));
Count = Oxide.Core.Random.Range(berryAmountMin, berryAmountMin + 1);
player.inventory.GiveItem(ItemManager.CreateByItemID(berryItem, Count), player.inventory.containerMain);
player.Command("note.inv", berryItem, Count);
Merged post
"When you can't edit your post because the post just merged with a previous post of yours" OP should always be able to edit their own post(s).

so it announces "berries +0x" or low-grade
Merged post
question, can you use:
inventory.giveto {playername} apple 1
versus using:
player.inventory.GiveItem(ItemManager.CreateByName("apple"));
The difference between the two (that I have seen) top one is basically an RCON / F1 (with permissions) command that gives you that "Apple" +1 notification on the right but always does a global broadcast.
Any help in what direction to turn this ship would be appreciated :)
Merged post
if the plugin author is interested, the answer to adding bottom right side pop-up notification:
#Regional Variables
public int Count#Regional Hooks
enablePopups = Convert.ToBoolean(GetVariable("Option", "Enable broadcast", true));void OnCollectiblePickup(Item item, BasePlayer player)
{
//Get berry from hemp
if (item.info.displayName.english.Contains("Cloth"))
{
if (Oxide.Core.Random.Range(0, 100) < berryChance)
{
//player.inventory.GiveItem(ItemManager.CreateByName(berryItem, Oxide.Core.Random.Range(berryAmountMin, berryAmountMin + 1)));
Count = Oxide.Core.Random.Range(berryAmountMin, berryAmountMin + 1);
player.inventory.GiveItem(ItemManager.CreateByItemID(berryItem, Count), player.inventory.containerMain);
player.Command("note.inv", berryItem, Count);
Merged post
"When you can't edit your post because the post just merged with a previous post of yours" OP should always be able to edit their own post(s).