You are viewing our Forum Archives. To view or take place in current topics click here.
will reward $15 for this help i really need look at the link
Posted:

will reward $15 for this help i really need look at the linkPosted:

BeachbabygurI
  • New Member
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
Right so if you look at the link it hasd a get clients button and a box under it what coding do i put on the button and then what coding do i put on the box under that to get the clients someone will be rewarded message under then after message me your paypal email and i will pay you $15




[ Register or Signin to view external links. ]
#2. Posted:
ZZ9_x_iHaXoRZz
  • Winter 2022
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
Is this for ghost or bo2,I see ban bypass i assume it one of them.
#3. Posted:
MySweatyThighs
  • New Member
Status: Offline
Joined: Mar 14, 201410Year Member
Posts: 4
Reputation Power: 0
Status: Offline
Joined: Mar 14, 201410Year Member
Posts: 4
Reputation Power: 0
BeachbabygurI wrote Right so if you look at the link it hasd a get clients button and a box under it what coding do i put on the button and then what coding do i put on the box under that to get the clients someone will be rewarded message under then after message me your paypal email and i will pay you $15




[ Register or Signin to view external links. ]

Here's some help, you spelled "Laser" wrong
#4. Posted:
USN
  • Summer 2018
Status: Offline
Joined: Jan 22, 201212Year Member
Posts: 956
Reputation Power: 37
Status: Offline
Joined: Jan 22, 201212Year Member
Posts: 956
Reputation Power: 37
ZZ9_x_iHaXoRZz wrote Is this for ghost or bo2,I see ban bypass i assume it one of them.


I would guess he means Ghosts because there's only 10 prestiges and the ban bypass
#5. Posted:
MySweatyThighs
  • New Member
Status: Offline
Joined: Mar 14, 201410Year Member
Posts: 4
Reputation Power: 0
Status: Offline
Joined: Mar 14, 201410Year Member
Posts: 4
Reputation Power: 0
USN wrote
ZZ9_x_iHaXoRZz wrote Is this for ghost or bo2,I see ban bypass i assume it one of them.


I would guess he means Ghosts because there's only 10 prestiges and the ban bypass

It also says "Ghosts" in the background image
#6. Posted:
ZZ9_x_iHaXoRZz
  • Fairy Master
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
USN wrote
ZZ9_x_iHaXoRZz wrote Is this for ghost or bo2,I see ban bypass i assume it one of them.


I would guess he means Ghosts because there's only 10 prestiges and the ban bypass


Good point there,

So first you want to add to your source


 private void ZZ9()
        {
            richTextBox1.AppendText(Environment.NewLine + "0 = " + GetGamertag(0));
            richTextBox1.AppendText(Environment.NewLine + "1 = " + GetGamertag(1));
            richTextBox1.AppendText(Environment.NewLine + "2 = " + GetGamertag(2));
            richTextBox1.AppendText(Environment.NewLine + "3 = " + GetGamertag(3));
            richTextBox1.AppendText(Environment.NewLine + "4 = " + GetGamertag(4));
            richTextBox1.AppendText(Environment.NewLine + "5 = " + GetGamertag(5));
            richTextBox1.AppendText(Environment.NewLine + "6 = " + GetGamertag(6));
            richTextBox1.AppendText(Environment.NewLine + "7 = " + GetGamertag(7));
            richTextBox1.AppendText(Environment.NewLine + "8 = " + GetGamertag(8));
            richTextBox1.AppendText(Environment.NewLine + "9 = " + GetGamertag(9));
            richTextBox1.AppendText(Environment.NewLine + "10 = " + GetGamertag(10));
            richTextBox1.AppendText(Environment.NewLine + "11 = " + GetGamertag(11));
            richTextBox1.AppendText(Environment.NewLine + "12 = " + GetGamertag(12));
            richTextBox1.AppendText(Environment.NewLine + "13 = " + GetGamertag(13));
            richTextBox1.AppendText(Environment.NewLine + "14 = " + GetGamertag(14));
            richTextBox1.AppendText(Environment.NewLine + "15 = " + GetGamertag(15));
            richTextBox1.AppendText(Environment.NewLine + "16 = " + GetGamertag(16));
            richTextBox1.AppendText(Environment.NewLine + "17 = " + GetGamertag(17));
        }


  public string GetGamertag(uint Client)
        {
            uint num;
            byte[] data = new byte[20];
            this.Jtag.xbCon.DebugTarget.GetMemory(this.getPlayerState(Client) + 0x2f1c, 20, data, out num);
            this.Jtag.xbCon.DebugTarget.InvalidateMemoryCache(true, this.getPlayerState(Client) + 0x2f1c, 20);
            return new ASCIIEncoding().GetString(data);
        }

 public uint Gamertagght(uint clientID)
        {
            return (getPlayerState(clientID) + 0x2F9C);
        }

        public uint getPlayerState(uint clientNum)
        {
            //add the tu10 playerstate here
        }



Once you added that in your source you want call it by adding this to a button

ZZ9();

this was just quickly wiped up so it may contain some small errors in there but im sure you get the hint lol

Edit i noticed you was using a listbox not a rich text box, i so i would change that if i was you.
#7. Posted:
BeachbabygurI
  • New Member
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
where do i add this u put thanks for the help but where do i add it
#8. Posted:
ZZ9_x_iHaXoRZz
  • Fairy Master
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
Status: Offline
Joined: Mar 11, 201113Year Member
Posts: 4,436
Reputation Power: 8964
BeachbabygurI wrote where do i add this u put thanks for the help but where do i add it


Any where in your source, just make sure it don't mix up with your other coding though.
#9. Posted:
BeachbabygurI
  • New Member
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
ZZ9_x_iHaXoRZz wrote
BeachbabygurI wrote where do i add this u put thanks for the help but where do i add it


Any where in your source, just make sure it don't mix up with your other coding though.


so what do i add to the button and the rich text box what gose on what

EDIT: what do i change this to //add the tu10 playerstate here
#10. Posted:
BeachbabygurI
  • New Member
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
Status: Offline
Joined: Feb 08, 201410Year Member
Posts: 20
Reputation Power: 0
BeachbabygurI wrote
ZZ9_x_iHaXoRZz wrote
BeachbabygurI wrote where do i add this u put thanks for the help but where do i add it


Any where in your source, just make sure it don't mix up with your other coding though.


so what do i add to the button and the rich text box what gose on what

EDIT: what do i change this to //add the tu10 playerstate here


i got it all added all there is just a problem with this what do i add to it and how do i correct it will be rewarded

[ Register or Signin to view external links. ]
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.