Garfield501 0 Report post Posted October 31, 2009 As the topic title says: How do I Change the step amount? I know how to check the steps, but I want to know how I can change the amount of it. Is that possible? Mark Share this post Link to post Share on other sites
Kiriashi 117 Report post Posted October 31, 2009 ..What? You want to change the "Step Amount"? What'd you mean? The amount of steps the player has taken? That is automatically changed. Share this post Link to post Share on other sites
Garfield501 0 Report post Posted October 31, 2009 ..What? You want to change the "Step Amount"? What'd you mean? The amount of steps the player has taken? That is automatically changed. Yes, I know that. But I want that when it hits a certain number, I want to reset it. Share this post Link to post Share on other sites
Polraudio 122 Report post Posted October 31, 2009 I just tried messing with it. I tried 20 different script commands and it didn't work. I thought it would be as simple as $game_party.steps = Number But no luck. i don't see why you cannot change it. Share this post Link to post Share on other sites
Garfield501 0 Report post Posted October 31, 2009 I found out how it works. first I needed to put this code in my script: #============================================================================== # ** Game_Party #------------------------------------------------------------------------------ # This scripts adds a method to reset your steps #============================================================================== class Game_Party #-------------------------------------------------------------------------- # * Reset Steps #-------------------------------------------------------------------------- def reset_steps @steps = 0 end end Then to reset the step amount: $game_party.reset_steps Thank you all for the efforts, but it is solved now. Again, thank you all. Share this post Link to post Share on other sites