--[[ DON'T EDIT THIS // NE PAS MODIFIER ]]--
local Keys = {
["ESC"] = 322, ["F1"] = 288, ["F2"] = 289, ["F3"] = 170, ["F5"] = 166, ["F6"] = 167, ["F7"] = 168, ["F8"] = 169, ["F9"] = 56, ["F10"] = 57,
["~"] = 243, ["1"] = 157, ["2"] = 158, ["3"] = 160, ["4"] = 164, ["5"] = 165, ["6"] = 159, ["7"] = 161, ["8"] = 162, ["9"] = 163, ["-"] = 84, ["="] = 83, ["BACKSPACE"] = 177,
["TAB"] = 37, ["Q"] = 44, ["W"] = 32, ["E"] = 38, ["R"] = 45, ["T"] = 245, ["Y"] = 246, ["U"] = 303, ["P"] = 199, ["["] = 39, ["]"] = 40, ["ENTER"] = 18,
["CAPS"] = 137, ["A"] = 34, ["S"] = 8, ["D"] = 9, ["F"] = 23, ["G"] = 47, ["H"] = 74, ["K"] = 311, ["L"] = 182,
["LEFTSHIFT"] = 21, ["Z"] = 20, ["X"] = 73, ["C"] = 26, ["V"] = 0, ["B"] = 29, ["N"] = 249, ["M"] = 244, [","] = 82, ["."] = 81,
["LEFTCTRL"] = 36, ["LEFTALT"] = 19, ["SPACE"] = 22, ["RIGHTCTRL"] = 70,
["HOME"] = 213, ["PAGEUP"] = 10, ["PAGEDOWN"] = 11, ["DELETE"] = 178,
["LEFT"] = 174, ["RIGHT"] = 175, ["TOP"] = 27, ["DOWN"] = 173,
["NENTER"] = 201, ["N4"] = 108, ["N5"] = 60, ["N6"] = 107, ["N+"] = 96, ["N-"] = 97, ["N7"] = 117, ["N8"] = 61, ["N9"] = 118
}
--[[ DON'T EDIT THIS // NE PAS MODIFIER ]]--
Config = {}
Config.UseLegacy = true
Config.ESXEventName = "esx:getSharedObject"
Config.ESXResourceName = "es_extended"
Config.lang = 'en' --[[ YOU CAN CHOOSE YOUR LANGUAGE BETWEEN fr AND en // VOUS POUVEZ CHOISIR VOTRE LANGUE ENTRE fr ET en ]]--
Language = Locales[Config.lang]
Config.notificationTexture = "CHAR_LAMAR"
Config.notificationIconType = 1
Config.useWeapon = true
--[[
IF YOU USE THIS SCRIPT / SI TU UTILISES CE SCRIPT
https://github.com/EthanPeacock/progressBars
]]--
Config.useProgresseBar = false
Config.keys = {
["interact"] = Keys["E"], -- Key for interact
}
Config.WeaponList = {
{
name = "WEAPON_KNIFE",
required = true,
},
{
name = "WEAPON_MACHETE",
required = true,
},
{
name = "WEAPON_DAGGER",
required = true,
},
{
name = "WEAPON_SWITCHBLADE",
required = true,
}
}
Config.Animals = {
boar = {
name = 'boar', --[[ DON'T EDIT THIS ]]--
model = 'a_c_boar', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_boar'), --[[ DON'T EDIT THIS ]]--
label = Language["boar"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
{
item = "leather",
label = "Leather",
min = 1,
max = 2,
},
},
},
chickenhawk = {
name = 'chickenhawk', --[[ DON'T EDIT THIS ]]--
model = 'a_c_chickenhawk', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_chickenhawk'), --[[ DON'T EDIT THIS ]]--
label = Language["chickenhawk"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
},
},
cormorant = {
name = 'cormorant', --[[ DON'T EDIT THIS ]]--
model = 'a_c_cormorant', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_cormorant'), --[[ DON'T EDIT THIS ]]--
label = Language["cormorant"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
},
},
coyote = {
name = 'coyote', --[[ DON'T EDIT THIS ]]--
model = 'a_c_coyote', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_coyote'), --[[ DON'T EDIT THIS ]]--
label = Language["coyote"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
{
item = "leather",
label = "Leather",
min = 1,
max = 2,
},
},
},
deer = {
name = 'deer', --[[ DON'T EDIT THIS ]]--
model = 'a_c_deer', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_deer'), --[[ DON'T EDIT THIS ]]--
label = Language["deer"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
{
item = "leather",
label = "Leather",
min = 1,
max = 2,
},
},
},
mtlion = {
name = 'mtlion', --[[ DON'T EDIT THIS ]]--
model = 'a_c_mtlion', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_mtlion'), --[[ DON'T EDIT THIS ]]--
label = Language["mtlion"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
{
item = "leather",
label = "Leather",
min = 1,
max = 2,
},
},
},
rabbit = {
name = 'rabbit', --[[ DON'T EDIT THIS ]]--
model = 'a_c_rabbit_01', --[[ DON'T EDIT THIS ]]--
hash = GetHashKey('a_c_rabbit_01'), --[[ DON'T EDIT THIS ]]--
label = Language["rabbit"],
butcheringTime = 7, -- in seconds
items = {
{
item = "meat",
label = "Meat",
min = 1,
max = 3,
},
},
},
}