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.
Search found 2 matches
- Tue Dec 21, 2010 9:20 pm
- Forum: Support and Development
- Topic: Lua/Love IO Problem
- Replies: 5
- Views: 3590
- Tue Dec 21, 2010 8:30 pm
- Forum: Support and Development
- Topic: Lua/Love IO Problem
- Replies: 5
- Views: 3590
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 ...