Beispiel #1
0
 public void LauJoinParty(ulong XUID)
 {
     if (Form1.IsDevKit == true)
     {
         DevUsers.JoinParty(xbc, 0, XUID);
     }
 }
Beispiel #2
0
 private void button33_Click(object sender, EventArgs e)
 {
     if (Connected)
     {
         if (IsDevKit == false)
         {
         }
         else
         {
             ulong XUID = DevUsers.GetXUID(xbc, textBox12.Text);
             DevUsers.JoinParty(xbc, 0, XUID);
             MessageBox.Show("You Joined the Party!!!!");
         }
     }
 }
Beispiel #3
0
        private void button18_Click(object sender, EventArgs e)
        {
            if (Connected)
            {
                if (IsDevKit == false)
                {
                }
                else
                {
                    string id   = listView2.SelectedItems[0].SubItems[3].Text;
                    ulong  XUID = DevUsers.ListFLXuid[Convert.ToInt32(id)];
                    string test = DevUsers.ListFSXuid[Convert.ToInt32(id)];

                    DevUsers.JoinParty(xbc, 0, XUID);
                    MessageBox.Show("You Joined the Party!!!!");
                }
            }
        }
Beispiel #4
0
 private void karma_Click(object sender, EventArgs e)
 {
     if (Connected)
     {
         if (IsDevKit == false)
         {
             Users.SetGamertag(xbc, "Major Nelson", "00092EEEEEEEFD31");
             MessageBox.Show("Gamertag Is Set to Major Nelson");
         }
         else
         {
             ulong Xuid = 0L;
             DevUsers.SetGamertag(xbc, "Major Nelson", "00092EEEEEEEFD31");
             DevUsers.GetXuidFromIndex(xbc, 0, out Xuid);
             DevUsers.JoinParty(xbc, 0, Xuid);
             MessageBox.Show("Gamertag Is Set to Major Nelson");
         }
     }
 }
Beispiel #5
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (Connected)
     {
         if (IsDevKit == false)
         {
             Users.SetGamertag(xbc, textBox1.Text, textBox2.Text);
             MessageBox.Show("Gamertag Is Set to " + textBox1.Text);
         }
         else
         {
             ulong Xuid = 0L;
             DevUsers.SetGamertag(xbc, textBox1.Text, textBox2.Text);
             DevUsers.GetXuidFromIndex(xbc, 0, out Xuid);
             DevUsers.JoinParty(xbc, 0, Xuid);
             MessageBox.Show("Gamertag Is Set to " + textBox1.Text);
         }
     }
 }