Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: EMU.IGC Server Suite Season 12.1 - Update 12.1.1.0(4)  (Visto 34024 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline jorge2016 #60 Posteado: September 05, 2022, 05:24:58 AM

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 174
  • Gracias recibida: 2166
  • uy
Someone found how to fix this bugs?


that's not a bug, you're just in battlecore mode and you can't open a chest at that moment, you have to exit battlecore at the event corner logo

opps.. you right..
but i found another problem.. i always see this messages.
if i press on something i see this messages.




also, maybe you know what about the guard? (Luke the Helper)

If I remember correctly, you must modify the following in the source of the gs.

You should modify this line...

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char * szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   char szTempMsg[4096] = { 0, };

   MultiByteToWideChar(DEFAULT_CODEPAGE, 0, (char*)szChat, len, (WCHAR*)szTempMsg, sizeof(szTempMsg));

   memcpy(pMsg.chatmsg, szTempMsg, sizeof(pMsg.chatmsg));
   PHeadSetB((LPBYTE)&pMsg, 0x01, sizeof(pMsg) - MAX_CHAT + wcslen((WCHAR*)pMsg.chatmsg) * 2 + 2);

   pMsg.chatmsg[MAX_CHAT - 2] = 0;
   pMsg.chatmsg[MAX_CHAT - 1] = 0;
   pMsg.NumberH = HIBYTE(lpObj->m_Index);
   pMsg.NumberL = LOBYTE(lpObj->m_Index);

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}


and change for this....

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char* szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}

thanks bro!!
this code fix the problem of messages.

also, i have only 1 problem in this files.. somehow i cant connect more then 1 account in this files.
maybe you know where to change the limit off users connection?
i tried to find but no found..

hi.. Yes, in dataserver search this ->  MachineIDConnectionLimitPerGroup   and  change number for 7, 10, etc... and in connectserver same

DataServer/DataServer.ini  ->  MachineIDConnectionLimitPerGroup = 10
ConnectServer/IGCCS.ini   ->  MaxConnectionsPerIP  = 10


Offline yuval07 #61 Posteado: September 05, 2022, 12:52:37 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 40
  • Gracias recibida: 16
  • il
Someone found how to fix this bugs?


that's not a bug, you're just in battlecore mode and you can't open a chest at that moment, you have to exit battlecore at the event corner logo

opps.. you right..
but i found another problem.. i always see this messages.
if i press on something i see this messages.




also, maybe you know what about the guard? (Luke the Helper)

If I remember correctly, you must modify the following in the source of the gs.

You should modify this line...

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char * szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   char szTempMsg[4096] = { 0, };

   MultiByteToWideChar(DEFAULT_CODEPAGE, 0, (char*)szChat, len, (WCHAR*)szTempMsg, sizeof(szTempMsg));

   memcpy(pMsg.chatmsg, szTempMsg, sizeof(pMsg.chatmsg));
   PHeadSetB((LPBYTE)&pMsg, 0x01, sizeof(pMsg) - MAX_CHAT + wcslen((WCHAR*)pMsg.chatmsg) * 2 + 2);

   pMsg.chatmsg[MAX_CHAT - 2] = 0;
   pMsg.chatmsg[MAX_CHAT - 1] = 0;
   pMsg.NumberH = HIBYTE(lpObj->m_Index);
   pMsg.NumberL = LOBYTE(lpObj->m_Index);

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}


and change for this....

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char* szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}

thanks bro!!
this code fix the problem of messages.

also, i have only 1 problem in this files.. somehow i cant connect more then 1 account in this files.
maybe you know where to change the limit off users connection?
i tried to find but no found..

hi.. Yes, in dataserver search this ->  MachineIDConnectionLimitPerGroup   and  change number for 7, 10, etc... and in connectserver same

DataServer/DataServer.ini  ->  MachineIDConnectionLimitPerGroup = 10
ConnectServer/IGCCS.ini   ->  MaxConnectionsPerIP  = 10

Thank you!!

Someone have Source code of this files?


Offline jorge2016 #62 Posteado: September 05, 2022, 01:15:33 PM

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 174
  • Gracias recibida: 2166
  • uy
Someone found how to fix this bugs?


that's not a bug, you're just in battlecore mode and you can't open a chest at that moment, you have to exit battlecore at the event corner logo

opps.. you right..
but i found another problem.. i always see this messages.
if i press on something i see this messages.




also, maybe you know what about the guard? (Luke the Helper)

If I remember correctly, you must modify the following in the source of the gs.

You should modify this line...

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char * szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   char szTempMsg[4096] = { 0, };

   MultiByteToWideChar(DEFAULT_CODEPAGE, 0, (char*)szChat, len, (WCHAR*)szTempMsg, sizeof(szTempMsg));

   memcpy(pMsg.chatmsg, szTempMsg, sizeof(pMsg.chatmsg));
   PHeadSetB((LPBYTE)&pMsg, 0x01, sizeof(pMsg) - MAX_CHAT + wcslen((WCHAR*)pMsg.chatmsg) * 2 + 2);

   pMsg.chatmsg[MAX_CHAT - 2] = 0;
   pMsg.chatmsg[MAX_CHAT - 1] = 0;
   pMsg.NumberH = HIBYTE(lpObj->m_Index);
   pMsg.NumberL = LOBYTE(lpObj->m_Index);

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}


and change for this....

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char* szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}

thanks bro!!
this code fix the problem of messages.

also, i have only 1 problem in this files.. somehow i cant connect more then 1 account in this files.
maybe you know where to change the limit off users connection?
i tried to find but no found..

hi.. Yes, in dataserver search this ->  MachineIDConnectionLimitPerGroup   and  change number for 7, 10, etc... and in connectserver same

DataServer/DataServer.ini  ->  MachineIDConnectionLimitPerGroup = 10
ConnectServer/IGCCS.ini   ->  MaxConnectionsPerIP  = 10

Thank you!!

Someone have Source code of this files?

They are the same, only that these files have some more repaired details that those source do not have.

https://tuservermu.com.ve/index.php?topic=46428.0


Offline yuval07 #63 Posteado: September 06, 2022, 07:24:18 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 40
  • Gracias recibida: 16
  • il
Someone found how to fix this bugs?


that's not a bug, you're just in battlecore mode and you can't open a chest at that moment, you have to exit battlecore at the event corner logo

opps.. you right..
but i found another problem.. i always see this messages.
if i press on something i see this messages.




also, maybe you know what about the guard? (Luke the Helper)

If I remember correctly, you must modify the following in the source of the gs.

You should modify this line...

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char * szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   char szTempMsg[4096] = { 0, };

   MultiByteToWideChar(DEFAULT_CODEPAGE, 0, (char*)szChat, len, (WCHAR*)szTempMsg, sizeof(szTempMsg));

   memcpy(pMsg.chatmsg, szTempMsg, sizeof(pMsg.chatmsg));
   PHeadSetB((LPBYTE)&pMsg, 0x01, sizeof(pMsg) - MAX_CHAT + wcslen((WCHAR*)pMsg.chatmsg) * 2 + 2);

   pMsg.chatmsg[MAX_CHAT - 2] = 0;
   pMsg.chatmsg[MAX_CHAT - 1] = 0;
   pMsg.NumberH = HIBYTE(lpObj->m_Index);
   pMsg.NumberL = LOBYTE(lpObj->m_Index);

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}


and change for this....

void GameProtocol::ChatTargetSend(LPOBJ lpObj, char* szChat, int senduser)
{
   int len = strlen(szChat);

   if (len < 1 || len > MAX_CHAT_LEN - 1)
      return;

   PMSG_CHATDATA_NUMBER pMsg;

   PHeadSetB((LPBYTE)&pMsg, 0x01, len + 6);
   strcpy(pMsg.chatmsg, szChat);
   pMsg.NumberH = SET_NUMBERH(lpObj->m_Index);
   pMsg.NumberL = SET_NUMBERL(lpObj->m_Index);
   pMsg.chatmsg[len + 1] = 0;

   IOCP.DataSend(senduser, (UCHAR*)&pMsg, pMsg.h.size);
}

thanks bro!!
this code fix the problem of messages.

also, i have only 1 problem in this files.. somehow i cant connect more then 1 account in this files.
maybe you know where to change the limit off users connection?
i tried to find but no found..

hi.. Yes, in dataserver search this ->  MachineIDConnectionLimitPerGroup   and  change number for 7, 10, etc... and in connectserver same

DataServer/DataServer.ini  ->  MachineIDConnectionLimitPerGroup = 10
ConnectServer/IGCCS.ini   ->  MaxConnectionsPerIP  = 10

Thank you!!

Someone have Source code of this files?

