Posts: 10,066
Threads: 38
Joined: Sep 2007
Reputation:
0
Nearly impossible (I won't say totally impossible) due to the way it works. Converting to SQLite might be an option, but ini files are definitely out of the question. I suppose it could be replicated somewhat using flat files, but you would need a large tree structure with a directory for each separate house. Each directory then has multiple files in it that store the coordinates of furniture and whatnot. Theoretically this would allow for infinite houses with infinite furniture, but it would be completely ineffecient, not to mention very disk intensive and therefore slow.
tl;dr: counter productive.
Posts: 215
Threads: 34
Joined: Jun 2013
Reputation:
0
You'd spend more time converting it then actually doing you're script.
Posts: 87
Threads: 27
Joined: Nov 2015
Reputation:
0
Mysql is better than INI so i will say never change your script to ini
You can use some better good functions that never can be use with ini
MySql its perfecet
Posts: 171
Threads: 13
Joined: Dec 2015
Yes,mysql is perfect,but how about someone noob who dont know how to use mysql like me?
Idk how to setup mysql
Posts: 743
Threads: 49
Joined: May 2014
Reputation:
0
If you really want to use INI, you can load everything into the server using mysql, then create a new save function to save it to ini. Once you've re-written everything, replace your loading function with a new ini one. However, MySql is more flexible in what you can do with it