Posted 14 December 2013 - 10:48 AM
I am trying to log my airship parking locations.
I have a gps system set up.When I try to run it,I get the error in the title.There is also a disk drive with a disk in it beside the computer.
I have a gps system set up.When I try to run it,I get the error in the title.There is also a disk drive with a disk in it beside the computer.
local flightlog = fs.open("disk/flightlog")
while true do
local pos = gps.locate()
print(pos)
file.write(pos)
sleep(10)
end
Edited on 14 December 2013 - 09:48 AM