How do I change the “Oh I found” message? ForagePlants

Frequently ASKED Questions by THE Crimson Creek TEAM

How do I change the “Oh I found” message? ForagePlants

server.lua
	local PlayerFeedBackString1 = "Oh, I found "
	local PlayerFeedBackString2 = " " 

They are attached around the plan the player receives like this.

server.lua
PlayerFeedBackString2 = amountToGive .. " " .. _itemLabel .. PlayerFeedBackString2	  
local PlayerFeedBackString = PlayerFeedBackString1 .. " " .. PlayerFeedBackString2

So you can add the beginning of your message in “PlayerFeedBackString1” and the end of your message in “PlayerFeedBackString2 ” and it will build the resulting feedback with the plant, seed, or fruit the player is being given.

Dragon Codes