Jump to content
  • 0

How to fix Monster die and can't gone


theong456

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  04/30/18
  • Last Seen:  

Hello 

Can anyone fix it?

 

screenRagnarok044.jpg

screenRagnarok042.jpg

screenRagnarok043.jpg

 

Edited by theong456
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  830
  • Reputation:   316
  • Joined:  02/11/19
  • Last Seen:  

48 minutes ago, Sammo said:

Is there no other way to fix this? I am getting support questions about this. I did enable players to utilize @refresh btu is there no other solution to this issue?

Wait for it: https://github.com/rathena/rathena/pull/5263

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  271
  • Reputation:   62
  • Joined:  02/04/19
  • Last Seen:  

killed the attacked monster or by command?

This usually happens when using command to kill all monsters

But try changing the hexed version.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

11 hours ago, M a p l e said:

killed the attacked monster or by command?

This usually happens when using command to kill all monsters

But try changing the hexed version.

I think thats a client issue if you use @refresh that will fix the issue of monster showing on screen even its dead.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  04/30/18
  • Last Seen:  

15 hours ago, Radian said:

I think thats a client issue if you use @refresh that will fix the issue of monster showing on screen even its dead.

Thank you

Edited by theong456
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  09/05/14
  • Last Seen:  

Is there no other way to fix this? I am getting support questions about this. I did enable players to utilize @refresh btu is there no other solution to this issue?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  04/30/18
  • Last Seen:  

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  2
  • Reputation:   0
  • Joined:  09/29/17
  • Last Seen:  

Add more time to check if the monster is dead or not, i was fighting with this for months but the solution was very simple, add more delay to check if the monster is dead or no.

in mob.cpp under mob_dead function change this:


 


		if( pcdb_checkid(md->vd->class_) ) {//Player mobs are not removed automatically by the client.
			/* first we set them dead, then we delay the outsight effect */
			clif_clearunit_area(&md->bl,CLR_DEAD);
			clif_clearunit_delayed(&md->bl, CLR_OUTSIGHT,tick+8000);
		} else
			/**
			 * We give the client some time to breath and this allows it to display anything it'd like with the dead corpose
			 * For example, this delay allows it to display soul drain effect
			 **/
			clif_clearunit_delayed(&md->bl, CLR_DEAD, tick+1000);

Just adjust the delayed value in clif_clearunit_delayed, the only side effect is the mob will show the animation of dead with a little bit of delay, but it's better than enable @refresh to all players to clean the "ghost" Mobs.

I hope this help.

Ropower Admin

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...