EpochModTeam / Epoch

Epoch Survival Game Mode for ARMA 3
http://epochmod.com/
Other
92 stars 82 forks source link

crafting recipe #647

Closed baaljayjay closed 7 years ago

baaljayjay commented 7 years ago

for jerrycan : nearby[] = { { "fire", { "ALL" }, 3, 1, "Fire", "fire" } }; recipe[] = { { "Metalscraps" , 3 } } ;

m14 green:

recipe[] = { { "M14" , 1 }, { "Paintcan_green" , 1 } }; i don´t know if it is correct and where mans paste,but maybe you could paste it.

baaljayjay commented 7 years ago

Kruhm nearby[] = { { "fire", { "ALL"}, 3, 1, "Fire", "fire" }, { "workbench", { "ALL" }, 3, 1, "Workbench", "workbench" } }; recipe[] = { { "Metalscraps" , 4 }, { "Woodenclub" ,1 }, { "Rock" ,1 }, { "Dirtywater" ,1 }, { "Scrappelt" ,1 } };

baaljayjay commented 7 years ago
Class Kruhm : Item
 {
     usedIn[] = {};
     nearby[] = {{"Fire","","fire",{1,{"ALL"}},3,1,1,0},{"Workbench","","workbench",{1,{"WorkBench_EPOCH"}},3,1,0,1}};
     recipe[] = {{"ItemScraps",8}{"ItemRock",2},{"water_epoch",2},{"Woodclub",1},{"Pelt_Epoch",2};
     previewPosition[] = {0.799442,1,0.426761};
     previewScale = 0.6;
     previewVector = 4,9;
};

 Class M14 Green : Item
 {
     usedIn[] = {};
     nearby[] = {};
     recipe[] = {{"m14_green_epoch",1},{"Paintcan_green",1}};
     previewPosition[] = {0.799442,1,0.426761};
     previewScale = 0.6;
     previewVector = 4,9;
};

 class jerrycan_epoch : Part
{
    usedIn[] = {"CSGAS"};
nearby[] = {{"Fire","","fire",{1,{"ALL"}},3,1,1,0},{"Workbench","","workbench",{1,{"WorkBench_EPOCH"}},3,1,0,1}};
    recipe[] = {{"Itemscraps",4},{"ItemTin",2}};
    previewPosition[] = {0.802443,1,0.254301};
    previewScale = 0.6;
previewVector = 4.9;
};

I hope you see this. I don´t know what I must insert with pull request