Search the Community
Showing results for tags 'crafting'.
Found 16 results
-
NoMethodError occured, undefined method "empty?" with coelocanth's crafting script
MasterMoes posted a topic in Editor Support and Discussion
I'm using coelocanth's crafting system script for my VX Ace game, but I keep getting this error message: Whenever I open up the crafting menu from the pause menu, it works fine in the "items" and "key items" categories. However, as soon as I scroll over the "weapons" or "armors" category, the game crashes and the error appears. I don't know what's causing it, but it seems to be equipment-related. I am using Victor's "instance items" script in order for my weapons and armor to have durability, and I've had other script errors due to the instance item script, so could it be related to that? Here is the crafting script: The issue occurs on line 269, the "!(@crafting_items.empty? && \" line. Any help is appreciated.- 10 replies
-
- coelocanth
- nomethoderror
-
(and 3 more)
Tagged with:
-
Take on the role of R3-M1, a newly activated robot, as they venture through a dark, dystopian world in search of answers. Yet, the clues lie buried within dust and ash, data files, and audio clips left behind by decaying corpses from a not-so-distant past. However, in the shadows lurks an ancient evil--creatures stalking and hunting you at every turn. You must follow the breadcrumbs left behind by your creator in hopes of locating and protecting her. She gave you life, and you must save hers. R3-M1 Battle Model. Equipped with Mech-Blade and Particle Gun. Buy yours today for just $5999! Scavenge for resources and craft items/upgrades. Sideview battle system with melee and ranged combat. Combine abilities for a variety of unique reactions. Fully animated, custom enemies. Upgrade armor and abilities for unique combinations. Fully voiced dialogue by a talented cast of actors. Unique puzzles and hidden areas to discover. No random encounters. All enemies are scripted into each map. Dark and atmospheric with a horror/sci-fi theme. VIDEOS Sagrim's Emporium Official Teaser Trailer Just before your creator vanished, she wanted a codex hub to store data and audio files. She converted KARN into this hub. Sadly, it was left unfinished, with the machine still resembling the arcade game's outer appearance and playing the classic chiptune music it's so well-known for. Full Gameplay Trailer Free Demo! Make love, not war! !!WARNING!! This game will contain horror images, sounds, and music, including blood and gore.
-
- custom sprites
- voice acting
-
(and 6 more)
Tagged with:
-
Panthea (Demo) The game is free to download in itch.io....the link is at the bottom Phantea, a world ruled by 5 pantheons of Deities, each one coexisting in peace and harmony, until a sixth pantheon decides to atack causing an unprecedented catastrophe...now it's up to the last remaining humans to save the world and restore balance to the universe... Game features: - Open world exploration (After the 3rd dungeon the world opens up completely). - No level ups and no experience, develop your character by exploring, optional areas, extra enemies, everything can lead to extra skills, stats and equipement. - No random encounters, enemies have overworld sprites and different behaviors. All of them can be dogged if you want. - A simple crafting system with over 100 weapons armors and items... - Develop your town by finding new survivors, each unlocking new features for your town, like a fast travel system, shops and more... - You can pet the dog. - Explore the world to find new skills (Over 50 skills currently implemented with many more coming). - Fast paced ATB battles with many custom animations for skills and small numbers of damage for more balanced and controlled fights. - I hope you like it and be sure to give me some feedback 😃 The demo should take around 5 to 6 hours to complete... https://diego-binder.itch.io/phantea
-
- postapocalyptic
- crafting
-
(and 2 more)
Tagged with:
-
CGMZ Crafting By: Casper Gaming Last Update: 9/28/2020 Latest Version: 1.0.0 Introduction Adds a crafting system to your game that works well with CGMZ Professions. It can handle item requirements (consumed on craft), tool requirements (not consumed on craft), products (produced on craft success) and fail products (produced on craft fail). Recipes can be discovered by using an item or via plugin command. Features Crafting system with ingredients, tools, fail products, and success products Works well with CGMZ Professions Learn recipes on level up, item use, or plugin command Screenshots How to Use Import into plugin manager and enable the plugin. Some customization options are available. Further instructions in plugin. Plugin Plugin (along with all my other plugins) can be found here: https://www.caspergaming.com/plugins/cgmz/crafting/ For a profession system that works well with this crafting system: https://www.caspergaming.com/plugins/cgmz/professions/ For a pop up window when learning a recipe, use my toast manager: https://www.caspergaming.com/plugins/cgmz/toastmanager/ Requires CGMZ Core which can be found here: https://www.caspergaming.com/plugins/cgmz/core/ Credit & Terms https://www.caspergaming.com/terms-of-use/ Version Info
-
CGMV Crafting By: Casper Gaming Last Update:8/14/2020 Latest Version: 1.0 Introduction This plugin creates a crafting system for your game. Set up a complex or limited crafting system that integrates well with CGMV Professions (optional). Discover recipes via events or from using items. Use tools and ingredients to produce products (crafting success) or waste items (crafting fail). Features Adds a crafting system to your game Ability to restrict the crafting scene to only show certain recipes (e.g. all cooking recipes but no blacksmith recipes) Use tools and ingredients to produce products or waste products if the craft fails Discover new recipes via events or by the player using an item in game Extends the functionality of CGMV Professions Screenshots How to Use Import into plugin manager and enable the plugin. Some customization options are able to be altered. Plugin Plugin (along with all my other plugins) can be found here: LINK For a profession system that works well with this crafting plugin, use my CGMV Professions: LINK Requires CGMV Core, which can be found here: LINK Credit & Terms Link Version Info
-
A new script of mine for you Szyu's Crafting System Introduction This script allows you to define recipe books and craft items, weapons and armors, to give the player new aims in the world of 2D RPGs. How to Use - "SceneManager.call(Scene_Crafting)" opens the crafting menu - "SceneManager.call(Scene_Crafting, x) opens the categorized crafting menu with category x (x = -1 for all lists) - "<ingredients> content </ingredients>" marks the area used to define the item's/ weapon's/ armor's ingredients Example: <ingredients> i: 3x 5 => 3 items of item_id 5 w: 2x 7 => 2 weapons of weapon_id 7 a: 1x 2 => 1 armor of armor_id 2 </ingredients> - "<recipe book>" marks an item as recipe book (Please only use on items while they are tagged as key item!) - "<category: x>" marks a recipe book to have a category from the list inside the script (0 based) - "<recipes> content </recipes>" marks the area used to define the recipes held by the book Example: <recipes> i: 5 => ability to craft the item with id 5 w: 7 => ability to craft the weapon with id 7 a: 2 => ability to craft the armor with id 2 </recipes> - "$data_items[book_id].add_recipe("i/w/a: id")" adds a new recipe to the recipe book Example: $data_items[5].add_recipe("w: 33") - "$data_items[book_id].remove_recipe("i/w/a: id")"removes a recipe from the recipe book Example: $data_items[5].remove_recipe("w: 33") Screenshots The crafting menu with the ingredients list The particular recipes can be found by using the recipe books from the item menu Links Pastebin via Adf.ly if you want to support me Pastebin direkt Credits Credits to Szyu if you plan to use this script. Changelog - Fixed issues with multiple recipe books - Recipe Books can now be categorized. So you can call different Crafting Lists for Blacksmithing, Alchemy or whatever you want. - An issue with the ingredients list has been fixed -> The ingredients list has shown the ingredients of the last item selected after returning to the category list - Fixed error with duplicates after adding recipes to a rb - Added function to remove recipes from a rb - Fixed error occuring whith SceneManager when running with other scripts manipulating this module - Recipe books now correctly store their recipes when saving the game - Added function to call crafting scene from menu - Fixed problem with currency as ingredient not to be displayed correctly - Added item count of recipe items in inventory - Fixed error when having currency for ingredients - Added customizable sound effects for crafting success - Modified status screen of recipes. - Fixed bug with savestates, where added recipes disappear after reloading - Added function to add multiple recipes at one (more information in the scripts description) - Fixed error when loading the items status information from the crafting menu
-
Author: Mr. Trivel Name: Crafting Created: 2016-03-27 Version: 1.0 What does it do? Allows players to craft items. Video: How to use? First, you'll need 2 new files in data folder: Recipes.json Disciplines.json Recipes file will hold all recipe data and Disciplines file will hold data about disciplines. I *highly* recommend checking sample files that are located in the demo of this plugin. Discipline object looks like this: And file structure looks like this: [ null, object, object, ..., object ] "ID" - to identify which disciiplice is which and for plugin calls. ID > 0 "Name" - how discipline is called "IconID" - icon for discipline "ExpFormula" - leveling formula for discipline, level stands for current discipline level "MaxLevel" - max possible discipline level "Categories" - Categories to organize items when crafting "Background" - Give a background to crafting. Leave it empty - "" to use default background. Images go into img\System Recipe object looks like this: And file structure looks like this: [ null, object, object, ..., object ] "ID" - To know which recipe is which. ID > 0 "Name" - How it appears in crafting window "IconIndex" - Icon for recipe "Result" - What items and how many of them result by crafting it, can be more than one item. "Requires" - What items and how many of them are required to craft it. { "Type" - item type - "weapon", "item", "armor" "ID" - item ID "Amount" - how much of the item } "Discipline" - which disicipline's recipe is this "Category" - under which categories will item be shown, can be multiple "XP" - XP given for the discipline "LevelReq" - Discipline level requirement to craft it "Learned" - how is the recipe learned - "start" - from the start, "command" by plugin command, "levelhit" - unlocks automatically when hits required level Plugin Commands: Crafting Start [DISCIPLINE_ID] - opens scene to craft with discipline Crafting GainExp [DISCIPLINE_ID] [EXP] - give exp to certain discipline Crafting Learn [RECIPE_ID] - learn a specific recipe Examples: Crafting Start 3 Crafting GainExp 1 100 Crafting Learn 5 Script Calls: $gameSystem.getDisciplineExp(DISCIPLINE_ID) - returns EXP of a discipline $gameSystem.getDisciplineLevel(DISCIPLINE_ID) - returns LEVEL of a discipline $gameSystem.isRecipeKnown(RECIPE_ID) - returns if recipe is learned $gameSystem.knownRecipesNumber(DISCIPLINE_ID) - returns amount of recipes known Plugin: <Link: Github> How to download the Plugin: Click the link above, there will be a button named Raw, press Right Click -> Save As. Demo: <Link: Mediafire> Terms of Use: Don't remove the header or claim that you wrote this plugin. Credit Mr. Trivel if using this plugin in your project. Free non-commercial projects. For commercial use contact Mr. Trivel.
- 3 replies
-
- 2
-
-
- synthesize
- create
- (and 5 more)
-
Have any of you played the sample game Crysalis? I'm trying to make a crafting-in-battle system like the one in that game. As of now, I was able to make a skill (create and consume a potion) appears only when certain items are in the inventory and them consume these items to use in the skill. But I couldn't make the skill disappear after consuming these items. Can anyone help me understand that game's system better? If you don't know the game, here's the link to download it http://www.rpgmakerweb.com/download/additional/sample-games thanks in advance
-
Small details: This game will be commercial and will cost $9.99. Summary: Play as Kuan a half-demon born in Hell. And enjoy many features such as: Explore a vast open world with many quests and things to do. Complete the story and save the world from Kuan's demonic father. Indulge in the full card battle system. With 150 unique cards forged with the crafting system. Take a break from the battles and spends days farming with over 33 different crops. Use them to trade, sell, or eat! Over 100 side-quests. Over 100 towns. Fast paced no wait battle system. Turn-based is also featured. Genre: Fantasy, JRPG. Game Progression: How far am I?? About a month and a half away!! Story: 100% Farm system: 100% Card system: 100% Mapping: 98% Music/Sound: 25% Scheduled game release Q4 2017. Characters: Kuan: Half-demon and main protagonist. He is betrayed by his father and strung along while seeking his revenge. Amos: Demon and father of Kuan and Chung. Main Antagonist. Anri: A poor and helpless girl that gets caught up in the midst of things. Oblivious to the eternal conflict. Priestess Audie: A benevolent priest that watched over Kuan while he was dormant. Master Sage Oat: Kuan's guiding hand. And soo many more.. How much further can I go without spoiling?? Story: Kuan and Chung lived normal lives in Hell until their father got a hold of an amulet made by Griswold a Demonlord. This amulet was forged as a treaty between Angels and Demons so they may nullify the power of the Ancients. The Ancients were beings of enormous power each created on their own accord. Negative energy that lies dormant for too long within varying dimensions finds a host and thereby creating an ancient. These Ancients threatened both Heaven and Hell. For the first and only time in all existance, Angels and Demons came together to create a trinket so strong that they only allowed those with human blood to possess it. That is when Amos, being obsessed with the Ancients, created a blood ritual and had 2 sons of his own. Both half-demon and half-human. They were able to wield this powerful amulet and do his bidding to seal the Ancients. But alas, Amos' plan to sacrifice Kuan was revealed and instead Chung gave his own life to save him. Nevertheless a portal was opened to the mortal realm and an invasion of demons scourged the land. ----------- 1000 years later, Kuan awoke from his sealed prison after Master Sage Tenoch's seal shattered. Priestess Audie and Master Sage Oat quickly but with great caution take him in and hope that he can be the new "Hero" of this age. For just as it does every 1000 years, Lucifer sends an invasion of demons to try and reclaim the mortal realm as a stepping stone to Heaven. From here on, it is up to Kuan to stop the invasion and put an end to malevolence once and for all! Screenshots: Battle System: Features of the battle system: Fast paced battle system with over 20 playable characters. All having their own sets of skills and classes. Not turn-based. React quickly with 6 preset skills that are hotkeys into your controller or keyboard. 1-6... 6 being alchemy bag for all characters. No resources aside from TP which only parents one ultimate skill. The other 4 are all situational. So think before you act!!! Customize your character by changing their class, a well balanced equipment system with major perks for all big 3 armor types, flasks to increase parameters. Armor system has varying potentials. For example, any class can wear any armor. Give your DPS heavy armor to keep them alive longer in combat! Buffs mean everything. Without them hard difficulties are essentially impossible. 4 Difficulty settings including a super easy that allows for the Battle System to be turn-based. Random encounters... They can be turned completely OFF. Aside from dungeons and even there they are limited to 2-3 per floor. CARD Battle System: Features of the CARD battle system: Collect essences from rare versions of World Map monsters. Forge the essences into cards using the Cardcrafting station in your Headquarters. Take those said cards into a battle with 1 of the over 100 battles throughout the world. Select up to 7 cards per battle. With a limiting power of 25. Better qualities cards use MORE power. Defeat 7 Card Hubs throughout the world to face up against the Card Champions in Tarn. Rewards after each victory and the NPC's even talk smack during the battle! Farming System: Features of the Farming System: Till the land anywhere in farm area of your Headquarters. Plant a seed of one of more than 33 different crops! Water them and watch them grow. Will take patience... Of course. Excellent yield that can make you quite a bit of Mola! A chicken coop where you can raise chickens. Get Eggs or if the ratio is right, get more hens and roosters! A livestock farm where you can raise cows and sheep! Get wool or milk, and again, if the ratio is right more animals! The Economy: Features to manage the currency. Random shopkeepers around the world will be randomized per play. With random goods and random purchase multiplier. An auction house where you can bid with other NPC's. They are witty bastards! Caches inside houses serve as a quick means to getting loot. Careful, when you steal them your karma goes down! Well balanced to provide a good means to getting armor, accessories, and a bunch of other useful items. Playable Characters: Other Notable Features: A sleek and simple menu system for clear navigation. A vast tutorial page that you can call up on your own accord. An encyclopedia to describe states, enemies, and so fourth in more detail. An achievement system that also has stats depicting how much damage you've dealt and so fourth. A descriptive parameter chart so you can get an idea of how best to customize your battle members. All enemies level with you. Meaning every battle is a challenge. Only story battles cannot be skipped! Levels grant more stamina to run longer, better sustenance control, and vigor! Credits:
- 3 replies
-
- 3
-
-
- fast battle system
- farming
- (and 9 more)
-
So while back I had the idea to make crafting work for everything in game. Now that I am making an action rpg I have a new idea. basically it's just this gui. the left top box is the weapon, and the right top box is the gem. the bottom rectangle is the recipe name, and the outcome is on the right. I have no desire for a skill tree, so crafting will just rely on the base object and gem in terms of chance of success. So a steel sword with rubies would be less likely to work than a bronze sword with rubies, and so on. The benefit would allow the player to create new weapons which may never drop in game. The downside is that it costs all of your collected experience to craft anything, and the higher your level the more costly it becomes. This type of balance could help allow the player to better decide on play styles and techniques as more depth is added to the game. For instance a broadsword maybe does just a little bit of damage to a dragon, but add some rubies and now you can burn it up.
-
I can't seem to get the recipes to show up in the crafting log. Specifically the kyanpu crafting screen will open; however there are no crafting options there, even though I did event them in. Just a "blank" option and then when you click that game crash. Can someone pick out what I'm doing wrong? ​Recipes: [ null, { "ID": 101, "Name": "Ha Tento", "IconIndex": 1, "Result": [{"Type":"item","ID":81,"Amount":1}], "Requires":[{"Type":"item","ID":53,"Amount":20},{"Type":"item","ID":26,"Amount":5}], "Discipline": 1, "Category": [], "XP": 50, "LevelReq": 1, "Learned": "command" }, { "ID": 102, "Name": "Kyanpu no Hi", "IconIndex": 64, "Result": [{"Type":"item","ID":82,"Amount":1}], "Requires":[{"Type":"item","ID":53,"Amount":5},{"Type":"item","ID":26,"Amount":3},{"Type":"item","ID":27,"Amount":3}], "Discipline": 1, "Category": [], "XP": 50, "LevelReq": 1, "Learned": "command" } ] Disciplines [ null, { "ID": 1, "Name": "Kyanpu", "IconID": 0, "ExpFormula": "100*level", "MaxLevel":5, "Categories": [], "Background": "" }, { "ID": 2, "Name": "Cooking", "IconID": 0, "ExpFormula": "100*level", "MaxLevel": 5, "Categories": ["Ryori"], "Background":"" } ]
-
MLP RPG: Fighting the Unknown Part 1 Story / Setting / Purpose: This game is based upon unique storyline customized from the cartoon series “My Little Pony: Friendship is Magic†but at the same time for those players who haven’t watched the series yet, they can still follow up to the story without any trouble. The game features epic classical RPG experience as well, that means if you love MLP and as well as drilling experience of classical RPG games everything would work out for you. Game will have over 10 unique classes, over 200 unique skills, unique transportation system (Teleport scrolls, all ponies can fly on high level), unique monsters (Randomized), epic bosses, customized characters,infinite/unlimited weapon/armor possibilities, crafting, mining, fishing, farming, house construction, player housing, achievements, and many more! This game is one of the few RPG out there that have such unique functions. settings of the game is at Earth and Pony world. Purpose: combat simulator, prepares the player for part 2 of the game. (Where it would be considered as the actual game) Progression: The game is finished with 8 to 12 hours of game play. Character Bios:: Mane six of the my little pony show. Twilight (Main Character) – She can be good at every single class. Fluttershy (Healer) – She is responsible for healing in battles. Applejack (DPS) – High damage dealer. Rainbow Dash (DPS) – High damage dealer. Rarity (Support) – Provide other characters with different kind of buff. Pinkie Pie (???) - ????????????????????????????????????? Why this game? This game is one of the better combat based rpg games out there. With over 100 scripts designed to bring you one of the most complex combat system made on rpg maker vx ace. What's more is that the game is semi-multiplayer! You can earn points and hiscore with our game account. What is next? We are working on part two on rpg maker MV with much better game play overall! Credit: full list at: http://darkkyshadow.com/brony/credit.html DShou - Sharing his pony spiritsheets. Alex. S - The DJ for few background music. Sim Gretina - The DJ for few background music. Tursumaji - A pony forum bug reporter. (Helped a ton during early game stages) MrFlabbergasted - Boss arena trixie vector Moghunter - Excellent scriptor on GUI ( probably one of the best out there. Only problem is caching and compatibility issues) Falcao and Eshra- Professional Scriptor on game mechanics GaryCXJK - Free movement script Zerbu, Fomar0153, Victor Sant, Tsukihime, Nicke, Dekita, Yami, Yanfly, Nelderson, Modern algebra, Khas, Jet10985, Mr. Bubble, Kread-EX, Gamesfreak13563 - Scripts Benji, Chris, FBU, Gary SInise, Granny, Kal, Lemonlure, Liberty, Radscythe, Syrus, Zeep - Font, icons, tilesets. Screenshots (limited screenshots to avoid spoilers): download: www.darkkyshadow.com/about.html
- 1 reply
-
- adventure
- semi-multiplayer
- (and 7 more)
-
So I had an idea about having 4 main actors who each had their own crafting system. Actor 1 (Smith) - Main tank line. Forges and repairs the parties equipment. Actor 2 (Cook) - Dedicated support. Mixes food ingredients into different goods that are both beneficial and delicious! Actor 3 (Alchemy) - Magic damage dealer. Mixes herbs and ingredients together to create good and bad concoctions. Actor 4 (Fletcher) - High damage output. Crafts bows, arrows, crossbows, and bolts which do a lot of damage. Would this be annoying to have to manage so many resources and materials? Could this be expanded upon further? What are your opinions on something like this? I was inspired by Glasses' (Mr. Trivel) simple crafting script.
-
Although I'm experienced in programming (I work on Unity so I'm very fluent in C# and Java), I'm tempted to start working with RPGMaker for an idea I've had for a while now. If anything it'll be a proof of concept that I can easily share before I attempt to publish the game (likely in Unity seeing as RPGMaker is unable to port to other mobile aside from PC). In any case, as the title suggest the game is primarily a simulator. It still takes place in a generic fantasy rpg setting (heroes, classes, exp, level, etc.) but those instead of being the generic MC, you play as an one of the NPC. A Blacksmith, Innkeeper, etc. A simulator where you basically make a living supplying theses 'heroes'. Now there will be bits of actual rpg elements for the player, like leveling up as a blacksmith, but I'd like to know if a game focused on being a simulator is possible to develop on RPGMaker. I suppose I shouldn't say "possible", I'm sure it is, rather is it feasible? I'm well aware that they'll be intense scripting needed, I'm no stranger to that. If anybody has any experience trying to make a simulation game (not counting dating sims, just too different), please give your thoughts or tips on how I should go about doing this. Or if anybody have stumbled or played a simulator game built on RPGMaker, please refer them to me with a link is possible. Thank you ~Zai
-
So here is something weird I have been working on a bit. I wrote a few scripts that let me create lists of items based on keywords that the items are tagged with in notes. I mostly use it for shops, mostly so shops don't have to be redone if I need to rearange the order of items and I can easily make shops sell perticular kinda of items. Anyway, just for an experment, I make a little thing that let you pick two items, get the list of keywords both items use, and make a list of items that had those keywords, sorted by how many keywords matched. For example if I have a normal staff tagged "staff" and a object tagged "holy" it will try to match any object that has both "holy" and "staff". It's probobly not too remarkable a idea, I just wondered if it would make a good base for a item fusion/crafting system. I could probobly add secondary keywords like materials if I wanted to, and limit results based on item level/rarity or something. It strikes me as a lot more interesting then the recipe systems people seem to like for whatever reason. What do you guys think?
-
CSCA Crafting By: Casper Gaming (Casper667) Last Update: May 17, 2013 Latest version: 1.0.4 Introduction Allows you to easily set up crafting recipes, while remaining a powerful crafting script. Can show only recipe's of a certain type in the crafting scene. Can note tag armors/weapons to increase crafting stats. Intended for use with CSCA Professions but not required. Lots of customization. Supports CSCA Currency System currencies in crafting recipes. Screenshots Discovering new recipes. Toast messages shown only if using the CSCA Toast Manager. The crafting menu! It can differentiate between, say, cooking and alchemy recipes. If using the CSCA Toast Manager, crafting result window will be displayed! Works well with CSCA Professions. How to Use Place in your materials section. Setup required. Instructions in script. Updates version 1.0.1 - Bug fix: Ingredients should now display properly. version 1.0.2 - Bug Fix: Required Items/Products can now be weapons, armors, and gold too. version 1.0.3 - Bug Fix: Errors dealing with required items should now be fixed. (finally)(hopefully) - CSCA Currency System colors now show in the crafting info window. version 1.0.4 - Bug Fix: Errors dealing with gold and CSCA Currency System should be fixed now. Script Text file is found here(copy and paste everything into your script editor in the materials section): LINK Requires CSCA Core Script to work properly - Get it here! Optional: For the discovery/craft result windows, you'll need CSCA Toast Manager - Get it here! Optional: For a full profession system that works well with the crafting system, use CSCA Professions! - Get it here! Credit Casper Gaming Terms http://caspergaming.com/terms-of-use/