1 Touch Button movement Like Frogger

● ARCHIVED · READ-ONLY
Started by tearsofthenight 13 posts View original ↗
  1. I need a script that moves the sprite like this:
  2. Are you wanting all movement to be jumping? Victor has a jump movement script. I'm wondering if it could be modified so that that was the default movement. Perhaps I'm misunderstanding what exactly you want though?
  3. mlogan said:
    Are you wanting all movement to be jumping? Victor has a jump movement script. I'm wondering if it could be modified so that that was the default movement. Perhaps I'm misunderstanding what exactly you want though?
    basically i want the movement to be where you push the left button once and it moves you once, no solid walking stuff.
  4. Do you want that for the whole game, or just for a mini game? ie - do you need to be able to turn that movement on/off?
  5. Basically i need movement scripts, moving platform scripts, checkpoints system scrips, and health system script.
  6. Victor Scripts has the Movement Scripts and Moving Platform scripts. http://victorscripts.wordpress.com/  

    Doesn't look like it has scripts for checkpoints or a health system.
  7. DarkstarMatryx said:
    Victor Scripts has the Movement Scripts and Moving Platform scripts. http://victorscripts.wordpress.com/  

    Doesn't look like it has scripts for checkpoints or a health system.

    Thank you now all i need is a checkpoint system and Movement like frogger.
  8. Basically is it possible to limit movement to 1 arrow key push like the game frogger?
  9. Can you be a bit more specific? 
  10. ❤SCIENCE❤ said:
    Can you be a bit more specific? 

    i want my game to have 1 arrow key push and not hold down arrow keys. Like in order to move you need to keep hitting the arrow keys.
  11. tearsofthenight, you have started a number of threads all dealing with the same issue. You've also posted about this on the status feed. Please read the forum rules as you go on breaking them despite being told not to do it. Do not start ANY more threads for this issue. It's confusing, doesn't get you the answer any faster, and just annoying.
  12. merging your numerous threads together. Why ask the same question over and over in multiple places, making everyone have to start again in answering you?
  13. Here you go:

    class Game_Player < Game_Character def move_by_input return if !movable? || $game_map.interpreter.running? if Input.trigger? :LEFT move_straight(4) elsif Input.trigger? :RIGHT move_straight(6) elsif Input.trigger? :UP move_straight(8) elsif Input.trigger? :DOWN move_straight(2) end endendOpen the script editor and paste that in a new slot above Main.

    Cheers.