- Joined
- Feb 22, 2016
- Messages
- 1,626
- Reaction score
- 1,195
- First Language
- English
- Primarily Uses
- RMMV
So I'm trying to adapt my learn cost eval into a common event so I can use it in @SomeFire's skill tree system.
How would I go about this? I've tried simply copy-pasting the contents (the lines w/ "user") into the common event as a script, which obviously didn't work (didn't really expect it to lol). What's the correct way to do this?
<Learn Cost Eval>
user._paramPlus[0] += 5;
user.gainHp(5);
user.forgetSkill(293);
user.refresh();
</Learn Cost Eval>How would I go about this? I've tried simply copy-pasting the contents (the lines w/ "user") into the common event as a script, which obviously didn't work (didn't really expect it to lol). What's the correct way to do this?
