Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Buy fix to teleport/skill freeze of MuEmu 50 USD  (Visto 2649 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline gang Posteado: May 22, 2023, 12:52:41 PM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 95
  • Gracias recibida: 138
  • am
This is a well-known issue in MuEmu and I know that other experienced developers fixed it yet. The problem is precisely that at random moments, when the character wants to teleport, it freezes on random coordinates on the same map, and it's not even possible to do a select server because the game counts down 5 seconds to the end, and nothing happens. The same thing happens when attacking in a spot with Mu Helper, the character suddenly doesn't have an experience bar increment and its skills are not visible, and it's also not possible to do a select server. I know that these two things have the same cause.
For an explanation of what to change in the source code of main/gameserver, I offer $50 via PayPal payment using friends/family option. Please only honest and experienced developers contact me via PM, where I will provide a Skype contact for further conversation.

Gracias:


Offline Ifreat #1 Posteado: May 23, 2023, 02:36:33 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 731
  • Gracias recibida: 5175
  • gb
This problem occurs

when skill freezes = animation stops

when you teleport = cannot do a thing (teleport in random coords)
when you select character = game freezes ( GS character already logged out )


:)

Error . . . . . .

Gracias:


Offline Ifreat #2 Posteado: May 24, 2023, 05:00:15 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 731
  • Gracias recibida: 5175
  • gb
Error . . . . . .

Offline dasgrid #3 Posteado: May 24, 2023, 04:27:45 PM

  • 0 puntos por ventas
  • *
  • Rank: Sup. destacado
  • Posts: 110
  • Gracias recibida: 2740
  • uy
Make a video showing the bug, let's see if it's better understood


Offline Erick05 #4 Posteado: May 24, 2023, 11:24:36 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 54
  • Gracias recibida: 55
  • 00

Offline Pecan #5 Posteado: October 30, 2023, 10:02:15 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 30
  • Gracias recibida: 270
  • pl
I know this bug, but don't know solution for it. This happend randomly but often after AFK in Blood Castle where is a lot of mobs but not always. Sometimes this bug appears on spots. Teleport doesn't work but Character is logged in GameServer. Simply disconnecting WiFi/Internet with reconnect system resolve this bug, but it not a solution.

BUMP TOPIC


Offline Pecan #6 Posteado: November 05, 2023, 06:51:28 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 30
  • Gracias recibida: 270
  • pl
How much USD do I have to pay to solve this problem? Is it a Socket Manager problem, but if so what kind of problem since there is an identical Socket Manager on Louis' files as in Takumi's files. Is it an InitCheckHack and packet encryption/decryption problem?

On my files I observe that the player can post and write private messages, but other things cannot. According to the server he is on the map he wanted to teleport to, but he sees the map he was on before teleporting and only updates the coordinates he should be on after teleporting.

For example:
A player is on the Devias map teleporting to Lorencia and he should be on coordinates 125,125, but the game shows him that he is in Devias and moves him to coordinates 125,125. Other players do not see him, nor does he see mobs and other players.


Offline KropaPL #7 Posteado: November 05, 2023, 07:04:51 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 124
  • Gracias recibida: 10
  • pl
Try this fix

User.cpp

gObjMoveGate
Code: [Select]
gObjClearViewport(lpObj);

gMove.GCTeleportSend(aIndex,gate,lpObj->Map,(BYTE)lpObj->X,(BYTE)lpObj->Y,lpObj->Dir);

gObjViewportListProtocolCreate(lpObj);

gObjectManager.CharacterUpdateMapEffect(lpObj);


Fix:

Code: [Select]
gObjViewportListProtocolDestroy(lpObj);

gMove.GCTeleportSend(aIndex, gate, lpObj->Map, (BYTE)lpObj->X, (BYTE)lpObj->Y, lpObj->Dir);

gObjViewportListProtocolCreate(lpObj);

gObjClearViewport(lpObj);

gObjectManager.CharacterUpdateMapEffect(lpObj);


Offline Ifreat #8 Posteado: November 05, 2023, 07:26:00 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 731
  • Gracias recibida: 5175
  • gb
Try this fix

User.cpp

gObjMoveGate
Code: [Select]
gObjClearViewport(lpObj);

