private void createBtn_Click(object sender, RoutedEventArgs e) { if (atP.IsChecked.Value) { createText = "@p"; } else if (atA.IsChecked.Value) { createText = "@a"; } else if (atR.IsChecked.Value) { createText = "@r"; } else if (atE.IsChecked.Value) { createText = "@e"; } else if (atS.IsChecked.Value) { createText = "@s"; } else { createText = "@p"; } string extra = ""; if (xyzCheck.IsChecked.Value) { extra += "x=" + x.Value.ToString() + ",y=" + y.Value.ToString() + ",z=" + z.Value.ToString() + ","; } if (dxCheck.IsChecked.Value) { extra += "dx=" + dx.Value.ToString() + ","; extra += "dy=" + dy.Value.ToString() + ","; extra += "dz=" + dz.Value.ToString() + ","; } if (rCheck.IsChecked.Value) { extra += "r=" + r.Value.ToString() + ","; } if (rmCheck.IsChecked.Value) { extra += "rm=" + rm.Value.ToString() + ","; } if (mCheck.IsChecked.Value) { if (mUN.IsChecked.Value) { extra += "m=!" + m.Value.ToString() + ","; } else { extra += "m=" + m.Value.ToString() + ","; } } if (rxCheck.IsChecked.Value) { extra += "rx=" + rx.Value.ToString() + ","; } if (rxmCheck.IsChecked.Value) { extra += "rxm=" + rxm.Value.ToString() + ","; } if (cCheck.IsChecked.Value) { extra += "c=" + c.Value.ToString() + ","; } if (ryCheck.IsChecked.Value) { extra += "ry=" + ry.Value.ToString() + ","; } if (rymCheck.IsChecked.Value) { extra += "rym=" + rym.Value.ToString() + ","; } if (lCheck.IsChecked.Value) { extra += "l=" + l.Value.ToString() + ","; } if (lmCheck.IsChecked.Value) { extra += "lm=" + lm.Value.ToString() + ","; } if (scoreCheck.IsChecked.Value) { extra += "score_" + scoreName.Text + "=" + score.Value.ToString() + ","; } if (scoreMinCheck.IsChecked.Value) { extra += "score_" + scoreMinName.Text + "_min=" + scoreMin.Value.ToString() + ","; } if (teamCheck.IsChecked.Value) { if (teamUN.IsChecked.Value) { extra += "team=!" + team.Text + ","; } else { extra += "team=" + team.Text + ","; } } if (nameCheck.IsChecked.Value) { if (nameUN.IsChecked.Value) { extra += "name=!" + name.Text + ","; } else { extra += "name=" + name.Text + ","; } } if (typeCheck.IsChecked.Value) { AllSelData asd = new AllSelData(); if (typeUN.IsChecked.Value) { extra += "type=!" + asd.getAt(type.SelectedIndex) + ","; } else { extra += "type=" + asd.getAt(type.SelectedIndex) + ","; } } if (tagCheck.IsChecked.Value) { extra += "tag=" + tags.Text + ","; } if (NBTCheck.IsChecked.Value) { extra += "nbt="; if (NBTUN.IsChecked.Value) { extra += "!"; } extra += NBTTextbox.Text + ","; } if (extra.Length != 0) { extra = extra.Remove(extra.Length - 1, 1); createText += "[" + extra + "]"; } string nbt = ""; if (flyCheck.IsChecked.Value) { nbt += "abilities:{flying:1b},"; } if (handCheck.IsChecked.Value) { AllSelData asd = new AllSelData(); string temp = ""; string temp2 = ""; if (handMeta.Value != -1) { temp = ",Damage:" + handMeta.Value + "s"; } if (getItemText.Text != "") { temp2 = ",tag:{" + getItemText.Text + "}"; } nbt += "SelectedItem:{id:\"" + asd.getItem(hand.SelectedIndex) + "\",Count:" + handCount.Value + "b" + temp + temp2 + "},"; } if (itemCheck.IsChecked.Value && cmd != string.Empty) { nbt += cmd + ","; } if (InvCheck.IsChecked.Value && inv != string.Empty) { nbt += inv + ","; } if (rideCheck.IsChecked.Value) { AllSelData asd = new AllSelData(); nbt += "RootVehicle:{Entity:{id:\"" + asd.getAt(rideEntity.SelectedIndex) + "\"}},"; } if (nbt.Length != 0) { nbt = nbt.Remove(nbt.Length - 1, 1); nbt = "{" + nbt + "}"; createText += " " + nbt; } }