DayZ
Mod'sBlueprint
https://воен.ком/  [developer] Feb 4, 2022 @ 12:58pm
Предложения и пожелания \ Suggestions and wishes
Здесь я буду прислушиваться к вашим предложениям и пожеланиям в данной модификации (крафт)
---
Here I will listen to your suggestions and wishes in this modification (craft)
< >
Showing 1-4 of 4 comments
Soruud Jun 15, 2022 @ 12:56pm 
Hi. I tried to sign the .pbo file and run it on my server just to check the functionality. It loads, but dont work. Was it supposed to work or Do I need to change some settings ?
https://воен.ком/  [developer] Jun 16, 2022 @ 12:30am 
Hi, yes. First you need to register recipe in BluePrint_Craft.c (you can rename this file what you like).

In config BluePrint_Craft.c after registering recipe(s)


In stock
void RegisterRecipies() { super.RegisterRecipies(); RegisterRecipe(new CFT_Carbattery); //recipe number 1 RegisterRecipe(new CFT_TruckBattery); //recipe number 2 RegisterRecipe(new CFT_CivilianSedan); //recipe number 3 RegisterRecipe(new CFT_ChristmasTree); //recipe number 4 }

CFT_Carbattery that classname use in recipe (you can rename it)

void RegisterRecipies() { super.RegisterRecipies(); RegisterRecipe(new Craft_barrel); //recipe number 1 RegisterRecipe(new Craft_Axe); //recipe number 2 RegisterRecipe(new Craft_blah_blah_blah); //recipe number 3 RegisterRecipe(new Craft_something); //recipe number 4 }

Next gose code

class Craft_barrel extends RecipeBase //recipe number 1 { .... blah-blah-blah .... //ingredient 1 InsertIngredient(0,"Carbattery");//you can insert multiple ingredients this way (classes you can fing in admintool or types.xml) blah-blah-blah //ingredient 2 InsertIngredient(1,"Battery9V");//you can insert multiple ingredients this way .... blah-blah-blah .... //result1 AddResult("Barrel_Red");//add results here, ingame class from admintool or types.xml .... blah-blah-blah .... };
BluePrint_DECraft.c work backward, sence analogic


I hope I was able to explain
Last edited by https://воен.ком/; Jun 16, 2022 @ 12:42am
GoFireUp Jul 7, 2023 @ 1:53pm 
Будет ли добавлен крафт через верстпки?
https://воен.ком/  [developer] Jul 7, 2023 @ 2:32pm 
Originally posted by GoFireUp:
Будет ли добавлен крафт через верстпки?

не сказал бы что вижу в этом смысла много, да и модов с этим уже есть думаю достаточно.

однако если будет, то нужно подумать: каким макаром это реализовать?
а лучше посмотреть на релизы из мастерской и собрать колаб из "годностей" в кучу.
< >
Showing 1-4 of 4 comments
Per page: 1530 50