HDScripts

Ranking WoT 1.0

Oct 14th, 2014
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // Feito por HD Scripts para Cumbe - Cronus-emulator.com //
  2. /*
  3. CREATE TABLE `gdt` (
  4. `guild_id` int(11) unsigned NOT NULL auto_increment,
  5. `tesouros` int(11) unsigned NOT NULL default '0',
  6. `pontos` int(11) unsigned NOT NULL default '0',
  7. PRIMARY KEY (`guild_id`)
  8. )ENGINE=MyISAM;
  9. */
  10.  
  11. prontera,150,150,5 script WoT Ranking 91,{
  12.  
  13. mes "[Ranking WoT]";
  14. mes "Olá "+strcharinfo(0)+", deseja ver o ranking da WOT?";
  15. if(select("Sim:Não") == 2) close;
  16. next;
  17. query_sql "SELECT `guild_id`, `tesouros` FROM `gdt` ORDER BY `tesouros` DESC LIMIT 10",@gid,@tesouros;
  18. mes "Posição - Nome - Tesouros";
  19. mes " ";
  20. for (set .@i,0; .@i <= 9; set .@i, .@i + 1)
  21. mes (.@i+1)+"º - "+getguildname(@gid[.@i])+" - "+@tesouros[.@i]+"";
  22. close;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment