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 :)
Use this script call:
$game_party.increase_steps
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
that was perfect! 8) but I can't seem to find the thank you button for you...
I'll make another question. Thanks :shy:
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. :)