SA-MP Forums Archive
Top 15 Score List. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Top 15 Score List. (/showthread.php?tid=466750)



Top 15 Score List. - tuuler - 29.09.2013

Hello, i have a guestion. How can i make a top15 score list ? Even when players are offline, to see top15 score list ?

I hope you guys understand what i need...


Re: Top 15 Score List. - Konstantinos - 29.09.2013

Well, with SQL will be very easy! You'll only need to execute a query and get the data in order to print them.

pawn Код:
SELECT score, name FROM table ORDER BY score DESC LIMIT 15
With files, you'll need to overwrite to a file over and over again if someone gets more score than those players are in the top 15.


Re: Top 15 Score List. - tuuler - 29.09.2013

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Well, with SQL will be very easy! You'll only need to execute a query and get the data in order to print them.

pawn Код:
SELECT score, name FROM table ORDER BY score DESC LIMIT 15
With files, you'll need to overwrite to a file over and over again if someone gets more score than those players are in the top 15.
Okay, i really cant do anything with SQL, but i will give it a try