Advertisement
Wenden

Ranking PvP - Wenden [PEDIDO]

Oct 27th, 2012
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. /*
  2. ___ ___ ___ ___ ___
  3. /\ \ /\__\ /\ \ _____ /\__\ /\ \
  4. _\:\ \ /:/ _/_ \:\ \ /::\ \ /:/ _/_ \:\ \
  5. /\ \:\ \ /:/ /\__\ \:\ \ /:/\:\ \ /:/ /\__\ \:\ \
  6. _\:\ \:\ \ /:/ /:/ _/_ _____\:\ \ /:/ \:\__\ /:/ /:/ _/_ _____\:\ \
  7. /\ \:\ \:\__\ /:/_/:/ /\__\ /::::::::\__\ /:/__/ \:|__| /:/_/:/ /\__\ /::::::::\__\
  8. \:\ \:\/:/ / \:\/:/ /:/ / \:\~~\~~\/__/ \:\ \ /:/ / \:\/:/ /:/ / \:\~~\~~\/__/
  9. \:\ \::/ / \::/_/:/ / \:\ \ \:\ /:/ / \::/_/:/ / \:\ \
  10. \:\/:/ / \:\/:/ / \:\ \ \:\/:/ / \:\/:/ / \:\ \
  11. \::/ / \::/ / \:\__\ \::/ / \::/ / \:\__\
  12. \/__/ \/__/ \/__/ \/__/ \/__/ \/__/
  13.  
  14. */
  15. // Porfavor não retire os créditos.
  16.  
  17. prontera,147,169,5 script Ranking PvP 47,{
  18.  
  19. Mes "["+strnpcinfo(1)+"]";
  20. Mes "Gostaria de ver o Ranking?";
  21. next;
  22. if(select("Sim:Não") == 2){
  23. Mes "["+strnpcinfo(1)+"]";
  24. Mes "Volte quando precisar ver o Ranking.";
  25. Close;
  26. }
  27.  
  28. Close2;
  29. set @nome$,"";
  30. set @kills,0;
  31. set @mortes,0;
  32.  
  33. query_sql "SELECT name,kills,dies FROM pvpm_data ORDER BY ratio DESC LIMIT 10",@nome$,@kills,@mortes;
  34.  
  35. if(@nome$ == ""){
  36. dispbottom "Não há nenhum ranking para exibir.";
  37. end;
  38. }
  39.  
  40. dispbottom "/ ============ Ranking PvP ============ /";
  41. dispbottom "Posição - Nome - Matou - Morreu";
  42. dispbottom " ";
  43. for (set @i,0; @i < 10; set @i,@i+1)
  44. dispbottom (@i+1)+"° ~ "+@nome$[@i]+" ~ "+@kills[@i]+" ~ "+@mortes[@i];
  45. end;
  46.  
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement