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