30.12.2014, 19:44
All the systems i have seen used by Y_INI are saved by number of files, for exmaple:
https://sampforum.blast.hk/showthread.php?tid=349466
biz system saved on folder called Businesses - 1,2,3,4,5,6 ....
How to switch it to one file "biz.cfg" for exmaple, all the 100 business will be saved there in one file on scriptfiles without any folder?
+REP
https://sampforum.blast.hk/showthread.php?tid=349466
Код:
forward SaveBusiness(id); public SaveBusiness(id) { new file4[40]; format(file4, sizeof(file4), BPATH, id); // #define BPATH "/Business/%i.ini" new INI:File = INI_Open(file4); INI_SetTag(File,"data");
How to switch it to one file "biz.cfg" for exmaple, all the 100 business will be saved there in one file on scriptfiles without any folder?
+REP