- Joined
- Apr 22, 2012
- Messages
- 764
- Reaction score
- 357
- First Language
- English
- Primarily Uses
- RMMV
Where did you place it?I installed Yanfly's damage core plugin but so far the formula doesnt work (I tested it without LeTBS). Have to check whats wrong.
I had to place Skill Core below LETBS myself.
Also you might need to place the yanfly notetags ABOVE the <letbs> ones
EDIT2: A little overdone, but try this:
<Damage Formula>
value = a.atk * (100.0/(100.0 + b.def));
if(a.isActor()){
const weapons = [6,7,8];
weapons.forEach(function(e) {
if(a.hasWeapon($dataWeapons[e]))
{
value = 1000;
}
};
}
</Damage Formula>
Last edited:



