//Example usage of a dynamic command //Quick command button using a pre-built command, but this one grab's the user input //Teleports the player to a player of the specified username private void BtnTPTo_Click(object sender, EventArgs e) { string username = inputTPTo.Text; api.TeleportToPlayer(username); }