They are the same, only that these files have some more repaired details that those source do not have.

https://tuservermu.com.ve/index.php?topic=46428.0

thank you!!


Offline YOUNGJU KIM #64 Posteado: September 09, 2022, 09:41:04 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 25
  • Gracias recibida: 9
  • gb
Devil's Square items and Zen don't drop this. Where can I fix it?


Offline miltonho2 #65 Posteado: September 19, 2022, 10:09:16 PM

  • 0 puntos por ventas
  • *
  • Rank: Sup. destacado
  • Posts: 112
  • Gracias recibida: 565
  • ar
podrian subir el cliente de nuevo, desde ya mucgas gracias...! relax


Offline tumtum2003 #66 Posteado: October 08, 2022, 09:52:23 AM | Modificado: October 08, 2022, 09:58:43 AM by tumtum2003

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 8
  • Gracias recibida: 1
  • th

Offline Covid22 #67 Posteado: October 11, 2022, 02:31:46 AM

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

Offline jorge2016 #68 Posteado: October 15, 2022, 03:06:23 AM | Modificado: October 22, 2022, 06:40:08 AM by jorge2016

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 174
  • Gracias recibida: 2166
  • uy

Gracias:


Offline 6522748 #69 Posteado: October 22, 2022, 02:54:29 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 1
  • Gracias recibida: 0
  • cn
Someone found how to fix this bugs?


that's not a bug, you're just in battlecore mode and you can't open a chest at that moment, you have to exit battlecore at the event corner logo
in IGC_LastManStanding.xml
<!--   <Registration Time="15" MapNumber="0" NPCIndex="258" PosX="145" PosY="140" Dir="-1" ReqMoney="1000000" ReqSpecialItem="0" SpecialItemCount="1" ItemCat="14" ItemIndex="160" />   -->


Offline angelpreso #70 Posteado: December 21, 2022, 06:08:39 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 33
  • Gracias recibida: 17
  • ar

Offline Shrimp #71 Posteado: December 23, 2022, 01:38:13 AM

  • Diseñador
  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 87
  • Gracias recibida: 2136
  • pt

Offline zHammer #72 Posteado: April 09, 2023, 01:49:37 AM | Modificado: April 09, 2023, 01:52:50 AM by zHammer

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es
 please please please


Is there anyone like me? How can I fix it?

 enamorado enamorado enamorado


Offline miltonho2 #73 Posteado: April 09, 2023, 01:52:51 AM

  • 0 puntos por ventas
  • *
  • Rank: Sup. destacado
  • Posts: 112
  • Gracias recibida: 565
  • ar

Gracias:


Offline zHammer #74 Posteado: April 09, 2023, 01:58:09 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es
que es lo que quieres areglar?


ฺBoss Core Magriffy no skin.
can you help me.

 please please


Offline miltonho2 #75 Posteado: April 09, 2023, 02:13:01 AM

  • 0 puntos por ventas
  • *
  • Rank: Sup. destacado
  • Posts: 112
  • Gracias recibida: 565
  • ar
The same thing usually happens to me, for there is, it appears fine and for there is not

Gracias:


Offline zHammer #76 Posteado: April 09, 2023, 02:27:26 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es
The same thing usually happens to me, for there is, it appears fine and for there is not

If you are successful i need you to help me.

Request a good programmer to fix it for me.

 please please please


Offline raul31 #77 Posteado: April 10, 2023, 01:31:37 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 17
  • Gracias recibida: 7
  • pe
que es lo que quieres areglar?


ฺBoss Core Magriffy no skin.
can you help me.

 please please

Hola, te recomiendo deshabilitar en "IGCData\Events", en el archivo "IGC_CoreMagriffy" la opción: Enable="0" y agrega el Boss en el archivo "IGC_MonsterSpawn". busca los spots de Nars y agrégalo recuerda ponerle un numero de Elemento del 1 al 5 en la opción "Element" ya que si pones 6 sera lo mismo no funcionara y seguirá transparente. Ejemplo:
<Spawn Index="716" Distance="10" StartX="147" StartY="141" EndX="152" EndY="147" Dir="-1" Count="1" Element="1" /> <!-- Core Magriffy -->
el Boss saldrá con elemento Fuego. el tiempo de respawn puede ser modificado en el archivo "IGC_MonsterList". Espero puedas solucionar ese problema. Saludos!

Gracias:


