Posted 31 March 2012 - 02:44 PM
Hi,
i have a script :
local auftrag
term.clear()
term.setCursorPos(1,1)
print("Bitte gebe deine Bestellung ein :")
auftrag = read()
if auftrag == "" or auftrag == " " then
print("Bitte geben sie was ein")
sleep(2)
_Bestellung()
else
datei = io.open("huhu.txt", "a")
datei:write("\n"..auftrag)
print("Bestellung wurde gespeichert")
datei:close()
sleep(2)
_Bestellung()
end
end
_Bestellung()Now I would like to make a 2nd script where the contents of huhu.txt is displayed
and that you can add delete things out there /, but how?
sry for the bad english , google translater
i have a script :
Spoiler
function _Bestellung()local auftrag
term.clear()
term.setCursorPos(1,1)
print("Bitte gebe deine Bestellung ein :")
auftrag = read()
if auftrag == "" or auftrag == " " then
print("Bitte geben sie was ein")
sleep(2)
_Bestellung()
else
datei = io.open("huhu.txt", "a")
datei:write("\n"..auftrag)
print("Bestellung wurde gespeichert")
datei:close()
sleep(2)
_Bestellung()
end
end
_Bestellung()
and that you can add delete things out there /, but how?
sry for the bad english , google translater