Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Source Louis Emulator S4 S6 S8 (update 13)  (Visto 73470 veces)

0 Miembros and 2 Guests are viewing this topic.

Offline AZURE #20 Posteado: August 16, 2019, 10:52:18 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 267
  • Gracias recibida: 3029
  • cl
al darle build al main todo bien para al ejecutarlo en el cliente se cierra
alguna solucion


Offline BioHaZarD #21 Posteado: August 16, 2019, 10:58:36 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 7
  • Gracias recibida: 0

Offline thangdtqn3 #22 Posteado: August 16, 2019, 11:27:26 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 25
  • Gracias recibida: 18
  • gb
Help me! I configured in "ServerList.dat" "MapServerInfo.dat"
"MainInfo.ini" "ClientInfo.ini"
I was disconnected from the server. Where do I lack config?

Gracias:


Offline TrystVenerious #23 Posteado: August 17, 2019, 12:17:48 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 131
  • Gracias recibida: 30
  • ar
Muchas gracias Louis!! Sin duda uno de los mejores aportes!

Ahora... Alguien tiene alguna guía sobre cómo arrancar a programar? Hahaha


Offline seedmaker #24 Posteado: August 17, 2019, 01:27:23 AM | Modificado: August 17, 2019, 09:37:09 AM by ZabiinoOo

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 140
  • Gracias recibida: 573
  • ph
Here to fix Disconnection

GameServer

Code: [Select]
void InitHackCheck() // OK
{
VM_START

WORD EncDecKey = 0;

for(int n=0;n < sizeof(gServerInfo.m_CustomerName);n++)
{
EncDecKey += (BYTE)(gServerInfo.m_CustomerName[n]^gServerInfo.m_ServerSerial[(n%sizeof(gServerInfo.m_ServerSerial))]);
}

EncDecKey1 = (BYTE)0xE2;
EncDecKey2 = (BYTE)0xFF; // Default is 0x76

EncDecKey1 += LOBYTE(EncDecKey);
EncDecKey2 += HIBYTE(EncDecKey);

GetPrivateProfileString("MHPServerInfo","CustomerName","",MHPCustomerName,sizeof(MHPCustomerName),"..\\Data\\Hack\\MHPServer.ini");

MHPEncDecKey1 = GetPrivateProfileInt("MHPServerInfo","EncDecKey1",0,"..\\Data\\Hack\\MHPServer.ini");

MHPEncDecKey2 = GetPrivateProfileInt("MHPServerInfo","EncDecKey2",0,"..\\Data\\Hack\\MHPServer.ini");

if(MHPEncDecKey1 != 0 || MHPEncDecKey2 != 0)
{
WORD MHPEncDecKey = 0;

for(int n=0;n < sizeof(MHPCustomerName);n++)
{
MHPEncDecKey += MHPCustomerName[n];
}

MHPEncDecKey1 += LOBYTE(MHPEncDecKey);
MHPEncDecKey2 += HIBYTE(MHPEncDecKey);
}

VM_END
}

Gracias:


Offline kayito #25 Posteado: August 17, 2019, 01:35:05 AM

  • MAESTRO

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.035
  • Gracias recibida: 15037
  • ar
Siento mucho que hayas tenido que llegar a esto. Después de tanto trabajo, tener que liberar algo a lo que se le dedicó muchas horas invertidas la verdad no debe ser para nada lindo.
También quiero agradecerte @louis por haber liberado los sources de este update.

Tampoco es que sea una pena, mas bien esta es una situación de ganar-ganar para el. xD

En qué lo beneficia a él tener que "regalar" las sources de lo que le tomó horas de trabajo y vendía hasta que se lo crackearon?


Offline Cartman #26 Posteado: August 17, 2019, 01:38:10 AM

  • Php Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 304
  • Gracias recibida: 11211
  • pe
Here to fix Disconnection

GameServer

void InitHackCheck() // OK
{
   VM_START

   WORD EncDecKey = 0;

   for(int n=0;n < sizeof(gServerInfo.m_CustomerName);n++)
   {
      EncDecKey += (BYTE)(gServerInfo.m_CustomerName[n]^gServerInfo.m_ServerSerial[(n%sizeof(gServerInfo.m_ServerSerial))]);
   }

   EncDecKey1 = (BYTE)0xE2;
   EncDecKey2 = (BYTE)0xFF; // Default is 0x76

   EncDecKey1 += LOBYTE(EncDecKey);
   EncDecKey2 += HIBYTE(EncDecKey);

   GetPrivateProfileString("MHPServerInfo","CustomerName","",MHPCustomerName,sizeof(MHPCustomerName),"..\\Data\\Hack\\MHPServer.ini");

   MHPEncDecKey1 = GetPrivateProfileInt("MHPServerInfo","EncDecKey1",0,"..\\Data\\Hack\\MHPServer.ini");

   MHPEncDecKey2 = GetPrivateProfileInt("MHPServerInfo","EncDecKey2",0,"..\\Data\\Hack\\MHPServer.ini");

   if(MHPEncDecKey1 != 0 || MHPEncDecKey2 != 0)
   {
      WORD MHPEncDecKey = 0;

      for(int n=0;n < sizeof(MHPCustomerName);n++)
      {
         MHPEncDecKey += MHPCustomerName[n];
      }

      MHPEncDecKey1 += LOBYTE(MHPEncDecKey);
      MHPEncDecKey2 += HIBYTE(MHPEncDecKey);
   }

   VM_END
}

error :


Gracias:


Offline seedmaker #27 Posteado: August 17, 2019, 01:39:57 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 140
  • Gracias recibida: 573
  • ph
Recompile DataServer too and your Done..


Offline Cartman #28 Posteado: August 17, 2019, 01:55:55 AM | Modificado: August 17, 2019, 02:13:17 AM by Cartman

  • Php Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 304
  • Gracias recibida: 11211
  • pe


Offline darkjano #29 Posteado: August 17, 2019, 02:47:00 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.042
  • Gracias recibida: 877
  • cl
que buena gente eres louis, en verdad te admiro.


Offline thangdtqn3 #30 Posteado: August 17, 2019, 03:31:01 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 25
  • Gracias recibida: 18
  • gb

Offline thangdtqn3 #31 Posteado: August 17, 2019, 04:17:55 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 25
  • Gracias recibida: 18
  • gb
Here to fix Disconnection

GameServer

void InitHackCheck() // OK
{
   VM_START

   WORD EncDecKey = 0;

   for(int n=0;n < sizeof(gServerInfo.m_CustomerName);n++)
   {
      EncDecKey += (BYTE)(gServerInfo.m_CustomerName[n]^gServerInfo.m_ServerSerial[(n%sizeof(gServerInfo.m_ServerSerial))]);
   }

   EncDecKey1 = (BYTE)0xE2;
   EncDecKey2 = (BYTE)0xFF; // Default is 0x76

   EncDecKey1 += LOBYTE(EncDecKey);
   EncDecKey2 += HIBYTE(EncDecKey);

   GetPrivateProfileString("MHPServerInfo","CustomerName","",MHPCustomerName,sizeof(MHPCustomerName),"..\\Data\\Hack\\MHPServer.ini");

   MHPEncDecKey1 = GetPrivateProfileInt("MHPServerInfo","EncDecKey1",0,"..\\Data\\Hack\\MHPServer.ini");

   MHPEncDecKey2 = GetPrivateProfileInt("MHPServerInfo","EncDecKey2",0,"..\\Data\\Hack\\MHPServer.ini");

   if(MHPEncDecKey1 != 0 || MHPEncDecKey2 != 0)
   {
      WORD MHPEncDecKey = 0;

      for(int n=0;n < sizeof(MHPCustomerName);n++)
      {
         MHPEncDecKey += MHPCustomerName[n];
      }

      MHPEncDecKey1 += LOBYTE(MHPEncDecKey);
      MHPEncDecKey2 += HIBYTE(MHPEncDecKey);
   }

   VM_END
}
I'm still disconnected


Offline c4nhsatcodong #32 Posteado: August 17, 2019, 07:51:00 AM | Modificado: August 17, 2019, 09:38:45 AM by ZabiinoOo

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 361
  • Gracias recibida: 1841
  • vn
Publicar un anuncio Mu Online gratis - Mu Online Community GRATIS.
Post free Mu Online ads - FREE Mu Online Community
https://www.facebook.com/groups/274190243227367/

Gracias:

ichigo, S!ngle, manowwan1, hieuvt, jeuzinn, Rastacode, coolgepds, phuongcuongmsqm, mulatinos, vamchy33, NghienMU, Viper, zhujianhui, hieu95, muphantom, epokiss, CorsarioDgx, MsotoC, nofeara, hola23, vipgale01, nescafe, wildriff66, worldhero, joaoluiz0135, xiazaipw, Sweng, Shellshock, BRUM4T1CK, pulsefire, ezesosa, mantios, kickgamer, mugloves99, armflo12, Dragonvl15, drendy, 153426, ailsoncost, crack018, Shaper, byweltin@gmail.com, tcbaoanh, heyloor, Tomsky75, z348870672, YOUNGJU KIM, beaterhehe, ADM-OMEGA, Van_Bom, zhangjianle865, 1muarcadia1, xuanyuan, victormvw, taovanluc, m4rd0k, samsung13, paizao, 0333111, tiendoanit, ProNexT, 161012, dark, nguqua, lorranmota, zyghydev, Liaon, KhongGianOL, Jospiter, Shrimp, emersonx13, pain0708, demmian2, Miroki, theanh27, AZURE, tsx24, leones55, dhaomao, malaquias, pafa7a, briner2016, muarce, npt.formu, RafhaelSouza, conchetumare, comelon666, mistertito, KOKITO, itaialroy, matheusgom, gredy, sergio466, axeman192, jeronemo, ConejoMalo, aof10022535, xunxolost, beibei, xuanthanhyt, maphewxander, stark98, martinez, vnshell, Eddael, Crowley, Imperius.Server, laulinh2, TzCr4ck, ofignacio, JavixFer, jonamix, tdthanh95, Sandrix, Alexsupra0, Lil Kid, Hessen, bimaloha, modaxd, Overkomp, Hoangsy99, yan1ycc, traxxx, POSTHanc, 423646802, thuyet951, malekeith, Null, MATHASNBA, djagripnos, higlans, evowex, LEITOK, frankyori, abraao, sagat202, erickmalfoy, beecubin, Dexign, santos, ZTMarkz, kaisudo, kingow, n0tee, harry130, mckjohan2019, fcgame, 308508743, OtixelaxD, besiktas, lDrakol, hamiltonsl, binhchivn, Flash, InFamous, xdjoa, Bk3Zell, NguyenAnh, esteban, C4nn4b1s, digimoncik, hiep, bollanog, nandied, PachoRasta, pquintal, GATITO, deathsquad, BaTmaaN, RaStraBaN, AreS, pravednik, TheKing027, inax123, NoobDK, malon2k, gauyeutho, T-LEGENDARY, Gamers, mastermcy, tieugiao, osvaldo1811, Nexus, Cartman, 1732313, Shaman, Hax.Gaming, gacon201294, Pyke, PhantomKr

Offline AZURE #33 Posteado: August 17, 2019, 10:16:42 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 267
  • Gracias recibida: 3029
  • cl
SOLO HAY QUE METER UN POCO DE MANO PERO ANDA AL 100%

Gracias:


Offline gacon201294 #34 Posteado: August 17, 2019, 10:20:34 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 91
  • Gracias recibida: 22
  • vn

Offline Shaman #35 Posteado: August 17, 2019, 10:25:45 AM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 67
  • Gracias recibida: 2899
  • ir
Que Excelencia, @louis Esto Es Una Bendicion De Tu Parte Para La Comunidad Genial... Felicidades Por Gran Aporte :D


Offline idpnguyeni #36 Posteado: August 17, 2019, 10:46:22 AM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 72
  • Gracias recibida: 15
  • vn
Please fix : No load ranking, event,...




Offline 1732313 #37 Posteado: August 17, 2019, 01:53:34 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 63
  • Gracias recibida: 4
  • ru

Offline louis #38 Posteado: August 17, 2019, 06:10:51 PM

  • MAESTRO

  • US. DE HONOR

  • LEYENDA

  • C++ Coder
  • +11 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 844
  • Gracias recibida: 36392
  • br
Ya fijé el problema del connect y actualizado el link, solo bajar de nuevo...

Update 36 is ready!!!

Gracias:


Offline AZURE #39 Posteado: August 17, 2019, 07:50:18 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 267
  • Gracias recibida: 3029
  • cl

Gracias:


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
89 Replies
22036 Views
Last post November 20, 2021, 04:00:17 PM
by djagripnos
211 Replies
34030 Views
Last post August 27, 2023, 01:38:23 AM
by OBBY
54 Replies
11424 Views
Last post October 29, 2019, 11:10:42 AM
by hiep
3 Replies
1881 Views
Last post February 28, 2020, 11:17:49 PM
by ConejoMalo
98 Replies
22264 Views
Last post March 17, 2024, 06:25:18 PM
by hola23