gMove.GCTeleportSend(aIndex,gate,lpObj->Map,(BYTE)lpObj->X,(BYTE)lpObj->Y,lpObj->Dir);

gObjViewportListProtocolCreate(lpObj);

gObjectManager.CharacterUpdateMapEffect(lpObj);


Fix:

Code: [Select]
gObjViewportListProtocolDestroy(lpObj);

gMove.GCTeleportSend(aIndex, gate, lpObj->Map, (BYTE)lpObj->X, (BYTE)lpObj->Y, lpObj->Dir);

gObjViewportListProtocolCreate(lpObj);

gObjClearViewport(lpObj);

gObjectManager.CharacterUpdateMapEffect(lpObj);
this fix is for Skill Teleport

the problem of the buyer is if he's using a skill or AFK in a few minutes (the skill animation stops and after you move to certain map, it moves you to random coordinates(black background) and then if you try to select server (nothing works unless if you close the client)

Error . . . . . .

Offline Pecan #9 Posteado: November 05, 2023, 07:33:18 AM | Modificado: November 05, 2023, 07:35:04 AM by Pecan

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 30
  • Gracias recibida: 270
  • pl
@KropaPL this fix is for updating position of character when player is close to you and he teleport to coords that was close to his previous position

@Ifreat do you know the fix for it?


Offline Ifreat #10 Posteado: November 05, 2023, 07:38:47 AM

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 731
  • Gracias recibida: 5175
  • gb
@KropaPL this fix is for updating position of character when player is close to you and he teleport to coords that was close to his previous position

@Ifreat do you know the fix for it?

yes

Error . . . . . .

Offline h3yShOk #11 Posteado: November 05, 2023, 09:29:02 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 143
  • Gracias recibida: 1549
  • pa
same problem have, if anyone know how to fix, I will pay same xD


Offline Pecan #12 Posteado: November 07, 2023, 01:35:17 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 30
  • Gracias recibida: 270
  • pl
Anyone know what can trigger this bug? Because to me is looks like random thing related to nothing xD Bug appears faster when more players is in the game


Offline aemoscon #13 Posteado: November 08, 2023, 05:41:41 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 73
  • Gracias recibida: 13
  • ar

Offline dizzys #14 Posteado: January 23, 2024, 01:33:43 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 38
  • Gracias recibida: 4
  • be

Offline son1xx2 #15 Posteado: January 23, 2024, 03:13:18 AM

  • 0 puntos por ventas
  • *
  • Rank: Heroe
  • Posts: 173
  • Gracias recibida: 1405
  • vn
As far as I understand, when you perform the teleport skill, as soon as the character disappears and you use the M key to switch maps, the character will get stuck at any coordinate?

Do better, don't try to do the same ;)

Offline dizzys #16 Posteado: January 23, 2024, 04:57:09 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 38
  • Gracias recibida: 4
  • be
As far as I understand, when you perform the teleport skill, as soon as the character disappears and you use the M key to switch maps, the character will get stuck at any coordinate?

Well.. I think is other problem. When you play mu for longer time and try warp. Character stay on the same map it was but changes cord thats why character is in black screen. It seems like Connecticut between main<>GS is lost. Im not sure but think there is something wrong with packets/socket gs/main

Gracias:


Offline gang #17 Posteado: February 18, 2024, 11:38:11 AM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 95
  • Gracias recibida: 138
  • am

Gracias:


Offline c4nhsatcodong #18 Posteado: February 18, 2024, 11:48:45 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 361
  • Gracias recibida: 1934
  • vn
Do you have a video so I can better understand your problem?

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/


Offline gang #19 Posteado: February 26, 2024, 02:54:53 PM

  • 0 puntos por ventas
  • *
  • Rank: Destacado
  • Posts: 95
  • Gracias recibida: 138
  • am

Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
35 Replies
7097 Views
Last post March 18, 2022, 05:44:37 PM
by binho
1 Replies
1328 Views
Last post January 27, 2021, 05:40:19 AM
by mantios
0 Replies
405 Views
Last post August 10, 2021, 11:16:15 PM
by alivejr
1 Replies
799 Views
Last post August 16, 2021, 02:48:50 PM
by Tester1838a
5 Replies
413 Views
Last post December 16, 2023, 12:47:31 AM
by Odisk