https://github.com/techplexengineer/mcturtles
Scriptable Mining Turtles for Bukkit/Spigot Minecraft Server
https://github.com/techplexengineer/mcturtles
Last synced: 9 months ago
JSON representation
Scriptable Mining Turtles for Bukkit/Spigot Minecraft Server
- Host: GitHub
- URL: https://github.com/techplexengineer/mcturtles
- Owner: TechplexEngineer
- Created: 2015-12-27T23:33:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-15T13:45:17.000Z (over 9 years ago)
- Last Synced: 2025-01-07T23:36:17.525Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# MCTurtles
Scriptable Mining Turtles for Bukkit/Spigot Minecraft Server
The goal of this project is to build a tool that educators can use to teach introductory programming using Turtles (similar to logo) in Minecraft. This plugin requires no client mods as it uses only the Bukkit/Spigot api.
Loosely based on code from [Nubebuster](https://github.com/Nubebuster/Mining-Turtles)
This repo replaces [Mining-Turtles](https://github.com/TechplexEngineer/Mining-Turtles)
## Commands
MCTurtles understand many commands but require a player to direct them.
Players can get an instruction manual in-game by typing "/t book" to get the book (without quotes). In the book each command has its own page.
### Note
A parameter in angle brackets \ is required.
A parameter in square brackets [num] is optional.
More info:
techplex.io/mcturtles
## Move \ [num]
Move the turtle in \ direction [num] blocks.
Where \ is one of:
NORTH SOUTH EAST
WEST LEFT RIGHT UP
DOWN FORWARD BACK
And [num] is optional, when not provided 1 is used.
## Rotate \
Rotate the turtle 90° in \ direction.
Where \ is one of:
NORTH SOUTH EAST
WEST LEFT RIGHT UP
DOWN FORWARD BACK
## Mine \
Mine 1 block in \ direction.
Where \ is one of:
NORTH SOUTH EAST
WEST LEFT RIGHT UP
DOWN FORWARD BACK
## Place \ \
Place block of type \ in \ direction.
Where \ is a valid material. Page x lists some common materials.
And \ is one of:
NORTH SOUTH EAST
WEST LEFT RIGHT UP
DOWN FORWARD BACK
@note obey creative...
## PenDown \
Place a block each time the turtle moves leaving a trail of \ blocks behind.
Where \ is a valid material. Page x lists some common materials.
## PenUp
Stop leaving a trail of blocks.
## Bookmark \
Save the current location with the name \.
## GoBookmark \
Move the turtle to the saved bookmark named \.
## Common Materials
Dirt
Grass
Cobblestone
Wood
Sand