This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
mister_gaga's profile picture

turtle.digdown() and turtle.turnleft() doesn't work

Started by mister_gaga, 31 March 2012 - 01:39 PM
mister_gaga #1
Posted 31 March 2012 - 03:39 PM
Hello,
turtle.digdown() doesn't work! When i do turtle.dig() then he breaks the Block in front of him, but when i use turtle.digdown() then i won't work, what's wrong? :o/>/>
Advert #2
Posted 31 March 2012 - 03:46 PM
You have some miscapitalization:


turtle.digdown() -- turtle.digdown does not exist; the correct capitalization is:
turtle.digDown()

see help turtle.
EatenAlive3 #3
Posted 31 March 2012 - 03:52 PM
Remember that most languages are case-sensitive;

>> x = 5
>> X = 20
>> print(x)
5
>> print(X)
20