• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] /top online
#2
You don't need YSI if you're using sqlite

Code:
SELECT
   online_time
FROM
   Players
WHERE
    is_online = 1
ORDER BY
    online_time DESC
LIMIT 10;

EDIT: If you want to have command like /top [from] [to], edit the LIMIT to [to] and add OFFSET [from] after LIMIT [to] in the query, example:

Code:
SELECT
   online_time
FROM
   Players
WHERE
    is_online = 1
ORDER BY
    online_time DESC
LIMIT 5 OFFSET 10;
That will show 5 players from 11th to 15th place
Using Pawn.CMD?

If you're doing so, this is the very first sign that you absolutely shouldn't utilize your all powerful P-Code knowledge in any of the scripting discussion topics.
  Reply


Messages In This Thread
/top online - by zetrazak - 2021-01-09, 02:50 PM
RE: /top online - by Pinch - 2021-01-09, 07:36 PM
RE: /top online - by zetrazak - 2021-01-10, 12:11 AM
RE: /top online - by Pinch - 2021-01-10, 01:28 AM
RE: /top online - by zetrazak - 2021-01-10, 10:22 AM

Forum Jump: