- Joined
- Feb 22, 2016
- Messages
- 1,626
- Reaction score
- 1,195
- First Language
- English
- Primarily Uses
- RMMV
Just wondering what the difference is between:
vs something like this:
In the context of a state's notebox ofc. I feel like the 1st version is more defined, and I wonder if I should use
Edit: I'm hoping it will fix an issue I had trying to create a skill that reduces a target's DEF by some amount depending on the caster's ATK for example (because
JavaScript:
<Custom Apply Effect>
var x = this.stateOrigin(61).mat ** (1 + this.stateOrigin(61).luk / 1000);
target.addAgi(x);
target.addLuk(x);
</Custom Apply Effect>
JavaScript:
<Custom Apply Effect>
var x = origin.mat ** (1 + origin.luk / 1000);
target.addAgi(x);
target.addLuk(x);
</Custom Apply Effect>
this.stateOrigin() for every skill that applies a state.Edit: I'm hoping it will fix an issue I had trying to create a skill that reduces a target's DEF by some amount depending on the caster's ATK for example (because
origin.atk doesn't work in LTBS for some reason).
Last edited:
