change
"for ( x=1; 65; x = (x + 1) ) {"
to
"for ( x=1; x<=65; ++x) {"
and make
new playaz[64] a global variable
also playaz[64] dont need to be 64 cause there are only max 32 players
it should be changed to 33 and therefore also 65 to 32 at "for ( x=1; x<=65; ++x) {"
it should not be
Code:
}
else playaz[x] = 0
}
changeth(x)
}
but
Code:
}
else playaz[x] = 0
}
changeth(x)
}
look at the position of changeth(x)
dont really understand what your plugin should do?
__________________