Exemplo n.º 1
0
        public string Join(int ChannelId, string Password = null)
        {
            if (!client.Connected)
            {
                return("Not connected!");
            }

            client.ClientMove(client.ClientId, (ulong)ChannelId, Password);

            return("Ok");
        }
Exemplo n.º 2
0
 public E <LocalStr> MoveTo(ulong channelId, string password = null)
 => tsFullClient.ClientMove(tsFullClient.ClientId, channelId, password).FormatLocal(() => strings.error_ts_cannot_move);