yuhsing

Untitled

Nov 15th, 2012
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. algaia,205,161,4 script Test Rank 100,{
  2.  
  3. mes "[Blacksmith Ranking]";
  4. mes "=======================";
  5. for( set .@i,0; .@i < getarraysize( .Name$ ); set .@i,.@i + 1 ){
  6. mes "Top "+( .@i + 1 )+" Smith";
  7. mes ""+.Name[.@i]+" - Fame : "+.Fame;
  8. mes "=======================";
  9. }
  10. close;
  11.  
  12. OnPCLoginEvent:
  13. for( set .@i,0; .@i < getarraysize( .Name$ ); set .@i,.@i + 1 )
  14. if( strcharinfo(0) == .Name$[.@i] ){
  15. atcommand "@aura 701";
  16. dispbottom "You're on "+( .@i + 1 )+"th Place";
  17.  
  18. }
  19. end;
  20.  
  21. OnInit:
  22. query_sql( "SELECT `fame`,`name` FROM `char` WHERE `fame` > 0 AND `class` IN ( '10','4011','4033','4058','4064','4100' ) ORDER BY `fame` DESC LIMIT 3", .Fame, .Name$ );
  23. end;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment