K kacogg5 New Member Jul 29, 2019 42 0 0 Jul 3, 2014 #1 The turtle api is not working for me. For example, i put Turtle.detectup() And my turtle returns 'Attempt to call nil' But the weird thing is that all the movement commands work. Is there something i did wrong? Sent from my iPod touch using Tapatalk
The turtle api is not working for me. For example, i put Turtle.detectup() And my turtle returns 'Attempt to call nil' But the weird thing is that all the movement commands work. Is there something i did wrong? Sent from my iPod touch using Tapatalk
N Narc New Member Jul 29, 2019 259 0 0 Jul 3, 2014 #2 Lua is case-sensitive. Unless what you really typed was Code: turtle.detectUp() , it thought you were talking about another function, which doesn't exist. Reactions: buggirlexpres
Lua is case-sensitive. Unless what you really typed was Code: turtle.detectUp() , it thought you were talking about another function, which doesn't exist.