14.06.2010, 15:25
Hello,
I started using MySQL plugin (http://forum.sa-mp.com/index.php?topic=79352.0) but I don't know how to print to console all player names?
Here is the code to count all players:
I started using MySQL plugin (http://forum.sa-mp.com/index.php?topic=79352.0) but I don't know how to print to console all player names?
Here is the code to count all players:
pawn Код:
public OnGameModeInit()
{
mysql_query("SELECT * FROM `user`",99);
//...
}
public OnQueryFinish(query[], resultid, extraid, connectionHandle)
{
new string[128];
switch(resultid)
{
case 99: {
mysql_store_result();
printf("Total Members: %i",mysql_num_rows()); // I need to change this line.. but what function to use?
}
}
return 1;
}