A downloadable Script

Download NowName your own price

Commandi/commands: 

SceneManager.call(Scene_Crafting) 
CraftingManager.unlock_recipe(4)


ITA: è uno script per Rpg maker vx ace che aggiunge un sistema completo di crafting

All'inizio dello script c'è la configurazione. Potrete cambiare le categorie e creare le vostre ricette


ENG This is a script for RPG Maker VX Ace that adds a complete crafting system.

The configuration is at the beginning of the script. You can change the categories and create your own recipes.

Configuration translated into English


#=========================================================================================
# ** RPG Maker VX Ace crafting system
#=========================================================================================
#=========================================================================================
# ** Information
# ** Version: 1.0
# ** Author: Augu0107
# ** Script: CraftingSystem
#=========================================================================================
#=========================================================================================
# ** Start config
#=========================================================================================
module AUGU_CRAFTING 
CATEGORIES = [ 
{ id: :weapons, name: "Weapons" }, 
{ id: :armor, name: "Armor" }, 
{ id: :items, name: "Items" }, 
{ id: :materials, name: "Materials" }, 
] 
RECIPES = [ 
{ 
id: 1, 
name: "Scaly Dress", 
category: :armor, 
unlocked: true, 
ingredients: [ 
{ item_type: :item, item_id: 6, amount: 2 }, 
{ item_type: :item, item_id: 5, amount: 6 }, 
], 
result: { item_type: :armor, item_id: 2, amount: 1 } 
}, 
] 
LOCKED_TEXT = "???" 
# Colors as lazy methods - NEVER as Color.new constants (they crash on load) 
def self.color_title; Color.new(255, 220, 100); end 
def self.color_category_on; Color.new(255, 220, 100); end 
def self.color_have_mat; Color.new( 80, 220, 80); end 
def self.color_lack_mat; Color.new(220, 80, 80); end 
def self.color_locked; Color.new(150, 150, 150); end 
def self.color_result; Color.new(150, 200, 255); end 
def self.color_craft_ok; Color.new( 80, 200, 80); end 
def self.color_craft_dis; Color.new(120, 120, 120); end
end
#=========================================================================================
# ** End config
#=========================================================================================
Published 25 days ago
StatusReleased
CategoryAssets
AuthorAugu0107
Made withRPG Maker
Tagsrpg-maker-vx-ace, scripts
Average sessionA few seconds
LanguagesEnglish, Italian

Download

Download NowName your own price

Click download now to get access to the following files:

Augu_CraftingSystem.txt 1.9 kB

Leave a comment

Log in with itch.io to leave a comment.