View Single Post
  #6  
Old 02-10-2009, 12:06 AM
WhiteDragon WhiteDragon is offline
Banned
Join Date: Feb 2007
Posts: 1,002
WhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to behold
PHP Code:
function LAucItem.onSelect(idtxtind) {
  
L_List.clearrows();
  if (
txt == "NPC") {
    for (
temp.0temp.player.weapons.size(); temp.i++) {

      
temp.notBanned true;

      for (
temp.weps this.bannedNPCs) {
        if (
player.weapons[temp.i].name.starts(temp.weps)) {
          
temp.notBanned false;
          break;
        }
      }

      if (
temp.notBanned)
        
L_List.addrow(temp.iplayer.weapons[temp.i].name);

    }
  }

Should work, and do what you were trying to do in the first function.
Reply With Quote