Blacksmith system?

Started by rpgmakerfanhaha, October 03, 2009, 12:55:28 pm

Previous topic - Next topic

rpgmakerfanhaha

Don't be confused with the creation system.In this,I want a weapon to be made by some kind of materials.Can it be made by event?

Blizzard

There are crafting systems out there where you can define possible recipes that can be used at a blacksmith shop to create items.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

9VoltWiseMan

Easy, I made a bunch of little "Books" that I was going to put in my game. (Each book had 3 things you could make, but things can get very long if you need a bunch of materials, so I'm probably going to switch over to scripts)

Okay, lets say you want an item to allow you to make items. (Like a book or whatever in your inventory)
You will need to make a common event first.

Make text saying something like, "Do you want to make a Bananarang? It requires 1 banana and 1 piece of pure awesomeness."

Then have a choice event saying yes or no.
Under the "YES" or whatever you named it, set a conditional branch (Under comment on page 1) seeing if a Banana is in your item inventory.

Make another conditional branch just under the one you just made looking for a piece of pure awesomeness.

Now, just under the second conditional branch, put text saying something like "Made bananarang" Now take away the banana and the piece of pure awesomeness and add the bananarang.

There is a section in the conditional branch saying "else" DON'T put the eventing there, put text in the 2  "else" saying "You do not have the ingredients to make this." or something similar.

Then link the item (book or whatever) with the common event.

And there you have it. Hope this helps.
The Beta Demo of Curse's Flaw will be here.. Eventually.

Jalm

You may also consider using the dozens of crafting scripts out there, if Blizz's Creation system doesn't catch your fancy.

http://www.creationasylum.net/forum/index.php?showtopic=755&st=0

Or you could just event it, like he said. That's always fun.

rpgmakerfanhaha

Thank you mighty.I have used the common events system now.