REPEAT ANIME SCRIPT

RPG Maker VX Ace

Repeats an animation via script call to avoid large eventing and loops.

Repeat Anime Script
Version 1.0
Author: SoulPour777

Description:

This script allows the user to create repetitive animations on screen via script call. This is to avoid creating too many events that creates looping animation, as well as creating the same animation and action for large events.

Instructions:

To create a looping animation, do a script call via event:

soul_anime(character, animation_id)

Character Values:
-1 is for Player
0 for This Event
1 and so on for Event ID.

For example:

soul_anime(0, 25)
^ this will loop the animation #25 on the event you placed the script call.

How can I stop the animation then?

You can re-call a script call that changes the animation ID to 0.

Example:

soul_anime(0, 0)
^ this way, the looping animation I used as an example awhile ago would turn off.