Hi guys, I have the problem that I wanted to make a server on which there is one Survival City Build and a Creative City Build gives. But I don't want to rent another server. Does anyone know a plugin with which you can have different game modes on different worlds? best regards GeistFan
sorry, what do you mean? you want players just change their gamemode to 1 in world Creative Build? there isnt plugin i think, but you can create it your self, there is a function by: PlayerGameModeChangeEvent you can cancell it on special worlds.
sure PHP: public function onGamemode(PlayerGameModeChangeEvent $event){if ($event->getPlayer()->getLevel()->getFolderName() === "CITYBUILD") { //set name to your folder name of CotyBuild $event->setCancelled(true); $event->getPlayer()->sendMessage("You Can't Change Your Gamemode To Creative mod in CityBuild"); }} now when player is in CityBuild World, can change his gamemode, but he can change it in CreativeCityBuild. Helped? drop a like