Hi there,
I had some problems with the getObjectsInRange-syntax:
It sais Always true, even if the Player is About 900 cells away from the object…
Why does that not work?
public void moveAI()
{
if(getObjectsInRange(100,player.class)!=null)
{
getWorld().showText("true",100,50);
}
else
{
getWorld().showText("true",100,50);
}
}

