Ok, so I've finally upgraded to v2 and it's great, but I can't find where it stores files
I've loaded one of my old projects and it uses this funcition to save a file (it's actually a level editor)
function Save()
count=0
for k = 0 to 999
if GetSpriteExists(blx[k].id)
inc count,1
endif
next k
ff=OpenToWrite("map.irl",0)
WriteInteger(ff,count)
for k = 0 to 999
if GetSpriteExists(blx[k].id)
WriteInteger(ff,blx[k].typ)
WriteInteger(ff,blx[k].x1)
WriteInteger(ff,blx[k].x2-blx[k].x1) //Width of block
WriteInteger(ff,blx[k].y1)
endif
next k
CloseFile(ff)
endfunction
Normally it saves to \Documents\AGK\IRlvl\media but it doesn't do that anymore... Can someone help me please