Nice script ! Im using it now.
I do have a problem tho, the SQL Query is showing errors, idk how to add the needed data for myphpadmin, do i have to make a new table for it ? or do i plug it in char in the database?
prontera,164,164,4 script Reborn Ladder 625,{
set .@count, query_sql ("SELECT char_id,value FROM `global_reg_value` WHERE str='reborncount' ORDER BY value DESC",.@charid,.@reborncount);
mes "[Reborn Ladder]";
for( set .@i, 0; .@i < .@count; set .@i, .@i+1) {
query_sql "SELECT `name` FROM `char` WHERE char_id="+.@charid[.@i]+"",.@charname$;
mes .@charname$+" "+.@reborncount[.@i];
}
close;
}
so in this pic, do I add new table as char_id, or do i go into char and add a column that has reborncount as int?