Must pack all game data in one file

Community Forums/General Help/Must pack all game data in one file

Ravl(Posted 2014) [#1]
Hello,

One of my publishers tested my game in Mac OS and asked me:
"About Mac version: All files must be inside of the package, no files should be outside."

Right now, I have the following setup:
[sounds]
[levels]
rvllogo.jpg
logo.jpg
graphics.zip
CrystalsOfTime.app


How could I handle this request?

Thanks


GfK(Posted 2014) [#2]
I got it working by following this: http://www.blitzbasic.com/Community/posts.php?topic=73690


Ravl(Posted 2014) [#3]
This could work.

The problem is that I packed all my data into a zip file: graphics.zip:

LoadImage("zip::graphics.zip//menu/mainmenu.jpg",0)


and this code:
LoadImage(appData + "zip::graphics.zip//menu/mainmenu.jpg",0) 


it's not working. Only with the files outside zip.

I could simply unzip them, but just wanted to ask if it the normal behavior.