- Joined
- Dec 30, 2012
- Messages
- 196
- Reaction score
- 176
- First Language
- English
- Primarily Uses
- N/A
Is there a way to make an events' move route move 'up,down,left,right' more than once?
For example, a normal looking move route would look like:
Instead I'd like something like:
I know I can just use a path finding script but it doesn't work with most of my other scripts. (I'm using a pixel movement script)
The Pixel movement script counts each move as 8 pixels. Therefore, in the moveset I have to make it 'move up' 8 times in order to make an event move one whole tile.
As an alternate solution, maybe the wiser decision is to make a pathfinding script compatible with the pixel movement script?
For example, a normal looking move route would look like:
> Move Up
> Move Up
> Move Up
> Move Right
> Move Right
>
> Move Up
> Move Up
> Move Right
> Move Right
>
Instead I'd like something like:
> Move Up (x3)
> Move Right (x2)
>
> Move Right (x2)
>
I know I can just use a path finding script but it doesn't work with most of my other scripts. (I'm using a pixel movement script)
The Pixel movement script counts each move as 8 pixels. Therefore, in the moveset I have to make it 'move up' 8 times in order to make an event move one whole tile.
As an alternate solution, maybe the wiser decision is to make a pathfinding script compatible with the pixel movement script?