POFFEMAN'S PROFILE

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.

How do I change movement?

Goddamnit! Now I get an error when I try to test play it. Tried changing it back to what it was at first but it's not working. Help please!

How do I change movement?

author=Quiversee link=topic=971.msg13307#msg13307 date=1209217137
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.
Didn't work. Couldn't even start the game. ;(
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?

How do I change movement?

Heya, I'm using RPG Maker XP and was wondering how I can get advanced movement? Not just horizontally and vertically. Like if I hold the Up and Left button it will go North-west.
Pages: 1