RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Data_system Help [Request]

Started by WcW, May 16, 2007, 09:51:45 PM

0 Members and 1 Guest are viewing this topic.

WcW

I need to know how I can add $data_system.word.runes, because I'm trying to add a secondary currency.
If you are reading this, the government of the U.S.A. is currently planting a chip in your brain.
People like decreasing my Rep. In fact, people like decreasing most others people's rep.

modern algebra

meh, just define a new variable.

It's not as if you can set it up in the database regardless.

At least, that's what I'd do. I am sure one of our actual scripters will abruptly enter and give 100 reasons why my way is bad  :P

I guess that's life  ;D

Zeriab

I do not know why you would want that so badly.
It doesn't hurt to show you I guess
Here's a version where runes is set to an empty array if you try to read it before writing to it:

module RPG
  class System
    class Words
      def runes
        @runes = []   if @runes.nil?
        return @runes
      end
      attr_writer :runes
    end
  end
end


Just paste this anywhere before you use it ^_^

WcW

I'm creating multiple currencies, I am going to do three currently: Gold, Runes, and Fishing Points.  I need this to finish the other currencies, thanks!!
If you are reading this, the government of the U.S.A. is currently planting a chip in your brain.
People like decreasing my Rep. In fact, people like decreasing most others people's rep.

Kokowam

Fishing points could just be stored in a game variable. XP So could runes? :P

WcW

Yes, but I want to be able to make a shop with them, therefore, I need currency and a slightly remodeled shop.  You see, I'm capable of basic scripting, probably once I get use to scripting I'll be capable of moderate RGSS abilities, and I just needed to know how to do that so I can make it as real as I want.  Thanks again for the help.

P.S. If I seem a little irritated, go check Error? and OBEY ME! to see why.
If you are reading this, the government of the U.S.A. is currently planting a chip in your brain.
People like decreasing my Rep. In fact, people like decreasing most others people's rep.