- Joined
- Dec 12, 2019
- Messages
- 16
- Reaction score
- 1
- First Language
- English
- Primarily Uses
- RMMV
So I'm trying to pop up a message warning the user if the plugin isn't set up properly.
Here's my code for that part. I'm sure I've made some very basic mistake but I'm new to Javascript and MV scripting so please go easy on me.
Any advise would be greatly appreciated.
Here's my code for that part. I'm sure I've made some very basic mistake but I'm new to Javascript and MV scripting so please go easy on me.
I initially tried "$gameMessage.add();" but that pulled an error as well.// Check to make sure name, attack, and effect are all equal values
if (numCards != numAtks || numCards != numEffects)
{
Game_Message.add("Warning! Your Monster Fighter plugin has not been set up properly!\nError: Uneven");
console.log("UNEVEN!!!");
}
Any advise would be greatly appreciated.


