View Single Post
  #1  
Old 02-03-2009, 07:31 PM
Ronnie Ronnie is offline
Registered User
Join Date: Jun 2008
Location: Nj, USA
Posts: 48
Ronnie is on a distinguished road
Send a message via AIM to Ronnie
Searching through players.

So guys, I have a script and for my script it has a client string of theres set, and I checked and they do have the client string in there atts.
But it doesn't read it correctly and adds them to my gui anyway.


PHP Code:
   for(temp.aallplayers) {
    if(!
temp.a.isexternal) {
     
temp.b=findplayer(temp.a);
     
with(temp.b){
      if(
temp.b.client.guildmode == 3){
       return;
       }
       
i++;
       
addrow(i,temp.a.account ":" temp.a.nick);
       }    
      }
     } 
If you need the rest of the script it can be listed, but I tried multiple ways to go through the players client strings and they don't work.

thanks in advance!
Reply With Quote