L2JComponent l2j = new L2JComponent();
VisualComponent vis = new VisualComponent();
EnvironmentComponent env = new EnvironmentComponent();
//FIXME parallel create problems, synchronize creation and essential components or at least create/check of components
System.out.println("createNpc pre createEntity "+e.getObjectId());
Entity ent = em.createEntity(e.getObjectId());
System.out.println("createNpc post createEntity "+e.getObjectId());
em.addComponent(ent.getId(), pos);
System.out.println("createNpc post Add pos "+e.getObjectId());
em.addComponent(ent.getId(), vis);
System.out.println("createNpc post Add vis "+e.getObjectId());