Skip to content

Commit dc44c20

Browse files
committed
chore: ✅ Added Progress
1 parent 70a4627 commit dc44c20

File tree

3 files changed

+64
-2
lines changed

3 files changed

+64
-2
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
/config
22
/.vscode
3-
/computer
4-
/turtleFunctions.txt
3+
/computer

Progress.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
## Working functions
2+
3+
```lua
4+
turtle.getFuelLevel()
5+
turtle.turnLeft()
6+
turtle.turnRight()
7+
```
8+
9+
## Implemented but not finished
10+
11+
### No check against fuel level or worldgen
12+
13+
```lua
14+
turtle.forward()
15+
turtle.back()
16+
turtle.up()
17+
turtle.down()
18+
```
19+
20+
## Implemented but not working
21+
22+
## Haven't started
23+
24+
```lua
25+
turtle.select(slotNum)
26+
turtle.getItemCount(slotNum)
27+
turtle.getItemSpace(slotNum)
28+
turtle.detect()
29+
turtle.detectUp()
30+
turtle.detectDown()
31+
turtle.compare()
32+
turtle.compareUp()
33+
turtle.compareDown()
34+
turtle.compareTo(slotNum)
35+
turtle.drop(count)
36+
turtle.dropUp(count)
37+
turtle.dropDown(count)
38+
turtle.suck(count)
39+
turtle.suckUp(count)
40+
turtle.suckDown(count)
41+
turtle.refuel(count)
42+
turtle.getFuelLimit()
43+
turtle.transferTo(slotNum, count)
44+
turtle.equipLeft()
45+
turtle.equipRight()
46+
turtle.dig()
47+
turtle.digUp()
48+
turtle.digDown()
49+
turtle.place(text)
50+
turtle.placeUp(text)
51+
turtle.placeDown(text)
52+
turtle.inspect()
53+
turtle.inspectUp()
54+
turtle.inspectDown()
55+
turtle.attack()
56+
turtle.attackUp()
57+
turtle.attackDown()
58+
turtle.craft(count)
59+
turtle.getSelectedSlot()
60+
turtle.getSlotCount()
61+
```

files.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
turtleEmulator.lua
2+
turtleMock.lua

0 commit comments

Comments
 (0)