Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mcserver-releases
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Recolic
mcserver-releases
Commits
904652e2
There was an error fetching the commit references. Please try again later.
Verified
Commit
904652e2
authored
5 years ago
by
Recolic Keghart
Browse files
Options
Downloads
Patches
Plain Diff
version 4
parent
6925815e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
4/recolic-mfs-tfc.zs
+106
-0
106 additions, 0 deletions
4/recolic-mfs-tfc.zs
README.md
+10
-0
10 additions, 0 deletions
README.md
with
116 additions
and
0 deletions
4/recolic-mfs-tfc.zs
0 → 100644
+
106
−
0
View file @
904652e2
// Recolic wrote this script for TFCPunk to add MinecraftFlightSimulator into TFCPunk.
// It works for TFCPunk 20190728.
// Warning: this zscript is half-done. It just implements some MANDATORY elements of MFS.
// CopyRight: Recolic Keghart <root@recolic.net>
print("Recolic debug: inserting Minecraft Flight Simulator recipe for TFC.");
recipes.addShaped(<mfs:MC172>,
[[<ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>],
[null, <ore:plankTreatedWood>, null],
[<ImmersiveEngineering:woodenDecoration:2>, <ore:plankTreatedWood>, <ImmersiveEngineering:woodenDecoration:2>]]
);
recipes.addShaped(<mfs:PZLP11>,
[[<terrafirmacraft:item.Wrought Iron Sheet>,<terrafirmacraft:item.Wrought Iron Sheet>,<terrafirmacraft:item.Wrought Iron Sheet>],
[null,<minecraft:iron_bars>,null],
[<terrafirmacraft:item.Wrought Iron Sheet>,<minecraft:iron_bars>,<terrafirmacraft:item.Wrought Iron Sheet>]]
);
recipes.addShaped(<mfs:Vulcanair>,
[[<terrafirmacraft:item.Wrought Iron Sheet>,<terrafirmacraft:item.Wrought Iron Sheet>,<terrafirmacraft:item.Wrought Iron Sheet>],
[<minecraft:dye:15>,<terrafirmacraft:item.Wrought Iron Sheet>,<minecraft:dye:15>],
[<terrafirmacraft:item.Wrought Iron Sheet>,<terrafirmacraft:item.Wrought Iron Sheet>,<terrafirmacraft:item.Wrought Iron Sheet>]]
);
recipes.addShaped(<mfs:Seat>,
[[null, <terrafirmacraft:item.WoolYarn>, <ImmersiveEngineering:woodenDecoration:2>],
[null, <terrafirmacraft:item.WoolYarn>, <ImmersiveEngineering:woodenDecoration:2>],
[<ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>]]
);
recipes.addShaped(<mfs:Propeller:1140>,
[[null, <ImmersiveEngineering:woodenDecoration:2>, null],
[<ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>],
[null, <ImmersiveEngineering:woodenDecoration:2>, null]]
);
recipes.addShaped(<mfs:Propeller:9121>,
[[null, <terrafirmacraft:item.Wrought Iron Sheet>, null],
[<terrafirmacraft:item.Wrought Iron Sheet>, <terrafirmacraft:item.Wrought Iron Double Ingot>, <terrafirmacraft:item.Wrought Iron Sheet>],
[null, <terrafirmacraft:item.Wrought Iron Sheet>, null]]
);
recipes.addShaped(<mfs:Propeller:9142>,
[[null, <terrafirmacraft:item.Black Steel Sheet>, null],
[<terrafirmacraft:item.Black Steel Sheet>, <terrafirmacraft:item.Black Steel Double Ingot>, <terrafirmacraft:item.Black Steel Sheet>],
[null, <terrafirmacraft:item.Black Steel Sheet>, null]]
);
recipes.addShaped(<mfs:EngineSmall:2805>,
[[<minecraft:piston>, <minecraft:piston>, <minecraft:piston>],
[null, <terrafirmacraft:item.Wrought Iron Ingot>, null],
[null, null, null]]
);
recipes.addShapeless(<mfs:EngineSmall:3007>, [<mfs:EngineSmall:2805>]);
recipes.addShaped(<mfs:EngineLarge:2907>,
[[<minecraft:piston>, <minecraft:piston>, <minecraft:piston>],
[null, <terrafirmacraft:item.Steel Ingot>, <terrafirmacraft:item.Steel Ingot>],
[null, null, null]]
);
recipes.addShapeless(<mfs:EngineLarge:3210>, [<mfs:EngineLarge:2907>]);
recipes.addShaped(<mfs:Pontoon> * 2,
[[<terrafirmacraft:item.Wrought Iron Ingot>, <terrafirmacraft:item.Wrought Iron Ingot>, <terrafirmacraft:item.Wrought Iron Ingot>],
[null,null,null],
[<terrafirmacraft:item.Wrought Iron Ingot>, <terrafirmacraft:item.Wrought Iron Ingot>, <terrafirmacraft:item.Wrought Iron Ingot>]]
);
recipes.addShaped(<mfs:WheelSmall>,
[[<tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>],
[null, <terrafirmacraft:item.Wrought Iron Ingot>, null],
[<tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>]]
);
recipes.addShaped(<mfs:WheelLarge>,
[[<tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>],
[<terrafirmacraft:item.Steel Ingot>, <terrafirmacraft:item.Steel Ingot>, <terrafirmacraft:item.Steel Ingot>],
[<tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>, <tfcm:item.SinewFiber>]]
);
// fuel
recipes.addShaped(<mfs:FlightInstrument:11>,
[[<minecraft:dye:15>, <ImmersiveEngineering:woodenDecoration:2>, <minecraft:dye:15>],
[null, <minecraft:glass>, null],
[null, null, null]]
);
// height
recipes.addShaped(<mfs:FlightInstrument:1>,
[[<minecraft:dye>, <ImmersiveEngineering:woodenDecoration:2>, <minecraft:dye>],
[null, <minecraft:glass>, null],
[null, null, null]]
);
// airspeed
recipes.addShaped(<mfs:FlightInstrument:3>,
[[<terrafirmacraft:item.stick>, <ImmersiveEngineering:woodenDecoration:2>, <minecraft:dye>],
[null, <minecraft:glass>, null],
[null, null, null]]
);
// where's the engine speed gauge? it sucks.
This diff is collapsed.
Click to expand it.
README.md
+
10
−
0
View file @
904652e2
...
...
@@ -42,4 +42,14 @@ Update Procedure:
3.
You're all set.
### Version 4: better MFS
> Server Upgrade Time: Jul 28, 2019 16:29 UTC
Update Procedure:
1.
Download
[
recolic-mfs-tfc.zs
](
https://git.recolic.net/root/mcserver-releases/blob/master/4/recolic-mfs-tfc.zs
)
into
`.minecraft/scripts/recolic-mfs-tfc.zs`
.
2.
You're all set.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment