


Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!//for this code to work you must have included scripts\shared\statstable_shared.gsh
function get_table_items( filterSlot, blackList, search ) {//ripped from DidUKnowiPwn's infected code
items = [];
for(i = 0; i < STATS_TABLE_MAX_ITEMS; i++) {
row = TableLookupRowNum( level.statsTableID, STATS_TABLE_COL_NUMBERING, i );
if ( row < 0 ) {
continue;
}
if ( isdefined( filterSlot ) ) {
slot = TableLookupColumnForRow( level.statsTableID, row, STATS_TABLE_COL_SLOT );
if ( slot != filterSlot ) {
continue;
}
}
ref = TableLookupColumnForRow( level.statsTableId, row, STATS_TABLE_COL_REFERENCE );
if(IsDefined(blackList) && array::contains(blackList, ref)) {
continue;
}
name = TableLookupIString( level.statsTableID, STATS_TABLE_COL_NUMBERING, i, STATS_TABLE_COL_NAME );
if(IsDefined(search) && search == ref) items[items.size] = name;
else items[items.size] = ref;
}
return items;
}