POFFEMAN'S PROFILE
Poffeman
0
Search
Filter
How do I change movement?
I posted the code in the same screenshot. It's in the bottom. And I tried copying but it didn't work. :S
and this error makes me unable to start the game and if I'm able to start it I can't move.
and this error makes me unable to start the game and if I'm able to start it I can't move.
How do I change movement?
How do I change movement?
author=Quiversee link=topic=971.msg13307#msg13307 date=1209217137Didn't work. Couldn't even start the game. ;(
That event coding would work, but WIP is right there is a simple script out there for the 8-directional movement.
What you do is go into the script editor, and find the Game_Player script. Go to Line 214. You will see what looks like this:case Input.dir4
when 2
move_down
when 4
move_left
when 6
move_right
when 8
move_up
end
Just replace it with this...case Input.dir8
when 1
move_left
move_down
when 2
move_down
when 3
move_right
move_down
when 4
move_left
when 6
move_right
when 7
move_left
move_up
when 8
move_up
when 9
move_right
move_up
end
There you go all set.
But thanks anyway!
How do I change movement?
Hmm well I'd like it to be permanent and not event triggered. Is it possible?
EDIT: Might as well put in another question.
If I make an event that shows text when I touch it, but I don't want it to show anymore the next time I touch it. What do I do?
EDIT: Might as well put in another question.
If I make an event that shows text when I touch it, but I don't want it to show anymore the next time I touch it. What do I do?
How do I change movement?
Pages:
1














