Category: RGSS3

17

Diagonal Movement and Movement Speed

This is the third part of my dev log on implementing diagonal movement in your RPG Maker VX Ace project. In the first part, we modified the movement scripts to allow diagonal movement and to use diagonal sprites...

122

Eight Directional Movement

By default, the game only allows you to move in the four orthogonal directions: up, left, down, right. This script provides support for eight-directional movement in your game, adding support for  diagonal movement. To move diagonally,...

16

Custom Equip Conditions

This script allows you to specify custom equip conditions for your equips. In addition to the default equip conditions such as armor type and weapon type, all custom equip conditions must be met in order for the...

7

Unlimited FPS

By default, RPG Maker imposes a limit of 120 FPS on the game. This means that if you tried to go beyond 120, it would simply round it down to 120. This script removes...