Main

Config = {}

Config.Debug = false

Config.Locale = "de"

Config.Notify = function(msg)
  AddTextEntry('Notification', msg)
	BeginTextCommandThefeedPost('Notification')
  EndTextCommandThefeedPostTicker(false, true)
end

Config.HelpNotify = function(msg)
  AddTextEntry('huntingHelpNotify', "~INPUT_CONTEXT~ "..msg)
  DisplayHelpTextThisFrame('huntingHelpNotify', false)
end

Config.Use3DWorldText = true

Config.Keys = {
  ProcessAnimal = "G"
}

Config.Gadgets = {
  Grill = {
    CookingTimePerItem = 10, -- in Secondes
    Price = 1000
  },
  Tracker = {
    Duration = 3, -- in Secondes
    Price = 600
  },
  Bait = {
    RadialBlip = true,
    Duration = 30, -- in Secondes
    Radius = 80,
    Price = 700
  }
}

Config.GrillList = {
  {
    label = "Grilled Deer Meat",
    from = "deer_meat",
    to = "grilled_deer_meat"
  },
  {
    label = "Grilled Boar Meat",
    from = "boar_meat",
    to = "grilled_boar_meat"
  },
  {
    label = "Grilled Pork",
    from = "pork",
    to = "grilled_pork"
  },
  {
    label = "Grilled Beef",
    from = "beef",
    to = "grilled_beef"
  },
  {
    label = "Grilled Chicken Wings",
    from = "chicken_wings",
    to = "grilled_chicken_wings"
  },
  {
    label = "Grilled Lion Meat",
    from = "lion_meat",
    to = "grilled_lion_meat"
  },
  {
    label = "Grilled Rabbit Meat",
    from = "rabbit_meat",
    to = "grilled_rabbit_meat"
  }
}

Last updated