Tracking Player Position
IWorldObjectEventListener playerUpdatedHandler =
new IWorldObjectEventListener() {
public void notify(WorldObjectUpdatedEvent event) {
Player player = event.getObject();
user.info("PLAYER UPDATE: " + player.getId().getStringId() + " LOCATION: " + player.getLocation() );
}
So I tried exploring this using the ObserverAgent like Simon did in this post:
http://diana.ms.mff.cuni.cz/main/tiki-view_forum_thread.php?topics_offset=1&forumId=4&comments_parentId=79
But came to the same conclusion that the observer doesn't actually see these events.
So if somebody could point me in the right direction on this matter I would very much appreciate it.

Thanks!
Juliet