// extract the title
int pos = text.indexOf(" ");
if (pos > -1) {
String title = text.substring(pos + 1).trim();
final WikipediaAccess access = new WikipediaAccess(title);
final Thread thread = new Thread(access);
thread.setPriority(Thread.MIN_PRIORITY);
thread.setDaemon(true);
thread.start();
SingletonRepository.getTurnNotifier().notifyInTurns(10, new WikipediaWaiter((SpeakerNPC) npc.getEntity(), access));