blob: a4a6c946477248da659f5a6041e2d6d657c3d7c2 (
plain) (
tree)
|
|
// Author:
// Saulc
003-1,89,109,0 script Michel NPC_BACCHUS,{
mesn;
mesq l("All hail the ones who proven their worth to the High Council!");
mes "";
.@nb = query_sql("select name, fame from `char` ORDER BY fame DESC LIMIT 5", .@name$, .@fame);
mes l("##BHall Of Fame: TOP5##b");
mes l("1."+.@name$[0]+"("+.@fame[0]+")");
mes l("2."+.@name$[1]+"("+.@fame[1]+")");
mes l("3."+.@name$[2]+"("+.@fame[2]+")");
mes l("4."+.@name$[3]+"("+.@fame[3]+")");
mes l("5."+.@name$[4]+"("+.@fame[4]+")");
close;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|