#1

pawn Код:
COMMAND:registeredplayers(playerid, params[])
{
    // Setup local variables
    new NumPlayers, Msg[128];
   
    // Execute the query to get all ID's from all accounts in table "Accounts"
    mysql_function_query("SELECT ID FROM Accounts");
    // Store the result
    mysql_store_result();
    // Count the amount of rows returned in the result
    NumPlayers = mysql_num_rows();
    // Free the result
    mysql_free_result();

    format(Msg, sizeof(Msg), "Registered players: %i", NumPlayers);
    SendClientMessage(playerid, -1, Msg);

    // Let the server know that this was a valid command
    return 1;
}
Errors
Код:
(1166) : error 035: argument type mismatch (argument 1)
Line 1166
pawn Код:
mysql_function_query("SELECT ID FROM Accounts");
Reply


Messages In This Thread
Help - by Mriss - 07.03.2014, 06:20
Re: Help - by RajatPawar - 07.03.2014, 06:26
Re: Help - by Mriss - 07.03.2014, 06:28
Re: Help - by RajatPawar - 07.03.2014, 06:30
Re: Help - by Mriss - 07.03.2014, 06:33

Forum Jump:


Users browsing this thread: 2 Guest(s)