Finally got time to come back to this. All it says on player is "out", which its in the correct coordinates, so I dont know why its not saying "IN".
PHP Code:
//#CLIENTSIDE
function onPlayerEnters()
{
setColorEffect(1, 1, 1, 1);
this.mode = 1;
player.chat = "START";
}
function onPlayerTouchsMe()
{
dontblocklocal();
drawoverplayer();
setTimer(0.05);
}
function onTimeout()
{
if (player.x+1.5 in |17, 25| && player.y+2 in |13, 37|)
{
setColorEffect(1, 1, 1, 0.7);
this.mode = 1;
player.chat = "IN";
}else
{
setColorEffect(1, 1, 1, 1);
this.mode = 1;
player.chat = "out";
}
}