Jump to content
  • 0
Sign in to follow this  
deadzero

Skill Espreitar

Question

Olá, gostaria de saber onde eu posso alterar na source para que quando o stalker estiver em espreitar ele possa andar em cima de um portal sem ser teleportado. Obrigado.

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Obrigado julio, irei fazer, se eu conseguir postarei a edição aqui.

 

ok, consegui fazer oque queria

 

arquivo unit.c

 

procure por

 

// Check if warping and not changing the map.

if ( sd->state.warping && !sd->state.changemap ) {

status_change_end(bl, SC_CLOAKING, INVALID_TIMER);

status_change_end(bl, SC_CLOAKINGEXCEED, INVALID_TIMER);

}

 

basta adicionar a linha

status_change_end(bl, SC_CHASEWALK, INVALID_TIMER);

 

vai ficar assim

// Check if warping and not changing the map.

if ( sd->state.warping && !sd->state.changemap ) {

status_change_end(bl, SC_CLOAKING, INVALID_TIMER);

status_change_end(bl, SC_CLOAKINGEXCEED, INVALID_TIMER);

status_change_end(bl, SC_CHASEWALK, INVALID_TIMER);

}

Share this post


Link to post
Share on other sites
  • 0

Sugiro:

 

Leia a skill "CLOAKING"(skill ID 135) pois ela tem esta condição, entenda ela e aplique na skill desejada.

Share this post


Link to post
Share on other sites
  • 0

Parabéns por correr atrás, aprender, tentar e fazer!

 

Se desejar, faça um guia sobre.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.