buffer_save_ext

语法:

buffer_save_ext(buffer, filename, offset, size);


参数 描述
buffer The index of the buffer to save.
filename The name of the file to save as.
偏移 The offset within the buffer to save from (in bytes).
大小 The size of the buffer area to save (in bytes).


返回: N/A(无返回值)


描述

With this function you can save part of the contents of a buffer to a file, ready to be read back into memory using the buffer_load function. The "offset" defines the start position within the buffer for saving (in bytes), and the "size" is the size of the buffer area to be saved from that offset onwards (also in bytes).


例如:

buffer_save_ext(buff, "Player_Save.sav", 0, 16384);

Saves part of the current contents of the buffer with the id stored in the variable "buff" to a file.