diff --git a/back b/back new file mode 100644 index 0000000..1517dba --- /dev/null +++ b/back @@ -0,0 +1,11 @@ +--[[ +Ok this script isn't very sophisticated, but it's very useful when you need +to quickly place your turtle to the right position! + +Copyright 2016, George Kaklamanos +You may use this script under the terms of the +GNU General Public License version 3 or later. +For more info please read the LICENSE, which is included in this repository. +--]] + +turtle.back() diff --git a/fd b/fd new file mode 100644 index 0000000..bdc85c8 --- /dev/null +++ b/fd @@ -0,0 +1,11 @@ +--[[ +Ok this script isn't very sophisticated, but it's very useful when you need +to quickly place your turtle to the right position! + +Copyright 2016, George Kaklamanos +You may use this script under the terms of the +GNU General Public License version 3 or later. +For more info please read the LICENSE, which is included in this repository. +--]] + +turtle.forward() diff --git a/left b/left new file mode 100644 index 0000000..4f1b689 --- /dev/null +++ b/left @@ -0,0 +1,11 @@ +--[[ +Ok this script isn't very sophisticated, but it's very useful when you need +to quickly place your turtle to the right position! + +Copyright 2016, George Kaklamanos +You may use this script under the terms of the +GNU General Public License version 3 or later. +For more info please read the LICENSE, which is included in this repository. +--]] + +turtle.turnLeft() diff --git a/right b/right new file mode 100644 index 0000000..63d11a0 --- /dev/null +++ b/right @@ -0,0 +1,11 @@ +--[[ +Ok this script isn't very sophisticated, but it's very useful when you need +to quickly place your turtle to the right position! + +Copyright 2016, George Kaklamanos +You may use this script under the terms of the +GNU General Public License version 3 or later. +For more info please read the LICENSE, which is included in this repository. +--]] + +turtle.turnRight()