Jump to content
  • 0
Sign in to follow this  
Yazoo

Dano bomba acida

Question

ola pessoal

 

gostaria de saber cmo fasso para diminuir o dano da habilidade bomba acida em meu emulador...

meu servidor é d hat baixo e a bomba acida está cm o dano mto alto...

 

ja fui até a skil.c

na src e alterei isso

 

case CR_ACIDDEMONSTRATION:
skill_break_equip(bl, EQP_WEAPON|EQP_ARMOR, 100*skilllv, BCT_ENEMY);
break;
 
para isso
 
case CR_ACIDDEMONSTRATION:
skill_break_equip(bl, EQP_WEAPON|EQP_ARMOR, 1*skilllv, BCT_ENEMY);
break;
 
mais o dano permanece o mesmo.
alguem sabe cmo mudar ?

 

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0

essa formula q vc alterou é a chance de quebrar o item, não a formula de dano, a formula de dano está a partir da linha 3874 do arquivo battle.c

Share this post


Link to post
Share on other sites
  • 0

Seu Emulador é o Hercules?

Sim meu emulador é hercules

 

sabem me informar como diminuo o dano dela no battle.c ?

é muito grande a tabela da mesma

Share this post


Link to post
Share on other sites
  • 0

consegui reduzir foi só alterar essa linha

md.damage = (int)(1*tstatus->vit*sstatus->int_*sstatus->int_ / (5*(tstatus->vit+sstatus->int_)));

 

me parece q o emulador renewal multiplica o a vit e a int e quanto maior o nivel d multiplicação menor o dano fica

onde está 5 estava multiplicando por 1  se tenho 10 d vit e 100 d int multiplicado por 1 = 100 d vit e 100 d int, logo o dano fica alto pela conf do seu matk

 

@up 

o original está 

md.damage = (int)(7*tstatus->vit*sstatus->int_*sstatus->int_ / (10*(tstatus->vit+sstatus->int_)));

para diminuir deixei

 

md.damage = (int)(1*tstatus->vit*sstatus->int_*sstatus->int_ / (5*(tstatus->vit+sstatus->int_)));

 

então diminuiu a tacha d int e vit pra dar dano na ad

Edited by Yazoo

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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