Quote:
Originally Posted by cbkbud
Well you've always done it wrong ... players means the players in a level, may have worked for a DB NPC in a level with players ...
|
No. It's worked for every NPC I've done using it. I'm not stupid, I would've figured it out by now if it never worked.
Quote:
Originally Posted by cbkbud
allplayers should only be going through once. I would try echoing at the beginning of the function to make sure it isn't being called twice.
|
No ****.
I even did this:
PHP Code:
temp.list = new[0];
for (pl: allplayers) {
if (!(pl in temp.list)) {
temp.list.add(pl);
echo(pl);
}
}
And it echoed twice.