• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Cyndy, May, Hero (Conquest), or Wes - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Add Running Toggle

  • 55
    Posts
    11
    Years
    • Seen Oct 8, 2019
    Notes that 'A' in Default Essentials matchs 'Z' in keyboard. Change ZZZ for one switch number. Untested.

    In Scene_Map, before line 'if Input.trigger?(Input::F5)' add:

    Code:
    if Input.trigger?(Input::A)
      $game_switches[ZZZ]=!$game_switches[ZZZ]
    end
    In Walk_Run change the line 'return Input.press?(Input::A) &&' to 'return $game_switches[ZZZ] &&'.


    I updated my game to v16.2 and tried to insert the permanent running again.
    I only could find a deprecated script on the wikia by -FL- and this thread here.
    But the script has changed and the line return Input.press?(Input::A) && doesn't exist anymore.

    Is there anybody who can tell me how to edit the script that the player runs permanently again?

    Thank you very much in advance!

    Cheers Hargatio
     
    Last edited by a moderator:
    I updated my game to v16.2 and tried to insert the permanent running again.

    Is there anybody who can tell me how to edit the script that the player runs permanently again?

    In the Options Screen theres a option which says "Running Key - Hold / Toggle". No need to edit any script.
     
    Back
    Top