Hi! Since making Video tutorials is time consuming, I will first start by making these updates here.
Since I started using MZ (2021) I do feel I´ve learned a lot and some of you might benefit from some of my lessons I mostly learned the hard way.
First tip is something I just learned, which is the maximum movement speed.
When making movement paths for player (or event) you don´t have to choose the speed only from the few selectable options.
Above is an example of a piece of function I constantly use in my Icekai game, the fast movement is a trick for speedrunners which doesn´t concern casual players. Anyway:
With the script: this.setMoveSpeed(x.x) you can use even decimals which is super useful for me.
However, I noticed that the player stopped triggering "player touch" events at 8.0 speed, which was the max speed I used.
Coincidentally, I tried 7.9 to see if it worked... and it did!
While you can use speed 8.0 or above, please note that after that at least player stops triggering player touch events. This is why I dropped my max speed to 7.9