28.10.2018, 18:48
you should probably try SQL. here's an example of how simple it'd be if you wanted to do it that way.
this is just a brief example.
Код:
mysql_tquery(sqlhandle, "SELECT * FROM `reports` LIMIT 10", "OnPlayerViewReports", "d", playerid);
forward OnPlayerViewReports(playerid);
public OnPlayerViewReports(playerid)
{
// yada yada
}
