Quote:
Originally Posted by Alpho
What about from this example:4
PHP Code:
this.acc_Graal756204 = 4;
How would I check if someones account is after this.acc_ and if true, set something in their attrs to 4?
|
Not sure (currently Trial again) but something like this could help:
PHP Code:
function onCreated() {
this.acc_Graal756204 = 4;
temp.check = this.acc_.getvarnames();
for (temp.i=0; temp.i<temp.check.size(); temp.i++) {
if (player.account in temp.check) {
player.attr[4] = this.acc_(@player.account);
echo(player.attr[4];
}
}
}