Post: BO2 Offset help
10-30-2015, 06:18 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); So Is there a offset that is 1st person invisible instead of 3rd person invisible it's really irritating
(adsbygoogle = window.adsbygoogle || []).push({});
10-30-2015, 09:16 AM #2
Adrian
Adrian is back!
Originally posted by Quickest View Post
So Is there a offset that is 1st person invisible instead of 3rd person invisible it's really irritating


Pretty sure you would need to use rpc to do so.
10-30-2015, 10:32 AM #3
B777x
Hurah!
Originally posted by Quickest View Post
So Is there a offset that is 1st person invisible instead of 3rd person invisible it's really irritating


0x1780F28 + 0xFF + (0x5808 * 0) - 0x20 //ON
0x1780F28 + 0xFF + (0x5808 * 0) - 0x00 //OFF

The following user thanked B777x for this useful post:

XxBlud23xX
10-30-2015, 04:54 PM #4
yeahh
10-30-2015, 04:54 PM #5
oh he posted it ;P
10-30-2015, 07:02 PM #6
Is the bytes still ON: 01 OFF:00 ???
10-30-2015, 07:14 PM #7
So would it be //ON
byte[] buffer = new byte[1]
{
(byte) 20
};
PS3.SetMemory((uint)(0x1780F28 + 0xFF + (0x5808 * 0) + this.dataGridView1.CurrentRow.Index * 22536), buffer);
PS3.SetMemory((uint)(0x1780F28 + 0xFF + (0x5808 * 0) + this.dataGridView1.CurrentRow.Index * 22536), buffer);
}
But its not working if thats the right code
10-30-2015, 08:13 PM #8
B777x
Hurah!
Originally posted by Quickest View Post
So would it be //ON
byte[] buffer = new byte[1]
{
(byte) 20
};
PS3.SetMemory((uint)(0x1780F28 + 0xFF + (0x5808 * 0) + this.dataGridView1.CurrentRow.Index * 22536), buffer);
PS3.SetMemory((uint)(0x1780F28 + 0xFF + (0x5808 * 0) + this.dataGridView1.CurrentRow.Index * 22536), buffer);
}
But its not working if thats the right code


    void SetInvisibility(int clientnum, bool value)
{
uint flagAddr = 0x1780F28 + 0xFC + (0x5808 * (uint)clientnum);
int flag = PS3.Extension.ReadInt32(flagAddr);
if (value)
flag |= 0x20;
else
flag &= ~0x20;
PS3.Extension.WriteInt32(flagAddr, flag);
}

how to use:
SetInvisibility(dataGridView1.CurrentRow.Index, true); //Invisibility is ON
SetInvisibility(dataGridView1.CurrentRow.Index, false); //Invisibility is OFF
10-30-2015, 08:22 PM #9
I got so much errors i dont know where to start
10-30-2015, 08:22 PM #10
Like Honestly im completely lost.

SetInvisibility is not in the current context and what do i do with this?:

void SetInvisibility(int clientnum, bool value)
{
uint flagAddr = 0x1780F28 + 0xFC + (0x5808 * (uint)clientnum);
int flag = PS3.Extension.ReadInt32(flagAddr);
if (value)
flag |= 0x20;
else
flag &= ~0x20;
PS3.Extension.WriteInt32(flagAddr, flag);
}

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo