- Joined
- Aug 8, 2012
- Messages
- 921
- Reaction score
- 134
- First Language
- english
- Primarily Uses
- RMMV
hi everyone i'm having a little trouble with some of the lunatic mode note tags... i have all of the required plug ins for them and will ask one at a time
first one is blue magic i took the code straight from the tips and tricks page on you tube made by yanfly here is the video
<Post-Damage Eval>
if (target.isActor() && target._classId === 1) {
if (!target.isLearnedSkill(21)) {
target.learnSkill(21);
var text = target.name() + ' has learned '
text = text + Super Sonic + '!';
$gameMessage.add(text);
}
}
</Post-Damage Eval>
but when ever the skill is usedon the actor that can learn the skill i get an error:
and here is what it looks like in data base (this could be where the error is occuring
first one is blue magic i took the code straight from the tips and tricks page on you tube made by yanfly here is the video
<Post-Damage Eval>
if (target.isActor() && target._classId === 1) {
if (!target.isLearnedSkill(21)) {
target.learnSkill(21);
var text = target.name() + ' has learned '
text = text + Super Sonic + '!';
$gameMessage.add(text);
}
}
</Post-Damage Eval>
but when ever the skill is usedon the actor that can learn the skill i get an error:
and here is what it looks like in data base (this could be where the error is occuring
