Hallo Liebe NN Community,
hay ich habe ein Problem ich habe neue Farmrouten erstellt Kohle
Holz
nun habe ich das Problem egal was ich verarbeite es kommt einmal Holzbretter und Reine Kohle raus
Code
class kohle {
MaterialsReq[] = {{ "kohle_unprocessed",1}};
MaterialsGive[] = {{ "kohle_processed",1}};
Text = "STR_Process_kohle";
//ScrollText = "Mix Cement";
NoLicenseCost = 20000;
};
class holz {
MaterialsReq[] = {{ "holz_unprocessed",1}};
MaterialsGive[] = {{ "holz_processed",1}};
Text = "STR_Process_holz";
//ScrollText = "Mix Cement";
NoLicenseCost = 20000;
};
Alles anzeigen
Config_vItems
Code
class kohle_unprocessed {
variable = "kohle_unprocessed";
displayName = "STR_Item_kohle_unprocessed";
weight = 2;
buyPrice = 0;
sellPrice = 0;
illegal = false;
edible = 0;
icon = "\icons\erdbeere.paa";
};
class kohle_processed {
variable = "kohle_processed";
displayName = "STR_Item_kohle_processed";
weight = 4;
buyPrice = 0;
sellPrice = 1500;
illegal = false;
edible = 0;
icon = "\icons\ico_apple.paa";
};
class holz_unprocessed {
variable = "holz_unprocessed";
displayName = "STR_Item_holz_unprocessed";
weight = 4;
buyPrice = 0;
sellPrice = 0;
illegal = false;
edible = 0;
icon = "\icons\erdbeere.paa";
};
class holz_processed {
variable = "kohle_processed";
displayName = "STR_Item_holz_processed";
weight = 3;
buyPrice = 0;
sellPrice = 1550;
illegal = false;
edible = 0;
icon = "\icons\ico_apple.paa";
};
Alles anzeigen