Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: LeviAlvi on August 21, 2013, 04:32:29 pm

Title: Adding to play footsteps
Post by: LeviAlvi on August 21, 2013, 04:32:29 pm
How can I add an integer to the footsteps? because I'm using it as my point system.

I can't see where to manage the footsteps in events or script. Thanks  :)
Title: Re: Adding to play footsteps
Post by: KK20 on August 22, 2013, 12:56:00 am
Use this script call:
$game_party.increase_steps

Want more control?: ShowHide
In 'Game_Party' change
  attr_reader   :steps                    # number of steps

to
  attr_accessor   :steps                    # number of steps

Now you can use the script calls
$game_party.steps = amt
$game_party.steps += amt
$game_party.steps -= amt
Title: Re: Adding to play footsteps
Post by: LeviAlvi on August 22, 2013, 02:16:49 am
that was perfect!   8) but I can't seem to find the thank you button for you...

I'll make another question. Thanks  :shy:
Title: Re: Adding to play footsteps
Post by: WhiteRose on August 22, 2013, 12:14:07 pm
Quote from: LeviAlvi on August 22, 2013, 02:16:49 am
that was perfect!   8) but I can't seem to find the thank you button for you...


Underneath someone's name on the left side of their post is "Level ++" and "Level--" If someone helps you, you can "level them up," which is like thanking them, by clicking on "Level ++." It doesn't really mean anything, but it's a nice way to show someone that you appreciated their help. :)