Снова вернулся в юньку. Заново начал разбирать документацию playerio, но там все на JS. Мне легче программировать на C#.
Просьба знающих перевести на С#
// create a new message of type moves
Message m = Message.Create("moves");
// add all the currently connected userids to the message
foreach(var move in Moves) {
m.Add(move.PieceId, move.X, move.Y);
}
// send the message to the server
connection.Send(m);