in allocs mod it makes an entry for every player that ever joins the server. There's no way to delete them individually via allocs mod, so wiping the file is the only way to reset it unless you make a reader/writer script to filter the dataThanks stompy. Am not owner and don't know if he would want all the players stats reset or not. Thought there might have been a way to just remove certain players. Out of curiosity do you know why this happens? I have seen it before with one or two people but never this many. Am guessing more people are hearing of the server and trying it out.
Its javascipt that fills the table. Bit busy with work now but ill post a adjusted javascript for the players to filter out all players with totalplaytime < 1 minuteToo bad that it doesn't make it so that by default it wouldn't show stuff, that has position 0,0,0 and time played 0, that would pretty much do the trick.
ajaxProcessing: function(data){
var rows = [];
var skipped = 0;
for (var i=0; i < data.players.length; i++) {
if(data.players[i]["totalplaytime"] > [b]60[/b])
{
var row = [];
for (var c = 0; c < columns.length; c++) {
var col = columns[c];
var val = data.players[i][col[0]];
if (col.length > 2 && col[2] != null) {
val = col[2] (val);
}
row.push (val);
}
rows.push (row);
}
else {skipped++}
}
return {
"total": (data.total - skipped),
"headers": headers,
"rows": rows
};
},
Filling the filterbox you can do as a "normal user"Thanks. Will pass this post onto the proper authority![]()