- Joined
- Dec 2, 2015
- Messages
- 73
- Reaction score
- 12
- First Language
- Spanish
- Primarily Uses
- RMMZ
Hello everyone,
I'm looking for a Blue Magic and old Yanfly "module" was perfect for my idea.
I have tried it using the Battle Core VisuStella MZ but it doesn't work:
I've checked and the "script calls" are correct, so what's wrong? Any idea?
I'm looking for a Blue Magic and old Yanfly "module" was perfect for my idea.
I have tried it using the Battle Core VisuStella MZ but it doesn't work:
Code:
<JS Post-Damage>
if (target.isActor() && target._classId === 5) {
if (!target.isLearnedSkill(item.id)) {
target.learnSkill(item.id);
var text = target.name() + ' ha aprendido '
text = text + item.name + '!';
$gameMessage.add(text);
}
}</JS Post-Damage>