leloush
New member
i really dont know...should i change it to this?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)![]()
- 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:100)+st->int_/5; // After-cast delay reduction <<<<<<<<<<<<<<<<< I EDIT HERE
- if(sd){
- val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
- val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
- }
- break;
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.)