Configurações
Introdução
Este documento fornece detalhes sobre o arquivo de configuração da Loja de Roupas e Tatuagem, concentrando-se especialmente nas configurações contidas no arquivo globalconfigs.lua
. O arquivo globalconfigs.lua
pode ser localizado em common/configs/globalconfigs.lua
dentro da estrutura de diretórios do script.
Configurações Padrões
Configurações
token string
Local onde você deverá inserir seu token de autorização
updater boolean
Determina se o script pode executar atualizações automáticas.
Template cópia das configurações
globalconfigs.lua
cfg.token = "seu-token-aqui"
cfg.updater = true
Loja de Roupas
Coordenadas e Caminho de Imagens
globalconfigs.lua
cfg.clothesPaths = "https://guardianstore.com.br/images/Clothes/"
cfg.locateShops = {
{ 71.66,-1398.46,29.38 },
{ -708.57,-160.34,37.42 },
{ -158.67,-296.99,39.74 },
{ 428.92,-799.94,29.5 },
{ -829.48,-1073.44,11.33 },
{ -1192.07,-771.59,17.33 },
{ -1456.77,-240.92,49.81 },
{ 11.83,6513.89,31.88 },
{ 1696.83,4829.46,42.07 },
{ 122.97,-221.51,54.56 },
{ 617.75,2761.7,42.09 },
{ 1190.47,2713.55,38.23 },
{ -3173.31,1046.1,20.87 },
{ -1108.26,2708.85,19.11 },
{ 105.66,-1303.04,28.8 },
{ 1101.26,197.48,-49.44 }
}
Roupas Bloqueadas
cfg.blockedClothes = {
["hat"] = {
[1] = { -- Bloqueio exclusivo para personagens femininos (mp_f_freemode_01).
[`mp_f_freemode_01`] = true,
},
[2] = { -- Bloqueio exclusivo para personagens masculinos (mp_m_freemode_01).
[`mp_m_freemode_01`] = true,
},
[3] = { -- Bloqueio para ambos os sexos, ou seja, nenhum dos modelos de personagens pode usar o "chapéu 1" (mp_m_freemode_01 e mp_f_freemode_01).
[`mp_m_freemode_01`] = true,
[`mp_f_freemode_01`] = true
}
},
["vest"] = {
},
["bag"] = {
},
["decals"] = {
},
["torso"] = {
},
["mask"] = {
},
["tshirt"] = {
},
["bracelet"] = {
},
["accessory"] = {
},
["ear"] = {
},
["glass"] = {
},
["pants"] = {
},
["watch"] = {
},
["arms"] = {
},
["shoes"] = {
}
}
Loja de Tatuagens
Coordenadas e Caminho de Imagens
globalconfigs.lua
cfg.tattoPaths = "https://guardianstore.com.br/images/Tattoo/" -- Coloque o link base da pasta onde estão as imagens das tatuagens
cfg.coordsTatto = {
{ 1322.93,-1652.29,52.27 },
{ -1154.42,-1425.9,4.95 },
{ 322.84,180.16,103.58 },
{ -3169.62,1075.8,20.83 },
{ 1864.07,3747.9,33.03 },
{ -293.57,6199.85,31.48 }
}
Lista de Tatuagem
Download da lista de Tatuagem
Roupas setadas ao abrir a loja de Tatuagens
cfg.clothesTattoos = {
["Male"] = {
["accessory"] = { ["item"] = 0, ["texture"] = 0 },
["watch"] = { ["item"] = -1, ["texture"] = -1 },
["arms"] = { ["item"] = 15, ["texture"] = 0 },
["bracelet"] = { ["item"] = -1, ["texture"] = -1 },
["ear"] = { ["item"] = -1, ["texture"] = 0 },
["glass"] = { ["item"] = 0, ["texture"] = 0 },
["torso"] = { ["item"] = 15, ["texture"] = 0 },
["hat"] = { ["item"] = -1, ["texture"] = -1 },
["tshirt"] = { ["item"] = 15, ["texture"] = 0 },
["pants"] = { ["item"] = 61, ["texture"] = 0 },
["vest"] = { ["item"] = 0, ["texture"] = 0 },
["bag"] = { ["item"] = 0, ["texture"] = 0 },
["shoes"] = { ["item"] = 5, ["texture"] = 0 },
["decals"] = { ["item"] = 0, ["texture"] = 0 },
["mask"] = { ["item"] = 0, ["texture"] = 0 },
},
["Female"] = {
["accessory"] = { ["item"] = 0, ["texture"] = 0 },
["watch"] = { ["item"] = -1, ["texture"] = -1 },
["arms"] = { ["item"] = 15, ["texture"] = 0 },
["bracelet"] = { ["item"] = -1, ["texture"] = -1 },
["ear"] = { ["item"] = -1, ["texture"] = -1 },
["glass"] = { ["item"] = -1, ["texture"] = -1 },
["torso"] = { ["item"] = 15, ["texture"] = 0 },
["hat"] = { ["item"] = -1, ["texture"] = -1 },
["tshirt"] = { ["item"] = 15, ["texture"] = 0 },
["pants"] = { ["item"] = 15, ["texture"] = 0 },
["vest"] = { ["item"] = 0, ["texture"] = 0 },
["bag"] = { ["item"] = 0, ["texture"] = 0 },
["shoes"] = { ["item"] = 5, ["texture"] = 0 },
["decals"] = { ["item"] = 0, ["texture"] = 0 },
["mask"] = { ["item"] = 0, ["texture"] = 0 },
}
}
Last updated