Search found 2 matches

by MV
Tue Dec 21, 2010 9:20 pm
Forum: Support and Development
Topic: Lua/Love IO Problem
Replies: 5
Views: 3481

Re: Lua/Love IO Problem

Thanks, that clears things up.

The Wiki says that I'm not allowed to set the location of the save directory. This seems somewhat inconvenient but I'll figure a way around it.
by MV
Tue Dec 21, 2010 8:30 pm
Forum: Support and Development
Topic: Lua/Love IO Problem
Replies: 5
Views: 3481

Lua/Love IO Problem

Very simple problem, local f = assert(io.open("Test.txt", "r")) print(f:read("*all")) f:close() f = assert(io.open("Test.txt", "w")) f:write("New Stuff") f:close() My project includes some rudimentary unlockables and highscores that I want ...