I got my own private test server I like to practice on and Im trying to add options for additional crafting on a few items.
What Ive tried first is crafting 1/4 wood floor from plywood pack using 1 plywoodpack and 1 lumberpack as ingredients. I got the right click to work with maca's extra_rc script and I can "craft" a wood floor using this script:
if (("PartPlywoodPack" in magazines player) && ("PartPlankPack" in magazines player)) then {
player playActionNow "Medic";
sleep 3;
if (("PartPlywoodPack" in magazines player) && ("PartPlankPack" in magazines player)) then {
player removeMagazine "PartPlywoodPack";
player removeMagazine "PartPlankPack";
sleep 2;
player addMagazine "ItemWoodFloorQuarter";
} else {
};
titleText ["You have crafted a 1/4 wood floor!","PLAIN DOWN"]; titleFadeOut 3;
} else {
titleText ["You don't have the required items!","PLAIN DOWN"]; titleFadeOut 3;
};
but what I would really like was to use the epoch crafting script but I cant get that to work...
Question
orodreth
Hey!
I got my own private test server I like to practice on and Im trying to add options for additional crafting on a few items.
What Ive tried first is crafting 1/4 wood floor from plywood pack using 1 plywoodpack and 1 lumberpack as ingredients. I got the right click to work with maca's extra_rc script and I can "craft" a wood floor using this script:
but what I would really like was to use the epoch crafting script but I cant get that to work...
It looks something like this but doesnt work:
Anyone got any pointers on how I could get that to work? :)
Thanks!
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now