Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: Scarface Larry on June 30, 2005, 03:25:02 PM

Title: Some RPGMaker Questions
Post by: Scarface Larry on June 30, 2005, 03:25:02 PM
Okay, just a couple of questions for RPGMaker, could someone please tell me how to make a item combonation system in RPGMaker, like where you'd pick one item and another and combine them to make a new one, I know this might be easy or really hard but I need it for my game, please and thank you to anybody who gives me some help.
Title:
Post by: WarxePB on June 30, 2005, 04:02:33 PM
Give me about an hour, and I'm going to answer all of your alchemy-related questions.
Title:
Post by: Scarface Larry on June 30, 2005, 04:04:32 PM
Thanks, I didn't expect a reply so soon, I was thinking about a day  :D
Title:
Post by: Dashman on June 30, 2005, 04:49:25 PM
heard of it before. Use fork conditions. 2 of them will do. Each of them must have a certain item selected. The start sgould be this:

<> Fork
  <>Fork

Remember that each of them need an item, so, if you have both, you make a new one. On them, put to lose the items you had, but get the one you are looking for. Put else cases, so, if you have not the items, a message appear daying "you are still missing something". The event can be an alchimist or someone with smithing skills. If they are many items, make decisions and, on each one, put the fork conditions. For each needed item, put a fork condition.

2:
<>Fork
 <>Fork

3
<>Fork
 <>Fork
   <>Fork

Etc...

Also, if you want to put an alchemist or whatever in each city, I suggest you to make common event and, qhen you talk to the person, call it. I think that there was once a tutorial about this on one of the boards of this forum.
Title:
Post by: Scarface Larry on June 30, 2005, 05:05:13 PM
Thank you, that really helps.