Advertisement
Mxx123456

Untitled

Feb 27th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Creation = fs.open("disk/turt_answer", "w")
  2. Creation.writeLine(0)
  3. Creation.close()
  4. TurtState = fs.open("disk/turt_state", "w")
  5. TurtState.writeLine(0)
  6. TurtState.close()
  7. TurtAsk = fs.open("disk/turt_ask", "w")
  8. TurtAsk.writeLine(0)
  9. TurtAsk.close()
  10. Creation = fs.open("disk/reactor_data", "w")
  11. Creation.writeLine(6)
  12. for i=1,6 do
  13.   Creation.writeLine(9999)
  14.   Creation.writeLine(0)
  15.   Creation.writeLine(1)
  16.   Creation.writeLine(0)
  17.   Creation.writeLine(1)
  18. end
  19. Creation.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement