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.a: allplayers) {
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!