Common Problems

From Yanfly.moe Wiki
Revision as of 20:57, 2 February 2023 by Yanfly (talk | contribs) (Created page with "{{TOCright}} {| style="width: 800px;" cellspacing="0" cellpadding="0" | style="width: 100%; vertical-align: top;" | File:Troubleshooting.jpg {{Article by Yanfly}} Her...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Welcome to the wiki! This is where you can find resources from Yanfly.moe, Ækashics.moe,
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.


Troubleshooting.jpg

Yanfly.png This is an article written by Yanfly.


Here are some common problems you'll probably encounter in RPG Maker and their possible solutions.

Common Problems

Lag / FPS Drops due to Too Many Parallel Events


Are you experiencing lag spikes or FPS drops due to having too many parallel events on your map while plugins are turned on?

If so, it's probably because your parallel event looks something like this:

CommonProblem Parallel1.png

There are no Wait event commands there.

What ends up happening is, your parallel event runs through the event chain thousands of times per frame without a break.

Add this:

CommonProblem Parallel2.png

Yes, add a "Wait: 1 Frame" to each and every parallel event.

You'll soon see the lag spikes and FPS drops clear up.

"But I don't get that problem unless I have your plugins turned on."

Well, it's a pure coincidence that it's happening with our plugins then because it can happen with any plugin that adds more code to the game client to use.

Do it and you'll see the problem clear up.