Hello basically as the title says I want $level to = a speciified level which in my case is 'newhub' how do I do this? I did this but it didn't work: PHP: $level = $this->getLevel("newhub");
Please try to do your own research next time. Server::getLevel() accepts a level ID, not name. PHP: $level = $this->getServer()->getLevelByName("newhub");