The first thing I'm going to say is always leave your code correctly identified:
for (set .@c, 0; .@c < .@size; set .@c, .@c + 1)
mes "Top ^FF0000" +(.@c + 1) +"^000000 ^0000FF" + .@nombre$[.@c] +"^000000 ";
for(.@i = 0; .@i < getarraysize(.@size); .@i++) {
message .@nombre$[.@i],"Alguien os busca";
close; //CODE HERE
}
Notice the code above, it has 2 repeating structure doing the same thing.
Another thing, if you want to show all players within a replay structure you need to let it run smoothly, In the code above inside the repeating structure we see the command "Close;", this causes the code to stop the first time it runs.
An effective way to show this result in a conversation with npc would be like this:
set .@size, query_sql( "select nombre from asesinoss where exp > 10 order by exp desc limit "+ .top, .@nombre$);
for(.@i = 0; .@i < getarraysize(.@size); .@i++) {
mes "Top ^FF0000" +(.@i + 1) +"^000000 ^0000FF" + .@nombre$[.@i] +"^000000 ";
}
close;
OnInit: // Script Configuration
set .a, 1; //
set .top, 10; //
end;
}
Notice that "Close;" got out of the repeating structure...
Now if you want each player to receive the message you need to set an event for it, in which case the message only appears in a conversation with npc.