Offline tucamast #78 Posteado: April 12, 2023, 08:34:39 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 97
  • Gracias recibida: 352
  • ar
La CashShop no funciona alguna solucion ?


Offline tucamast #79 Posteado: April 12, 2023, 09:44:11 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 97
  • Gracias recibida: 352
  • ar
si alguno quiere probar los files me avisa.... yo tengo el server on haciendo el test

tenes idea por que la cashshop cuando queres entrar tira un error de conexion y despues entra con todos nombres raros y tira error de banner?


Offline raul31 #80 Posteado: April 13, 2023, 01:05:30 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 17
  • Gracias recibida: 7
  • pe
La CashShop no funciona alguna solucion ?

Debes verificar que las versiones del lado servidor y lado cliente estén escritas correctamente, Servidor: en el archivo "CashShop.xml" y verifique las carpetas del lado del cliente "InGameShopBanner"; "InGameShopScript" que estén escritas con la misma versión. Saludos!


Offline tucamast #81 Posteado: April 13, 2023, 08:33:08 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 97
  • Gracias recibida: 352
  • ar
La CashShop no funciona alguna solucion ?

Debes verificar que las versiones del lado servidor y lado cliente estén escritas correctamente, Servidor: en el archivo "CashShop.xml" y verifique las carpetas del lado del cliente "InGameShopBanner"; "InGameShopScript" que estén escritas con la misma versión. Saludos!

Despues hay un tema que vi ayer, es con el zen. Creas un nuevo personaje tenes 2000 de zen te moves a lorencia te tira que no tenes zen y cuando volves a agarrar el zen se bugea a 4billones. Salis y volves a entrar y no tenes mas zen


Offline elcanarioloco #82 Posteado: June 01, 2023, 09:10:26 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 14
  • Gracias recibida: 4
La CashShop no funciona alguna solucion ?

Debes verificar que las versiones del lado servidor y lado cliente estén escritas correctamente, Servidor: en el archivo "CashShop.xml" y verifique las carpetas del lado del cliente "InGameShopBanner"; "InGameShopScript" que estén escritas con la misma versión. Saludos!

Vale son distintas , que podemos hacer para que el cashop abra , cambiar el nombre de las carpetas lo soluciona?


Offline ewtn #83 Posteado: July 09, 2023, 01:45:46 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 5
  • Gracias recibida: 0
  • br
Alguien logró probar el errtel de resplandor en este servidor, incluso activado en el pentagrama, el efecto no funciona (paralizar, sangrar, atar, castigar, ...)?


Offline ewtn #84 Posteado: July 09, 2023, 01:46:45 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 5
  • Gracias recibida: 0
  • br
Alguien logró probar el errtel de radiance*** en este servidor, incluso activado en el pentagrama, el efecto no funciona (paralizing, bleeding, binding, punish, ...)


Offline zHammer #85 Posteado: August 03, 2023, 08:19:28 PM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es
Monster losttower7, dungeon3, Alkamar Entrance
When a monster from another coordinate dies They spawn in the same group, in the same spot.
It's the same on all 3 maps. Make monsters on the map spawn in the same spot.
Expert brothers and sisters, please help.

 please please please please


Offline zHammer #86 Posteado: August 04, 2023, 01:02:42 PM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es

Guardian Angel Durability bug hp.
 please please please please


Offline zHammer #87 Posteado: August 21, 2023, 12:26:12 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es

Offline zHammer #88 Posteado: August 27, 2023, 11:03:16 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 84
  • Gracias recibida: 77
  • es


Fixed text in incorrect position
- experience
- Exit the server
- welcome message

 please please please please

Gracias:


Offline gian789 #89 Posteado: September 07, 2023, 05:11:00 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 49
  • Gracias recibida: 22
  • ar
Yo tengo la versión 0.30 con usuarios hay alguna forma de actualizar los files sin perder las cuentas?
La base de datos es la misma? Cambia algo?  Question2


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
31 Replies
17359 Views
Last post October 04, 2019, 02:20:51 AM
by neyewson
86 Replies
39980 Views
Last post April 15, 2025, 12:20:04 PM
by darkjano
1 Replies
2147 Views
Last post August 11, 2021, 07:59:35 PM
by cualquier1
16 Replies
4043 Views
Last post August 21, 2023, 12:36:11 AM
by zHammer
71 Replies
27201 Views
Last post October 26, 2024, 03:15:19 PM
by cluz123