コード例 #1
0
ファイル: Player.cs プロジェクト: rdebath/MCGalaxy
        public bool MarkPossessed(string marker = "")
        {
            if (marker.Length > 0)
            {
                Player controller = PlayerInfo.FindExact(marker);
                if (controller == null)
                {
                    return(false);
                }
                marker = " (" + controller.color + controller.name + color + ")";
            }

            Entities.GlobalDespawn(this, true);
            Entities.GlobalSpawn(this, true, marker);
            return(true);
        }
コード例 #2
0
ファイル: Player.cs プロジェクト: Peteys93/MCGalaxy
 public static void GlobalSpawn(Player p, ushort x, ushort y, ushort z,
                                byte rotx, byte roty, bool self, string possession = "")
 {
     Entities.GlobalSpawn(p, x, y, z, rotx, roty, self, possession);
 }
コード例 #3
0
ファイル: Player.cs プロジェクト: Peteys93/MCGalaxy
 public static void GlobalSpawn(Player p, bool self, string possession = "")
 {
     Entities.GlobalSpawn(p, self, possession);
 }