Szyu

Villager
Member
Joined
Aug 22, 2013
Messages
29
Reaction score
62
First Language
German
Primarily Uses
Szyu's CraftingSystem​
plugin for RPG Maker MV​
v1.0​
 
Introduction
A simple crafting system, to craft items, weapons and armors based on recipes and recipe books.
 
 
Download
Link to mediafire

 
 
Screenshots

crafting1_zpsqiuumtvz.png

 
 
crafting2_zpsh422dpzo.png

How to Use
For detailed explanations on how to use the plugin, check the plugin manager's help button for this script.

Terms of Use
You are free to use this script for commercial and non-commercial projects. However I'd like you to inform me of the projects you are planning to use it in, so I can keep track of where my scripts are used.
 
Last edited by a moderator:

Richard John S

Rpg Maker Music Pack Contributor
Veteran
Joined
Jan 31, 2014
Messages
218
Reaction score
790
First Language
English
Primarily Uses
RMMZ
Excellent work!
 

Sol Rising

Veteran
Veteran
Joined
Oct 25, 2015
Messages
162
Reaction score
21
First Language
English
how does one go about bringing up the menu to craft these items? Can provide some pictures?
 

Solis

Veteran
Veteran
Joined
Oct 24, 2015
Messages
376
Reaction score
84
First Language
English
Think you have to create an event and then that event (page 3) has something called plugin in call; copy and paste the scene from the help file in the plugin. 

1. copy this: CraftingSystem open 0

2. Create an event. 

3. On the third page of the event, under advanced, bottom right, go to plugin call and copy CraftingSystem open 0 into the file. 

4. Save game: start it up and talk to the event with your character and the screen should pop up. 

5. I think this is all the scene call for menu if you want to make it show up in the menu instead. 
 

Szyu

Villager
Member
Joined
Aug 22, 2013
Messages
29
Reaction score
62
First Language
German
Primarily Uses
Yeah Solis is right... To open the crafting menu, you have to make a plugin call "CraftingSystem open 0"... If you have other crafting categories (default is blacksmithing and alchemy), you can access other categories by replacing the '0' with the index of the category (zero based).

And thanks guys for the positive replies :)
 

Skotty TV

Veteran
Veteran
Joined
Nov 4, 2015
Messages
98
Reaction score
196
First Language
German, English
Primarily Uses
Hi there!

This looks pretty awesome but inside the top window for the Categories is only a "B" for Category 0

and a "l" for Category 1.

How do i fix that?
 

Iliketea

Tea lover
Veteran
Joined
Oct 28, 2015
Messages
848
Reaction score
961
First Language
German
Hi, this plugin is really cool but doesnt seem to work for me. 

I added a new category called Cooking and tried to make a bread.

I added the note with the recipe to the bread item

UhLViN3.png
,


made the 4 ingredients and a recipe book

gBlHcew.png
 . 

Then I made a event with the plugin call : CraftingSystem open Kochen

And this happens: 

1HR8OYh.png


Nothing.

I also thought that you maybe need to add the recipe with an extra call or something,

so I made a event that should add the recipe to the cooking book:

CraftingSystem add_recipe 15: i10

Buuuuuuuut..... nothing happend. again nothing I could craft.

What did I wrong?

Also, it would be nice if you could add an explanation to the help file, not just the script calls. Or a tutorial or something.

But other then that, great work!
 

sarugaki339

Villager
Member
Joined
Oct 31, 2015
Messages
28
Reaction score
4
First Language
English
Primarily Uses
I'm having a similar issue. I kept the default categories for simplicity's sake, and I made a recipe book, gave that book to my character, then had an event that added a recipe to the book, and then open the craft menu. But it's blank with the exception of the category. But it isn't blacksmith, it's [

Perhaps a more detailed tutorial would help. If I solved this issue, the plug in is smooth and easy to use. Thank you!
 
Last edited by a moderator:

sarugaki339

Villager
Member
Joined
Oct 31, 2015
Messages
28
Reaction score
4
First Language
English
Primarily Uses
Okay I fixed one issue and found the problem you're having, iliketea, the issue is your recipe books category needs to be the corresponding number not the name. For example, my issue was the blacksmithing category was category #0 and in my recipe book, I wrote category: blacksmith. It needs to be category: 0 or whatever you made Kochen to be. However I'm still having another issue, where the recipe will now show up, but the category doesn't. The top window is still blank. For all intended purposes the script works but the top window is now blank.

EDIT: I also can't figure out how to access the stats of the weapon in the craft menu.
 
Last edited by a moderator:

Iliketea

Tea lover
Veteran
Joined
Oct 28, 2015
Messages
848
Reaction score
961
First Language
German
Okay I fixed one issue and found the problem you're having, iliketea, the issue is your recipe books category needs to be the corresponding number not the name. For example, my issue was the blacksmithing category was category #0 and in my recipe book, I wrote category: blacksmith. It needs to be category: 0 or whatever you made Kochen to be. However I'm still having another issue, where the recipe will now show up, but the category doesn't. The top window is still blank. For all intended purposes the script works but the top window is now blank.

EDIT: I also can't figure out how to access the stats of the weapon in the craft menu.
Yes that indeed solved some of the issues, thank you very much Sarugaki ^^ Now its the same as with you, the recipe shows up fine, but the name of the category doesnt. 

In case anyone adds custom categories: the first category you add will be nr3, the next nr4 and so on.  
 

sarugaki339

Villager
Member
Joined
Oct 31, 2015
Messages
28
Reaction score
4
First Language
English
Primarily Uses
Yes that indeed solved some of the issues, thank you very much Sarugaki ^^ Now its the same as with you, the recipe shows up fine, but the name of the category doesnt.

In case anyone adds custom categories: the first category you add will be nr3, the next nr4 and so on.
Glad I could help somewhat! Now if only we could figure out the missing category names, we'd be set!
 

Szyu

Villager
Member
Joined
Aug 22, 2013
Messages
29
Reaction score
62
First Language
German
Primarily Uses
I had a simple bug when defining the categories within the plugin manager... Updated the download file in the link.


Should now work as intended.


For those who were wondering about custom categories:


Per default there are 2 categories: Blacksmithing and Alchemy with Blacksmithing being category #0 and alchemy being #1.


So if you add a new category (i.e. Cooking), this category will be #2.


And as stated by sarugaki, you have to use the Plugin command with the id, not the name. Same goes for defining a recipe books category in database notes.
 

Iliketea

Tea lover
Veteran
Joined
Oct 28, 2015
Messages
848
Reaction score
961
First Language
German
I had a simple bug when defining the categories within the plugin manager... Updated the download file in the link.

Should now work as intended.

For those who were wondering about custom categories:

Per default there are 2 categories: Blacksmithing and Alchemy with Blacksmithing being category #0 and alchemy being #1.

So if you add a new category (i.e. Cooking), this category will be #2.

And as stated by sarugaki, you have to use the Plugin command with the id, not the name. Same goes for defining a recipe books category in database notes.
Now it works perfectly!!!! yay :D

BTW, it would be great if you could use your recipt book to look up the recipts you have. 
 
Last edited by a moderator:

sarugaki339

Villager
Member
Joined
Oct 31, 2015
Messages
28
Reaction score
4
First Language
English
Primarily Uses
I just tried the updated plug in and I can also confirm it's working now, thanks for the update, Szyu!
 

Jeffrey Torres

Villager
Member
Joined
Oct 4, 2013
Messages
7
Reaction score
2
First Language
English
Primarily Uses
Hm... Every time I try to run it I get an error: "Cannot read property 'forEach' of null"

I can get the crafting scene to appear when I don't have any recipes, but when I try after picking up a recipe book that's where it crashes.

Notes for Recipe Book:

<recipe_book>category: 0w: 2,3</recipe_book>Notes for crafted item:

Code:
<recipe>i: 33,10i: 34,10w: 2,1</recipe>
 

ARKS STUDIO

Villager
Member
Joined
Oct 28, 2015
Messages
24
Reaction score
4
First Language
english
I can't get this working at all only thing I am able to get to work is the blank menu that pops up called blacksmithing.
 

Bearsmith

Villager
Member
Joined
Nov 13, 2012
Messages
22
Reaction score
5
First Language
English
I can't get anything to work either. The recipe books I make are unusable.

My recipe book is
 

<recipe_book>category: 0a: 22</recipe_book>It has the scope "user" and it's marked as consumable.

The craftable item is
 

<recipe>i: 17, 5</recipe>Is there another step I need to do? I can't find anything else in the help. I'm also having this problem on a brand new project with no other plugins.

EDIT: Figured it out. The recipe book needs to be a key item. :)  The help should mention that, because it isn't clear now.
 
Last edited by a moderator:

Szyu

Villager
Member
Joined
Aug 22, 2013
Messages
29
Reaction score
62
First Language
German
Primarily Uses
@Bearsmith:


Hmmm... it should have worked for normal items too, since I don't have any key items in my testproject.


@Virun:


It would be helpful if you could provide more info about what you have tried.


@Jeffrey Torres:


You stated the note for one crafting item... how about the other one? Or could be please open the console with F8 and verify where the error occurs?
 

ARKS STUDIO

Villager
Member
Joined
Oct 28, 2015
Messages
24
Reaction score
4
First Language
english
@Bearsmith:

Hmmm... it should have worked for normal items too, since I don't have any key items in my testproject.

@Virun:

It would be helpful if you could provide more info about what you have tried.

@Jeffrey Torres:

You stated the note for one crafting item... how about the other one? Or could be please open the console with F8 and verify where the error occurs?
I got the menu to come up I am trying to figure out how to make recipe book or how to add items to it.
 

Latest Threads

Latest Profile Posts

I just hope I get to see the Mario movie while I'm in Fort Myers next week. I'm super hyped! Anyone else planning to see it when it comes out?
Brace yourself. We are approaching that time of the year again.
I once said, "I definitely want to be done with this project before my 40th birthday." At the time, I was about 50% done with the project.

With under 365 days to go now, I'm about ... 30% done.

What a sweet, innocent fool I was.
can anyone tell me how to edit my pfp it isn't obvious and I'm new here
Damn, took a chance on a paid MV plugin working with MZ (FOSSIL) but didn't work :p Been lucky up until now so I got cocky!

Forum statistics

Threads
129,990
Messages
1,206,801
Members
171,228
Latest member
TsukiPTGamer69
Top