Currently i have a if function to see if player is in a monument
if (player.currentTimeCategory == 2)
{
//player in munument
}
else
{
//player not in monument
}and that works to a degree
problem is that only works if player is at ground level ,
example : if player is in water treatment by recycler ,(that is on second level of building) the shows that player is not at monument ..
any better way to do this..that detects all of monument not just ground level .
and no i dont want to use Zone Manager and place zones all over map.