PHP Code:
//#CLIENTSIDE
function onCreated(){
this.meowarray = { };
for( temp.ay = 0; temp.ay < 64; temp.ay++ ){
for( temp.ax = 0; temp.ax < 64; temp.ax++ ){
this.meowarray[ temp.ax ][ temp.ay ] = 1;
if( temp.ax == 2 && temp.ay == 3 ) echo( this.meowarray[ temp.ax ][ temp.ay ] );
}
}
}
it echoes 0 x.x
why that?