Package model

Examples of model.World.removePlayer()


    @Override
    public void doBusiness() throws Exception {
        World world = client.getWorld();

        if (world != null) {
            world.removePlayer(client.getPlayer().getID());

            if (world.getPlayers().isEmpty()) {
                GameServer.getInstance().removeWorldAndWorldMapFromBuffer(world.getID(), world.getGameMode());
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.