Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: MuEmu-0.97k-kayito Versión MySQL Update 23 Custom By Siniestro+tutorial[VIDEO]  (Visto 9088 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline xXSiniestroXx Posteado: April 30, 2024, 02:03:55 AM

  • +2 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 341
  • Gracias recibida: 2474
  • ve
Saludos gente de TSM

Voy hacer breve ya es muy tarde y quiero dormir.

Versión original:

https://github.com/nicomuratona/MuEmu-0.97k-kayito/tree/master-mysql

POST:
Files MuEmu 0.97k ORIGINAL + FULL SOURCE - kayito

Mi Versión Basada en MySQL (la que prefiero):

Update 1:

- Add InfinityArrow.
- Add command READD.
- Add System Credit.
- Add CustomMonsterReward.
- CustomAttack.
- CustomPick.

Ya pasa a segundo plano la versión SQL Server, igual si desean que les trabaje esa versión le llegan el privado.

VIDEO:



LINK:



Salu2

Gracias:

KatiaSishost, imjay8, imak47, cuongh, xrisosx, juani, zveroboy, VadimashRS, tuyentc, 776655, atati, pinchareek, zeronycs, llhenryxpxx, bazzlaiter, davirodr, markos182, lemg2408, lukaon, gohancs, onrelaxam, djkaku, night86, Waty32, hicky, satan2k24, test10, Gazzu, andreyzz, Gamst, amaral51, wrestler, dannys, Buff, xpollox101, djdennes, TATO2303, xpzinho, mymdallask, k33n00, Dieguinho, ongus, adriels01, Demonu, waayangel, fenimxg, hola23, ashlay, liamacosta, silvernot, elcaverao, Myxtein, czrdiamond, victorrz17, ryz3n, tanju02, yaoge, volps, ElTachii, danilo7799, eliarwis, Vito36, mania, Xiris215, mugloves99, Betell Host, ques44, fikret_6565, rafah102, muwells6, cheduong, nunuyjuan1231, ziquielbr, Joaquinqq, Yancarlos, santi90, EroS2024, franchezca2024, andyw, gusano1974, augustoav, Part1zanBelarus, redf0x, armus, MatiasBaxter, jonathadll, hoangtammedia, sukerwold, oreis, lanxin3243, anjazz, jode, 689072@gmail.com, DrakenBk, tiendv, wolffrox, Ga4umy4u, 774455, punktano1, MU-Soul, Matt1995, phuongcuongmsqm, usersa, zinfinal, decocwb, cusadmin, bond2012, gicorox, beibei, AnDeR, elmaury99, nopelingrush, voyvoy, musivian, datos32, czekay, ms5163072511, caoboivip, imzonnet, gbllima, hackz95, ryuuzaki, Bauza, sobi83, lucasvieira, kennrj, junao, sayf, johnoliveirayt, matheusgomesb, dab30, flako12, darkjano, bebeyim, drake95, NghienMU, kini, frenea, idinero, wxziyo, 八零宙斯, Joe The Mage, kelubi1980, elmaspelot, exequiel12, donald9696, delvador, Greenland, hammerle, ogdarksoul, setokaibaster, kamillo88, Eronrw, PowerNet, MichaelxD, dakosmu, Dizzy, xeru00, BaTmaaN, hodias, KangShiva95, dreams, kekedodo, hlinxuan20, kove0816, mauri64, caciqueua, Fantasmita948, IsaacSabir, Fakuu08, Thedanier, brancaa1564, ddjrickex, zHammer, Azzlaer, kimrubi, alditoxd, iopq123, ahihigo, Ivanovic, wenleiady, xhwlit, Lemaitre, diou1908, Rindy, nsynecs, giangbana, Eymen2121, mu2020, bangtamvnn, ZTMarkz, 452745444, showmax, deathsquad, djagripnos, 297457989, rbfd, kayito, ledemkhoc, muedit, ZabiinoOo, unico

Offline kayito #1 Posteado: April 30, 2024, 07:15:17 AM

  • MAESTRO

  • US. DE HONOR

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.086
  • Gracias recibida: 20233
  • ar
Buen aporte. Si a más gente le interesa, puedo llegar a hacer un video explicando cómo integrar el sistema de MySQL a los files basados en MuEmu

Gracias:


Offline Rindy #2 Posteado: April 30, 2024, 02:26:04 PM | Modificado: April 30, 2024, 10:43:00 PM by Rindy

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 78
  • Gracias recibida: 1749
  • gb
void CQueryManager::BindParameterAsString(int ParamNumber,void* InBuffer,int ColumnSize) // OK
{
   this->m_SQLBindValue[(ParamNumber-1)] = SQL_NTS;

   SQLBindParameter(this->m_STMT,ParamNumber,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_VARCHAR,ColumnSize,0,InBuffer,0,&this->m_SQLBindValue[(ParamNumber-1)]);


}

void CQueryManager::BindParameterAsBinary(int ParamNumber,void* InBuffer,int ColumnSize) // OK
{
this->m_SQLBindValue[(ParamNumber-1)] = ColumnSize;

SQLBindParameter(this->m_STMT,ParamNumber,SQL_PARAM_INPUT,SQL_C_BINARY,SQL_VARBINARY,ColumnSize,0,InBuffer,0,&this->m_SQLBindValue[(ParamNumber-1)]);
}


how to convert it to mysql ?



Offline Rindy #3 Posteado: April 30, 2024, 03:25:54 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 78
  • Gracias recibida: 1749
  • gb

Offline kayito #4 Posteado: April 30, 2024, 06:20:19 PM

  • MAESTRO

  • US. DE HONOR

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.086
  • Gracias recibida: 20233
  • ar
Code: [Select]
void CQueryManager::BindParameterAsString(int ParamNumber,void* InBuffer,int ColumnSize) // OK
{
this->m_SQLBindValue[(ParamNumber-1)] = SQL_NTS;

SQLBindParameter(this->m_STMT,ParamNumber,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_VARCHAR,ColumnSize,0,InBuffer,0,&this->m_SQLBindValue[(ParamNumber-1)]);
}

void CQueryManager::BindParameterAsBinary(int ParamNumber,void* InBuffer,int ColumnSize) // OK
{
this->m_SQLBindValue[(ParamNumber-1)] = ColumnSize;

SQLBindParameter(this->m_STMT,ParamNumber,SQL_PARAM_INPUT,SQL_C_BINARY,SQL_VARBINARY,ColumnSize,0,InBuffer,0,&this->m_SQLBindValue[(ParamNumber-1)]);
}

how to convert it to mysql ?

You can view my QueryManager in the source code of the Github repository. Just switch to "master-mysql" branch and download everything or just enter in the JoinServer or DataServer QueryManager.cpp and QueryManager.h to see how i did it. (i used an external library to work with MySQL).

convert ms sql to mysql database



This only works with DataBase Schema but doesn't give you the Stored Procedures. I recommend you to use this to define the DataBase Schema and using some AI like ChatGPT to adapt each Stored Procedure one by one.

Gracias:


Offline Rindy #5 Posteado: April 30, 2024, 10:43:10 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 78
  • Gracias recibida: 1749
  • gb
void CQueryManager::BindParameterAsString(int ParamNumber,void* InBuffer,int ColumnSize) // OK
{
   this->m_SQLBindValue[(ParamNumber-1)] = SQL_NTS;

   SQLBindParameter(this->m_STMT,ParamNumber,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_VARCHAR,ColumnSize,0,InBuffer,0,&this->m_SQLBindValue[(ParamNumber-1)]);


}

void CQueryManager::BindParameterAsBinary(int ParamNumber,void* InBuffer,int ColumnSize) // OK
{
this->m_SQLBindValue[(ParamNumber-1)] = ColumnSize;

SQLBindParameter(this->m_STMT,ParamNumber,SQL_PARAM_INPUT,SQL_C_BINARY,SQL_VARBINARY,ColumnSize,0,InBuffer,0,&this->m_SQLBindValue[(ParamNumber-1)]);
}


how to convert it to mysql ?

This is the code in muemu s6, how to convert it to mysql like you did


Offline Rindy #6 Posteado: April 30, 2024, 11:41:50 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 78
  • Gracias recibida: 1749
  • gb

Offline xeru00 #7 Posteado: June 23, 2024, 01:04:52 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 4
  • Gracias recibida: 2
  • ar
Hola, podrias pasar el source? estoy intentando agregar el /pick y estoy trabado con un error


Offline xXSiniestroXx #8 Posteado: June 23, 2024, 02:16:01 PM

  • +2 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 341
  • Gracias recibida: 2474
  • ve
Hola, podrias pasar el source? estoy intentando agregar el /pick y estoy trabado con un error

El Source esta en el post principal que hizo su autor, puedes replicar lo que yo hice si deseas tenerlo igual a mi repack


Offline xeru00 #9 Posteado: June 23, 2024, 04:27:01 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 4
  • Gracias recibida: 2
  • ar
Si estoy trabajando en ellos! ya implemente un /readd e iniciar la invasion de dragones rojos desde el GS pero no logro hacer funcionar el autoattack ni el pick, me podrias ayudar?


Online Azzlaer #10 Posteado: August 30, 2024, 11:45:03 AM

  • MAESTRO

  • US. DE HONOR

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.428
  • Gracias recibida: 26670
  • cl
Buen aporte. Si a más gente le interesa, puedo llegar a hacer un video explicando cómo integrar el sistema de MySQL a los files basados en MuEmu

Cualquier File basado en MuEmu pasarlo a MySQL ? WTF


Offline juanka2 #11 Posteado: September 13, 2024, 10:27:20 PM

  • Diseñador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 219
  • Gracias recibida: 2012
  • cl
alguien ha trabajado esta version en dejarla 97+99 y algun par de invasiones extras?


Offline CorsarioDgx #12 Posteado: September 14, 2024, 10:35:31 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 390
  • Gracias recibida: 7225
  • mx
Yo la tengo trabajada ! 97+99 los eventos se agregan facil


Offline paladium #13 Posteado: September 16, 2024, 11:03:06 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 8
  • Gracias recibida: 3
  • pe
alguien tiene los archivos que estaban en github ?
el proyecto esta caido


Offline straydog #14 Posteado: September 17, 2024, 05:12:38 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 14
  • Gracias recibida: 15
  • ph
Be with us!

Offline anjazz #15 Posteado: September 29, 2024, 08:54:01 AM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 76
  • Gracias recibida: 4
  • br
Amigo, ¿podrías publicar la versión de tu GS para SQL Server?


Offline oreis #16 Posteado: September 29, 2024, 11:24:37 AM

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

Offline hodias #17 Posteado: January 03, 2025, 06:28:35 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 12
  • Gracias recibida: 1
  • br

Online Demonu #18 Posteado: February 27, 2025, 03:35:13 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 359
  • Gracias recibida: 98
  • ro

Online Azzlaer #19 Posteado: February 27, 2025, 11:19:47 PM

  • MAESTRO

  • US. DE HONOR

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.428
  • Gracias recibida: 26670
  • cl

Offline dakosmu #20 Posteado: February 28, 2025, 09:34:47 PM | Modificado: February 28, 2025, 09:58:59 PM by dakosmu

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 786
  • Gracias recibida: 12248
  • ve
Dakosmu Colaborador

Offline kayito #21 Posteado: February 28, 2025, 10:57:27 PM

  • MAESTRO

  • US. DE HONOR

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.086
  • Gracias recibida: 20233
  • ar
Link dead plss fixed

PROYECTO DE GITHUB
 

Una pregunta.. esto es falso positivo?




Si, es un falso positivo por supuesto. Tenés el código fuente a disposición de todos los ejecutables y el proyecto es open source. Creo que no tendría ningún sentido de que tenga virus, siendo que podés compilar vos mismo los ejecutables y revisar el código si hace falta.

Gracias:


Online Azzlaer #22 Posteado: March 01, 2025, 01:00:00 AM

  • MAESTRO

  • US. DE HONOR

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.428
  • Gracias recibida: 26670
  • cl
Link dead plss fixed

PROYECTO DE GITHUB
 

Una pregunta.. esto es falso positivo?




QUIEN EN SU SANO JUICIO CONFIA EN AVG ?? JAJAJAJAJ A MI NUNCA ME GUSTO AVG PORQUE SIEMPRE ME ESTROPEABA EL WINDOWS XDD


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
22 Replies
16157 Views
Last post August 05, 2019, 01:50:03 AM
by MKLION
1 Replies
3593 Views
Last post December 15, 2020, 09:40:08 PM
by Concha
14 Replies
7739 Views
Last post November 22, 2024, 08:15:53 AM
by Ricardo
9 Replies
5426 Views
Last post October 08, 2025, 11:21:07 PM
by Link
24 Replies
6477 Views
Last post April 29, 2025, 05:49:05 PM
by xXSiniestroXx