Poem Bragi ( Soul Link ) [ Clown ]

u need a source modification for bragis i think since bragis has a default of 50% less delay only and not 100% AV requires 100% less aftercast delay to be able to spam.. tested on my test server.

i believe here is the line u need to edit.. in src/map/skill.c

[cbox] case BA_POEMBRAGI:val1 = 3*skill_lv+st->dex/10; // Casting time reduction

//For some reason at level 10 the base delay reduction is 50%.

val2 = (skill_lv<10?3*skill_lv:50)+st->int_/5; // After-cast delay reduction

if(sd){

val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

}

break;[/cbox]
 
but i dont know.. how the formula works.. hehe (im not really sure 
default_tongue.png
)
should i change it to this?

  1. case BA_POEMBRAGI:
  2.  
  3. val1 = 3*skill_lv+st->dex/10; // Casting time reduction
  4.  
  5. //For some reason at level 10 the base delay reduction is 50%.
  6.  
  7. val2 = (skill_lv<10?3*skill_lv:100)+st->int_/5; // After-cast delay reduction <<<<<<<<<<<<<<<<< I EDIT HERE
  8.  
  9. if(sd){
  10.  
  11. val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
  12.  
  13. val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
  14.  
  15. }
  16.  
  17. break;
i really dont know...

u must learned the famous word " trial and error "

try it. if it works then. its good. if not just change it back to normal and look for another way to do this.. (btw, always keep in mind that u make backup before messing with src files... so if u forgot something, no problem there is a backup.. even if its minor editing.)

 
Not Woking
default_sad.png
Please help me to make AV affected with skill delay if clown cast poem bragi when got soul link

 
Last edited by a moderator:
Back
Top