Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local version = 1.0
- --[[
- A Minecraft ComputerCraft MOD TURTLE script
- HOUSE - Demo script to show how to make a batchfile that use the R script (main turtle script) to build a house
- by sEi'2022 - (C)opyleft (Do what you want with the script)
- Get this script here: https://pastebin.com/r2eMA7WB
- or ingame: pastebin get r2eMA7WB house
- ===============================================
- IMPORTANT: In order to run this program you need to have the main program installed
- and with the name "r"
- Get the R script here: https://pastebin.com/aDY5Ez8M
- or ingame: pastebin get aDY5Ez8M r
- ===============================================
- Fill the slots with the requested material in the list below.
- and then type "house" in the consol to run this script
- SLOTS:
- 1 = 64 Dirt
- 2 = 64 Floor (block)
- 3 = 64 Wall/Roof (block)
- 4 = 64 Wall/Roof (block)
- 5 = 1 door
- 6 = 2 glass (block)
- ]]--
- --== INITIALIZE ==
- --== FUNCTIONS ==
- local function BuildString()
- local sString = "r Bw"
- --[[
- hubba bubba
- ]]--
- sString = sString.."1yfyfyfyfyfyfyfyrfr"
- sString = sString.."1yf2yfyfyfyfyfy1fyll"
- sString = sString.."uf3yfyfyfyfyfyrr"
- sString = sString.."u3yfy6fyfy3fyfyrr"
- sString = sString.."u3yfyfyfyfyfyfdddrfr"
- sString = sString.."1y2fyfyfyfyfyfy1fyrruf3yfffffyrruyfffffy"
- sString = sString.."rru3yfffffyrru"
- sString = sString.."3yfyfyfyfyfyflfldddd"
- sString = sString.."1yf2yfyfyfyfyfy1fyrruf3yffffffrrd5P"
- sString = sString.."uuffffffrr3y"
- sString = sString.."u3yfffffyrruyfyfyfyfyfyfrfrdddd"
- sString = sString.."1y2fyfyfyfyfyfyf1yrruf3yfffffyrruyfffffyrruyfffffyrruyfyfyfyfyfy"
- sString = sString.."flfldddd1yf2yfyfyfyfyfyf1yrruf3yfyfyfyfyfyurryfyfyfyfyfyurryfyfyfyfyfyfrDffffr"
- return sString
- end
- --== MAIN PROGRAM ==
- local result = BuildString()
- print(result)
- shell.run(result)
Add Comment
Please, Sign In to add comment