Advertisement
AkaZombie

WoodHelp

Dec 31st, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.05 KB | None | 0 0
  1. print("Welcome to the Wooding Help Interface!")
  2. print("Do you have a question about the following (programs)?")
  3. print("WoodChop  WoodBuild  WoodDebugger  WoodHelp  WoodPosition  WoodBase")
  4. a = read()
  5. if a == "WoodHelp" then
  6.  print("How ironic...")
  7.  print("Navigate trough the Help Interface")
  8.  print("to find help and solve problems.")
  9. end
  10. if a == "WoodDebugger" then
  11.  print("The debug function just needs some fuel in the first slot.")
  12.  print("Turtle has to stay in the Base.")
  13.  print("Turtle finishes a job if it got shutdown before completion")
  14. end
  15. if a == "WoodBase" then
  16.  print("The Base is the place over the furnace.")
  17.  print("Every program starts in the Base.")
  18.  print("Only the direction of the Turtle is different:")
  19.  print("WoodChop and WoodDebugger: coal chest")
  20.  print("WoodBuild: where the tree will be")
  21. end
  22. if a == "WoodChop" then
  23.  print("If the farm is build with WoodBuild, you can start farming with this program.")
  24.  print("The Turtle has to stay in the Base, facing the coal chest.")
  25.  print("Be sure the Turtle receive redstonepower on the back.")
  26.  print("Be sure in every chest are the needed materials!")
  27.  read()
  28.  print("Charcoal, Saplings, Bonemeal.")
  29.  print("System can be shutdown by turning the redstone signal off.")
  30. end
  31. if a == "WoodBuild" then
  32.  print("This program builds you a nice Fir Wood Farm!")
  33.  print("Be sure the turtle stay in the Base and faces in the direction, where the tree will be.")
  34.  print("There are some different buildings you can choose from depending from the materials you insert.")
  35.  print("Select one for the filling order and amount:")
  36.  print("standard, cheap")
  37.  b = read()
  38.  if b == "standard" then
  39.   print("Fill the slots of the turtle with the following materials")
  40.   print("beginning with the top left.")
  41.   print("pipe means stone- or cobblestonepipe.")
  42.   read()
  43.   print(" ")
  44.   print("5 Charcoal, 6 chests, 1 ironfurnace, 4 dirt,")
  45.   print("5 pipe, 2 ironpipe, 1 goldpipe, 1 obsidianpipe,")
  46.   print("1 woodenpipe, 1 redstone engine, 2 lever, 1 bonemeal,")
  47.   print("64 blocks, 64 blocks, 10 blocks, 1 sapling")
  48.   print(" ")
  49.  end
  50.  if b == "WoodCheapBuild" then
  51.   print("Fill the slots of the turtle with the following materials")
  52.   print("beginning with the top left.")
  53.   print("pipe means stone- or cobblestonepipe.")
  54.   read()
  55.   print(" ")
  56.   print("5 Charcoal, 6 chests, 1 furnace, 4 dirt,")
  57.   print("5 pipe, 2 ironpipe, 1 pipe, 1 obsidianpipe,")
  58.   print("1 woodenpipe, 1 redstone engine, 2 lever, 1 bonemeal,")
  59.   print("64 blocks, 64 blocks, 10 blocks, 1 sapling")
  60.   print(" ")
  61.  end
  62. end
  63. if a == "WoodDebuggerPosition" then
  64.  print("Use this program if the turtle shutdown while chopping the tree. It will remove all left wood blocks.")
  65.  print("The Turtle has to stay in the base, facing the coal chest.")
  66. end
  67. if a == "WoodPosition" then
  68.  print("Before set up the farm with WoodBuild you have to position your turtle right.")
  69.  print("Place it on the bottom corner of your 10x16x8 free area, facing in the direction, where the tree will be.")
  70. end
  71. print(" ")
  72. print("Left the Help Interface for Wooding")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement