Im not sure of the problem either, but, try either of these two.
PHP Code:
//#CLIENTSIDE
function onCreated() {
setTimer(0.05);
}
function onTimeOut() {
temp.polyarray = {player.x,player.y,mousex,mousey};
showpoly(200,temp.polyarray);
changeimgvis(200,1);
setTimer(0.05);
}
Or..
PHP Code:
//#CLIENTSIDE
function onCreated() {
setTimer(0.05);
}
function onTimeOut() {
temp.polyarray = {{player.x,player.y,mousex,mousey}};
showpoly(200,temp.polyarray[0]);
changeimgvis(200,1);
setTimer(0.05);
}
Meh, dunno.