AK47 inventory
Instalation guide for ak47
STEP 1
GO TO ak47-inventory/config/config.lua -> line ~41 Copy and paste the content after last item on Config.ShowValueFromItemInfo
alias = true,
currentFreq = true,
battery = true,
batLevel = true
STEP 2
GO TO ak47-inventory/locales/your lenguage.lua -> line ~41 Copy and paste the content on the end of the file.
alias = 'Alias',
currentFreq = 'Current Freq',
battery = 'Battery',
batLevel = 'Battery'
STEP 3
GO TO ak47-inventory/shared/items.lua Copy and paste the content on the end of the file.
["radio_red"] = {
name = "radio_red",
label = "Color frame red",
weight = 500,
type = "item",
close = false,
},
["radio_blue"] = {
name = "radio_blue",
label = "Color frame blue",
weight = 500,
type = "item",
close = false,
},
["radio_purple"] = {
name = "radio_purple",
label = "Color frame purple",
weight = 500,
type = "item",
close = false,
},
["radio_pink"] = {
name = "radio_pink",
label = "Color frame pink",
weight = 500,
type = "item",
close = false,
},
["radio_lightblue"] = {
name = "radio_lightblue",
label = "Color frame lightblue",
weight = 500,
type = "item",
close = false,
},
["radio_orange"] = {
name = "radio_orange",
label = "Color frame orange",
weight = 500,
type = "item",
close = false,
},
["radio_yellow"] = {
name = "radio_yellow",
label = "Color frame yellow",
weight = 500,
type = "item",
close = false,
},
["radio_green"] = {
name = "radio_green",
label = "Color frame green",
weight = 500,
type = "item",
close = false,
},
["radio_white"] = {
name = "radio_white",
label = "Color frame white",
weight = 500,
type = "item",
close = false,
},
["radio_grey"] = {
name = "radio_grey",
label = "Color frame grey",
weight = 500,
type = "item",
close = false,
},
["bat_low"] = {
name = "bat_low",
label = "Cheap battery",
weight = 500,
type = "item",
close = false,
},
["bat_medium"] = {
name = "bat_medium",
label = "Common battery",
weight = 500,
type = "item",
close = false,
},
["bat_high"] = {
name = "bat_high",
label = "Premium battery",
weight = 500,
type = "item",
close = false,
},
["chip_5g"] = {
name = "chip_5g",
label = "5G Chip",
weight = 500,
type = "item",
close = false,
},
["chip_ghost"] = {
name = "chip_ghost",
label = "Ghost Chip",
weight = 500,
type = "item",
close = false,
},
["chip_antihack"] = {
name = "chip_antihack",
label = "Antihack Chip",
weight = 500,
type = "item",
close = false,
},
["mic_walkie"] = {
name = "mic_walkie",
label = "Talkie Shoulder Microphone",
weight = 500,
type = "item",
close = false,
},
["hack_chip"] = {
name = "hack_chip",
label = "Hack chip",
weight = 500,
type = "item",
close = false,
},
["radio_server"] = {
name = "radio_server",
label = "Server",
weight = 500,
type = "item",
close = false,
},
["radio_monitor"] = {
name = "radio_monitor",
label = "Monitor of hospital",
weight = 500,
type = "item",
close = false,
},
["radio_server_bat"] = {
name = "radio_server_bat",
label = "Car battery",
weight = 500,
type = "item",
close = false,
},
["radio_cables"] = {
name = "radio_cables",
label = "Cables for battery",
weight = 500,
type = "item",
close = false,
},
["radio_jammer"] = {
name = "radio_jammer",
label = "Radio Jammer",
weight = 500,
type = "item",
close = false,
},
["portable_bat"] = {
name = "portable_bat",
label = "Portable battery",
weight = 500,
type = "item",
close = false,
},
["radio_tool"] = {
name = "radio_tool",
label = "Tool for radio",
weight = 500,
type = "item",
close = true,
},
["radio_broken"] = {
name = "radio_broken",
label = "Broken Radio",
weight = 500,
type = "item",
close = false,
},
["chip_waterproof"] = {
name = "chip_waterproof",
label = "Waterproof radio",
weight = 500,
type = "item",
close = false,
},
Last updated
Was this helpful?