mirror-nourybot/pkg/commands/personal/farm.go

10 lines
373 B
Go
Raw Normal View History

package personal
2021-11-04 18:31:36 +01:00
import "github.com/lyx0/nourybot/cmd/bot"
2021-11-11 20:28:32 +01:00
// Farm responds with osrs wiki farming guide
2021-11-04 18:31:36 +01:00
func Farm(target string, nb *bot.Bot) {
nb.Send(target, "Trees: https://oldschool.runescape.wiki/w/Crop_running#Example_tree_run_sequence")
nb.Send(target, "Herbs: https://oldschool.runescape.wiki/w/Crop_running#Example_allotment,_flower_and_herb_run_sequence")
}