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

bios338: ["houseone"] : "3" attempts to call nill

Started by rauf543, 10 November 2012 - 02:46 AM
rauf543 #1
Posted 10 November 2012 - 03:46 AM
from one line 1 to line 4

os.pullEvent =os.pullEventRaw
term.clear()
term.setcursorps(1,1)
print("accepted")

i only posted till four cause it said "3"
Tiin57 #2
Posted 10 November 2012 - 03:52 AM
from one line 1 to line 4

os.pullEvent =os.pullEventRaw
term.clear()
term.setcursorps(1,1)
print("accepted")

i only posted till four cause it said "3"
Try

os.pullEvent = os.pullEventRaw
term.clear()
term.setCursorPos(1,1)
print("Accepted.")
sjele #3
Posted 10 November 2012 - 04:05 AM
And your problem was: this line: term.setcursorps(1,1) it is supposed to be


term.setCursorPos(1,1)