23.02.2017, 04:45
If your aim really is to load object then you can use this : https://sampforum.blast.hk/showthread.php?tid=489765
I also made a system to do something same, here is the link : https://github.com/xxxZeus/Dynamic-m...-SA-MP-servers
Use sqlite/mysql that will be the simplest and fastest approach. You will need to create a table say objects and create columns like x,y,z,rx..etc. And you can then simply load all objects with query "SELECT * FROM objects".
If you don't want to use a plugin then use sqlite if you can then use mysql since its faster.
INI approach for this thing would be tremendously slow as compared to mysql, as there will be thousands of objects and for each object you need tag and four different lines for storing its info. It will take time to read those file using pawn natives(used in ini readers) and it will make file size ridiculously large too.
I also made a system to do something same, here is the link : https://github.com/xxxZeus/Dynamic-m...-SA-MP-servers
Use sqlite/mysql that will be the simplest and fastest approach. You will need to create a table say objects and create columns like x,y,z,rx..etc. And you can then simply load all objects with query "SELECT * FROM objects".
If you don't want to use a plugin then use sqlite if you can then use mysql since its faster.
INI approach for this thing would be tremendously slow as compared to mysql, as there will be thousands of objects and for each object you need tag and four different lines for storing its info. It will take time to read those file using pawn natives(used in ini readers) and it will make file size ridiculously large too.