Jump to content

Monsters instant vanish after death


tierrilopes
 Share

Recommended Posts

Go to file char_battle.cpp

Inside the function:

void CHARACTER::Stun()

 

Look for:

m_pkStunEvent = event_create (StunEvent, info, PASSES_PER_SEC (3));

Replace with:

	if (!IsPC()){
		m_pkStunEvent = event_create (StunEvent, info, PASSES_PER_SEC (0));}
	else{
		m_pkStunEvent = event_create (StunEvent, info, PASSES_PER_SEC (3));}

 

Video:

https://youtu.be/kVVr5mGJKCU?t=1m20s

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...