Spoiler
Using the scroll with a frame duration instead of speed can be helpful with timing / making cutscenes since the screen can scroll at any speed you want it.
Diagonal Scrolls <Script Call>
$gameMap.startQuasiScroll(distanceX, distanceY, duration, true);
Set distanceX and distanceY to the value you want to scroll. These values are in grid terms.
Set duration to the amount of frames this scroll will take
!IMPORTANT! Leave the last value as true! This sets it apart from the other .startQuasiScroll()!
Scroll Towards Characters <Script Call>
Code:
$gameMap.scrollTowards(ID, duration, true);
Set ID to the ID of the event you want to scroll towards. If ID is set to 0, then it will scroll to the player.
Set duration to the amount of frames this scroll will take
!IMPORTANT! Leave the last value as true! This sets it apart from the other .scrollTowards()!