How can I save/read binary file?
at the moment I save map into multiple CNC ARRAY files
My data is in byte format: 0-255
I want to save my mapdata in 8bits, not 32bits as CNC ARRAY
I was trying to send my mapdata to a Rich Edit Object:
IndexToChar( "ASCii", ValueAtXY( "World", XX( "OPaint" ), YY( "OPaint" ) ) )
and save data from there, but some of the low ASCii number don't show in the Rich Edit Object.
I can store map in a Action String but how can I save data to a file from the string?
I don't know if its possible to convert a float and save it in the number CNC ARRAY?
I want to save my map file to 1 file, I don't know if CNC ARRAY can save both INT and STRINGS?
Is there an other way for me to save 0-255 binary char data to a file?