Hi All,
I am one of those people who like to use Linux for game development. I am using AppGameKit Classic 2023.01.26 on Ubuntu 20.04 LTS to make an RPG game. The issue is that I am working on a game save feature at the moment but cannot save any files. I looked for a solution in the guide and on Google in general and I saw mentioned Windows write folder (C:\Users\username\AppData\AGKApps\appName). But there is no mention of the write folder on Linux anywhere. I looked in the app folder inside steamapps, also searched the hidden directories in my home folder but can't find it. I also tried to search this forum but cannot find the answers.
I think since AppGameKit is a multiplatform tool, this information should be available SOMEWHERE out there. I think the file is getting saved probably but I don't know the write folder so can't see it. Please help with the AppGameKit File Write Folder so that I can proceed with my project.
My thanks in advance for any assistance you may provide!
Here's my code sample if anybody wants to see..
sfilename$ = "app.sav"
if GetFileExists(sfilename$) = true then DeleteFile(sfilename$)
sfile = OpenToWrite(sfilename$)
WriteLine(sfile, str(musictogglev)) // Music toggle
WriteLine(sfile, str(ascrolltogglev)) // Auto-scroll toggle
CloseFile(sfile)