Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Custom JewelBank by louis  (Visto 33251 veces)

0 Miembros and 2 Guests are viewing this topic.

Offline skinmuonline #80 Posteado: January 07, 2022, 12:14:53 PM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 140
  • Gracias recibida: 197
  • br
if (GetKeyState('J') & 0x4000)
      {
         gCustomJewelBank.OpenWindow();
      }

NAOFUCIONA

tenta esse

if (GetKeyState('J') & 0x4000)
      {
         gInterface.Data[eJewelBank_MAIN].OnShow = true;
      }
      break;

FOI NAO


Offline T-LEGENDARY #81 Posteado: January 07, 2022, 12:17:31 PM | Modificado: January 07, 2022, 12:23:01 PM by T-LEGENDARY

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 753
  • Gracias recibida: 12029
  • br
if (GetKeyState('J') & 0x4000)
      {
         gCustomJewelBank.OpenWindow();
      }

NAOFUCIONA
tenta esse

if (GetKeyState('J') & 0x4000)
      {
         gInterface.Data[eJewelBank_MAIN].OnShow = true;
      }
      break;

FOI NAO

coloca esse , no meu ta esse e tenta aperta `j` in game, se nao der revise todo codigo do seu jewel bank algo deve tar errado
      case 0x4A:
      {
         gInterface.Data[eJewelBank_MAIN].OnShow = true;
      }
      break;


esses sao os codigos virtual code
Code: [Select]
	{ VK_LBUTTON, "Left Mouse" },
{ VK_RBUTTON, "Right Mouse" },
{ VK_CANCEL, "Cancel" },
{ VK_MBUTTON, "Middle Mouse" },
{ VK_BACK, "Backspace" },
{ VK_TAB, "TAB" },
{ VK_CLEAR, "Clear" },
{ VK_RETURN, "Enter" },
{ VK_SHIFT, "Shift" },
{ VK_CONTROL, "Control" },
{ VK_MENU, "Alt" },
{ VK_PAUSE, "Pause" },
{ VK_CAPITAL, "CAPS Lock" },
{ VK_ESCAPE, "Escape" },
{ VK_SPACE, "Spacebar" },
{ VK_PRIOR, "Page Up" },
{ VK_NEXT, "Page Down" },
{ VK_END, "End" },
{ VK_HOME, "Home" },
{ VK_LEFT, "Left Arrow" },
{ VK_UP, "Up Arrow" },
{ VK_RIGHT, "Right Arrow" },
{ VK_DOWN, "Down Arrow" },
{ VK_SELECT, "Select" },
{ VK_PRINT, "Print" },
{ VK_EXECUTE, "Execute" },
{ VK_SNAPSHOT, "Print Screen" },
{ VK_INSERT, "Insert" },
{ VK_DELETE, "Delete" },
{ VK_HELP, "Help" },
{ 0x30, "0" },
{ 0x31, "1" },
{ 0x32, "2" },
{ 0x33, "3" },
{ 0x34, "4" },
{ 0x35, "5" },
{ 0x36, "6" },
{ 0x37, "7" },
{ 0x38, "8" },
{ 0x39, "9" },
{ 0x41, "A" },
{ 0x42, "B" },
{ 0x43, "C" },
{ 0x44, "D" },
{ 0x45, "E" },
{ 0x46, "F" },
{ 0x47, "G" },
{ 0x48, "H" },
{ 0x49, "I" },
{ 0x4A, "J" },
{ 0x4B, "K" },
{ 0x4C, "L" },
{ 0x4D, "M" },
{ 0x4E, "N" },
{ 0x4F, "O" },
{ 0x50, "P" },
{ 0x51, "Q" },
{ 0x52, "R" },
{ 0x53, "S" },
{ 0x54, "T" },
{ 0x55, "U" },
{ 0x56, "V" },
{ 0x57, "W" },
{ 0x58, "X" },
{ 0x59, "Y" },
{ 0x5A, "Z" },
{ VK_NUMPAD0, "Numpad 0" },
{ VK_NUMPAD1, "Numpad 1" },
{ VK_NUMPAD2, "Numpad 2" },
{ VK_NUMPAD3, "Numpad 3" },
{ VK_NUMPAD4, "Numpad 4" },
{ VK_NUMPAD5, "Numpad 5" },
{ VK_NUMPAD6, "Numpad 6" },
{ VK_NUMPAD7, "Numpad 7" },
{ VK_NUMPAD8, "Numpad 8" },
{ VK_NUMPAD9, "Numpad 9" },
{ VK_SEPARATOR, "Numpad Seperator" },
{ VK_SUBTRACT, "Numpad Subtract" },
{ VK_DECIMAL, "Numpad Decimal" },
{ VK_DIVIDE, "Numpad Devide" },
{ VK_F1, "F1" },
{ VK_F2, "F2" },
{ VK_F3, "F3" },
{ VK_F4, "F4" },
{ VK_F5, "F5" },
{ VK_F6, "F6" },
{ VK_F7, "F7" },
{ VK_F8, "F8" },
{ VK_F9, "F9" },
{ VK_F10, "F10" },
{ VK_F11, "F11" },
{ VK_F12, "F12" },
{ VK_F13, "F13" },
{ VK_F14, "F14" },
{ VK_F15, "F15" },
{ VK_F16, "F16" },
{ VK_F17, "F17" },
{ VK_F18, "F18" },
{ VK_F19, "F19" },
{ VK_F20, "F20" },
{ VK_F21, "F21" },
{ VK_F22, "F22" },
{ VK_F23, "F23" },
{ VK_F24, "F24" },
{ VK_NUMLOCK, "Numlock" },
{ VK_SCROLL, "Scroll" },
{ VK_LSHIFT, "Left Shift" },
{ VK_RSHIFT, "Right Shift" },
{ VK_LCONTROL, "Left Control" },
{ VK_RCONTROL, "Right Control" },
{ VK_LMENU, "Left Menu" },
{ VK_RMENU, "Right Menu" },
{ VK_PLAY, "Play" },
{ VK_ZOOM, "Zoom" },


Offline skinmuonline #82 Posteado: January 08, 2022, 06:06:13 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 140
  • Gracias recibida: 197
  • br

Offline skinmuonline #83 Posteado: January 08, 2022, 06:37:25 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 140
  • Gracias recibida: 197
  • br


CONSEGUI...AI PAI PARA VAI


Offline GabrielDev #84 Posteado: January 09, 2022, 01:05:45 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 23
  • Gracias recibida: 2
  • br

Offline T-LEGENDARY #85 Posteado: January 14, 2022, 11:28:17 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 753
  • Gracias recibida: 12029
  • br

Offline Specifier #86 Posteado: January 14, 2022, 06:17:47 PM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 748
  • Gracias recibida: 5807
  • gb
---------------------------[NULL]---------------------------------

Offline mugloves99 #87 Posteado: January 14, 2022, 08:40:23 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 75
  • Gracias recibida: 17
  • jp

Offline mugloves99 #88 Posteado: January 14, 2022, 08:40:55 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 75
  • Gracias recibida: 17
  • jp

Offline onlinezajzaj #89 Posteado: January 15, 2022, 07:50:49 AM

  • MAESTRO

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 664
  • Gracias recibida: 19754
  • vn

Gracias:


Offline mugloves99 #90 Posteado: January 15, 2022, 07:54:55 AM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 75
  • Gracias recibida: 17
  • jp

Offline kimrubi #91 Posteado: June 03, 2022, 04:19:45 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 21
  • Gracias recibida: 101
  • vn
At the expansion inventory can't right mouse send jewel to the jewel banking.






Pls support me. Thanks,


Offline PhantomKr #92 Posteado: June 11, 2022, 01:48:56 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 219
  • Gracias recibida: 2265
  • pe
alguien me dice como corregir un error que tengo uso update 15 de louis y se me pega despues de loguear no pasa al selectcharacter

Discord: JeanMois#3323

Offline KhongGianOL #93 Posteado: June 11, 2022, 02:39:58 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 244
  • Gracias recibida: 694
  • vn

@PhantomKr : Skype: keo.lovebus or Zalo: 0938737340...

Be kind, for everyone you meet is fighting their hard battle

Offline kimrubi #94 Posteado: July 06, 2022, 10:55:43 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 21
  • Gracias recibida: 101
  • vn
Hello everyone,

I have issue with jewelbank.

1. Its now used normal, but when I open expand inventory then the error

2. If I open the bank with expand inventory, the error is the opposite

Now normal with expand inventory open

but I close expand inventory then error

Pls support for me.

Thanks all,

Gracias:


Offline Specifier #95 Posteado: July 06, 2022, 03:46:19 PM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 748
  • Gracias recibida: 5807
  • gb
Hello everyone,

I have issue with jewelbank.

1. Its now used normal, but when I open expand inventory then the error

2. If I open the bank with expand inventory, the error is the opposite

Now normal with expand inventory open

but I close expand inventory then error

Pls support for me.

Thanks all,

source not included extended inventory

---------------------------[NULL]---------------------------------

Offline legolas1 #96 Posteado: July 09, 2022, 11:29:26 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 44
  • Gracias recibida: 9
  • cl
Listo , gracias por el aporte  cool2 aplausos



wowwww quedo hermoso, de casualidad no cobras por la instalación? saludos!!


Offline CezarMaster #97 Posteado: August 15, 2022, 12:29:58 PM

  • 0 puntos por ventas
  • *
  • Rank: Liga mayor
  • Posts: 195
  • Gracias recibida: 2581
  • pe


How can i fix the black color when i press jewel bank function, the inventory box comes up with black color How do I remove it?

tengo el mismo error, alguien sabe como solucionarlo ?


Offline sanlp #98 Posteado: December 29, 2022, 08:47:46 AM | Modificado: December 30, 2022, 09:29:48 AM by sanlp

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 53
  • Gracias recibida: 9
  • ar
Buen dia, alguien pudo adaptarlo al season 4?

Creo que me esta faltando corregir el offset de:

SetCompleteHook(0xE8,0x007DD0D9,&InvetoryItemOver);

Puedo extraer jewels del banco pero no puedo insertarlas con Ctrl + click derecho...

La version del cliente es el season 4 que libero louis.

Gracias:


Offline karyyto #99 Posteado: September 03, 2023, 06:00:09 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 2
  • Gracias recibida: 0
  • ar
Hola buenas tardes, si alguien podria darme una mano , descarque el paquete de archivos pero nose en que carpeta va cada uno si alguien me podria dar una manito para instalarlo y agregarlo, estoy usando los files S6 de louis/muemu...gracias.


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
1 Replies
1512 Views
Last post July 19, 2020, 05:15:30 AM
by takumi12
84 Replies
27648 Views
Last post November 19, 2024, 12:28:13 PM
by Wikko0
4 Replies
4545 Views
Last post July 06, 2022, 04:51:26 AM
by vazquezdudley2811
11 Replies
8322 Views
Last post December 23, 2023, 11:56:58 PM
by Saige
9 Replies
4138 Views
Last post January 11, 2024, 12:46:20 AM
by erickmalfoy