Post: Anyone Know How Too Get 4 Bytes Working With Numeric Up and Down
08-02-2018, 02:02 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Does anyone know how too get numeric up and down too work for 4 bytes?

Iv tried alot of ways but still cant figure it out :P

Im Trying too do this for MW3...

Any help would be appriciated

     decimal value = this.flatNumeric46.Value;
PS3.SetMemory(0x26FCBE2, BitConverter.GetBytes(Convert.ToInt32(value.ToString())));


     byte custombyte = Convert.ToByte(Convert.ToInt32(prestige12.Value));
PS3.SetMemory(0x12c00f34, new byte[] { 0x00, 0x00, 0x00, custombyte });
Last edited by SoloHoster ; 08-06-2018 at 06:01 PM.
08-06-2018, 06:00 PM #11
Originally posted by 1UP View Post
You should post something otherwise no one is going to be able to realistically help you.


i did lol
08-06-2018, 08:39 PM #12
Algebra
[move]mov eax, 69[/move]
I don't know if this will work but uh you can try lol.


    
var value = this.flatNumeric46.Value;
PS3.SetMemory(0x26FCBE2, BitConverter.GetBytes(Convert.ToInt32(value.ToString())));

var custombyte = BitConverter.GetBytes(Convert.ToInt32(prestige12.Value.ToString()));

// Try this first
PS3.SetMemory(0x12c00f34, new byte[] { 0x00, 0x00, 0x00, Array.Reverse(custombyte)});

// If that does not work just try this.
PS3.SetMemory(0x12c00f34, new byte[] { 0x00, 0x00, 0x00, custombyte));


Last edited by Algebra ; 08-06-2018 at 08:43 PM.
08-06-2018, 09:06 PM #13
primetime43
Knowledge is power Tiphat
Originally posted by SoloHoster View Post
Does anyone know how too get numeric up and down too work for 4 bytes?

Iv tried alot of ways but still cant figure it out :P

Im Trying too do this for MW3...

Any help would be appriciated

     decimal value = this.flatNumeric46.Value;
PS3.SetMemory(0x26FCBE2, BitConverter.GetBytes(Convert.ToInt32(value.ToString())));


     byte custombyte = Convert.ToByte(Convert.ToInt32(prestige12.Value));
PS3.SetMemory(0x12c00f34, new byte[] { 0x00, 0x00, 0x00, custombyte });


What do you mean for 4 bytes? Do you mean for 4 bits?

Cause 4 bytes would look like this: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 (8 bits) == 1 byte
08-07-2018, 03:51 PM #14
Originally posted by primetime43 View Post
What do you mean for 4 bytes? Do you mean for 4 bits?

Cause 4 bytes would look like this: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 (8 bits) == 1 byte


Nah lol 4 bytes deffo 4 bytes Happy thank you
08-07-2018, 03:52 PM #15
Originally posted by Malg0d View Post
I don't know if this will work but uh you can try lol.


    
var value = this.flatNumeric46.Value;
PS3.SetMemory(0x26FCBE2, BitConverter.GetBytes(Convert.ToInt32(value.ToString())));

var custombyte = BitConverter.GetBytes(Convert.ToInt32(prestige12.Value.ToString()));

// Try this first
PS3.SetMemory(0x12c00f34, new byte[] { 0x00, 0x00, 0x00, Array.Reverse(custombyte)});

// If that does not work just try this.
PS3.SetMemory(0x12c00f34, new byte[] { 0x00, 0x00, 0x00, custombyte));




Thank you <3
08-08-2018, 09:02 PM #16
primetime43
Knowledge is power Tiphat
Originally posted by SoloHoster View Post
Nah lol 4 bytes deffo 4 bytes Happy thank you

:\










:\
08-11-2018, 10:04 AM #17
question answered

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo