----------------------------------------- -- Script: Banco De J�ias -- Criador: Pedro Borges -- Skype: live:ppborges93 -- WhatsApp: +55 51 99507-8287 ----------------------------------------- BancoDeJoias_Define = {} -- true ativa o sistema, false desativa BancoDeJoias_Define.Ativado = true -- Tecla de atalhao para abrir a janela (coloque -1 para desativar) BancoDeJoias_Define.Shortcut = Keys.J -- Id da janela BancoDeJoias_Define.WindowID = 58 -- N�mero do packet usado no sistema BancoDeJoias_Define.Packet = 0x3A -- Id das imagens carregadas no LoadImages BancoDeJoias_Define.Images = { [1] = 10588, [2] = 10589, [3] = 10590, [4] = 10591, [5] = 10592, [6] = 10593, [7] = 10594, } BancoDeJoias_Define.Config = { {ListID = 1 , Index = GET_ITEM(12, 15), Nome = "Jewel of Chaos", Position = {X = 2, Y = -3, W = 18, H = 18}}, {ListID = 2 , Index = GET_ITEM(14, 13), Nome = "Jewel of Bless", Position = {X = 2, Y = 0, W = 18, H = 18}}, {ListID = 3 , Index = GET_ITEM(14, 14), Nome = "Jewel of Soul", Position = {X = 2, Y = 0, W = 18, H = 18}}, {ListID = 4 , Index = GET_ITEM(14, 16), Nome = "Jewel of Life", Position = {X = 2, Y = 0, W = 18, H = 18}}, {ListID = 5 , Index = GET_ITEM(14, 22), Nome = "Jewel of Creation", Position = {X = 2, Y = 0, W = 18, H = 18}}, {ListID = 6 , Index = GET_ITEM(14, 31), Nome = "Jewel of Guardian", Position = {X = 2, Y = -1, W = 18, H = 18}}, {ListID = 7 , Index = GET_ITEM(14, 41), Nome = "Gemstone", Position = {X = 2, Y = 5, W = 18, H = 18}}, {ListID = 8 , Index = GET_ITEM(14, 42), Nome = "Jewel of Harmony", Position = {X = 2, Y = 4, W = 18, H = 18}}, {ListID = 9 , Index = GET_ITEM(14, 43), Nome = "Lower Refining Stone", Position = {X = 2, Y = 4, W = 18, H = 18}}, {ListID = 10, Index = GET_ITEM(14, 44), Nome = "Higher Refining Stone", Position = {X = 2, Y = 4, W = 18, H = 18}}, -- (a lista PRECISA ter o mesmo tamanho da do servidor - Configs/Jewel Bank.lua) } -- [0] = joia unitaria; [1..3] = bundle +0/+1/+2 (10/20/30 joias) - Season 3. -- So Bless e Soul tem bundle no S3 (Bundle = true); as outras so nivel 0. -- (DEVE ser identico ao do servidor - Configs/Jewel Bank.lua) BancoDeJoias_Define.ValorPorLevel = { [0] = 1, [1] = 10, [2] = 20, [3] = 30, } -- Botoes de quantidade (0 = Max: ate o espaco livre ao retirar / ate o que tem no inventario ao depositar) BancoDeJoias_Define.Quantias = { 1, 5, 10, 20, 30, 40, 64, 0 } -- 64 = inventario inteiro (8x8); Max = o que couber/o que tem BancoDeJoias_Define.SelectedQty = 1 BancoDeJoias_Define.Texts = { ["Eng"] = { [1] = "Jewel Bank", [2] = "Withdraw", [3] = "Select one jewel to start", [4] = "Amount:", [5] = "Deposit", [6] = "Free slots: %d | In inventory: %d", }, ["Por"] = { [1] = "Banco De J�ias", [2] = "Retirar", [3] = "Selecione uma j�ia para come�ar", [4] = "Quantidade:", [5] = "Depositar", [6] = "Slots livres: %d | No inventario: %d", }, ["Spn"] = { [1] = "Banco de Joyas", [2] = "Sacar Joya", [3] = "Seleccione una joya para comenzar", [4] = "Cantidad:", [5] = "Depositar", [6] = "Slots libres: %d | En inventario: %d", } } return BancoDeJoias_Define