Post: How to set Time Played on Modern Warfare 3
08-20-2013, 05:38 PM #1
Sonoro
I like anteaters
(adsbygoogle = window.adsbygoogle || []).push({});
You must login or register to view this content.

Hello.
Most likely few people have been able to do this in a while, so it's time for it to come off.
Basically this has been cause of a confusion between some offsets.
Here's the explaination on how it works.

    
Stats Entry Point = 0x1C187D0
TIME_PLAYED_ALLIES = 0x1C187D0 + 0xCFC (The time played as Delta team)
TIME_PLAYED_OPFOR = 0x1C187D0 + 0xD00 (The time played as Spetsnaz team)
TIME_PLAYED_OTHERS = 0x1C187D0 + 0xD04 (The time played in no team , like FFA)
TIME_PLAYED_TOTAL = 0x1C187D0 + 0xD0C (Total time played, all of the previous together)


Basically every time you complete a game, or go back to a party, the value at TIME_PLAYED_TOTAL gets re-calculated.
So if you want to set it properly, you can do this:

- Calculate your time played in seconds

    days * 24 * 60 * 60 + hours * 60 * 60 + minutes * 60


- Get the hex value of it by using a calculator

- Reverse the array, since the game uses Little Endian (shift bits)

- Your value is ready, now store it like this

    
TIME_PLAYED_ALLIES = 00 00 00 00 (null it)
TIME_PLAYED_OPFOR = Enter your value here
TIME_PLAYED_OTHERS = 00 00 00 00
TIME_PLAYED_TOTAL = Enter your value here


And you will have it done.

If you don't have any knowledge, i made this little program to calculate the value for you.


You must login or register to view this content.

You must login or register to view this content.


-xSonoro
(adsbygoogle = window.adsbygoogle || []).push({});

The following 12 users say thank you to Sonoro for this useful post:

AlabamaHit, Bucko, Guzman, ImPiffHD, ljjp, Mango_Knife, Pewp, SnaY, Sticky, worrorfight, xRevolutions
08-20-2013, 05:42 PM #2
SnaY
Former Lead of GS
Originally posted by xSonoro View Post
You must login or register to view this content.

Hello.
Most likely few people have been able to do this in a while, so it's time for it to come off.
Basically this has been cause of a confusion between some offsets.
Here's the explaination on how it works.

    
Stats Entry Point = 0x1C187D0
TIME_PLAYED_ALLIES = 0x1C187D0 + 0xCFC (The time played as Delta team)
TIME_PLAYED_OPFOR = 0x1C187D0 + 0xD00 (The time played as Spetsnaz team)
TIME_PLAYED_OTHERS = 0x1C187D0 + 0xD04 (The time played in no team , like FFA)
TIME_PLAYED_TOTAL = 0x1C187D0 + 0xD0C (Total time played, all of the previous together)


Basically every time you complete a game, or go back to a party, the value at TIME_PLAYED_TOTAL gets re-calculated.
So if you want to set it properly, you can do this:

- Calculate your time played in seconds

    days * 24 * 60 * 60 + hours * 60 * 60 + minutes * 60


- Get the hex value of it by using a calculator

- Reverse the array, since the game uses Little Endian (shift bits)

- Your value is ready, now store it like this

    
TIME_PLAYED_ALLIES = 00 00 00 00 (null it)
TIME_PLAYED_OPFOR = Enter your value here
TIME_PLAYED_OTHERS = 00 00 00 00
TIME_PLAYED_TOTAL = Enter your value here


And you will have it done.

If you don't have any knowledge, i made this little program to calculate the value for you.


You must login or register to view this content.

You must login or register to view this content.


-xSonoro


xSonoro :happycry: you da bes! :wub:
08-20-2013, 05:43 PM #3
Guzman
Versace Versace
Cool sonorous tears
Originally posted by xSonoro View Post
You must login or register to view this content.

Hello.
Most likely few people have been able to do this in a while, so it's time for it to come off.
Basically this has been cause of a confusion between some offsets.
Here's the explaination on how it works.

    
Stats Entry Point = 0x1C187D0
TIME_PLAYED_ALLIES = 0x1C187D0 + 0xCFC (The time played as Delta team)
TIME_PLAYED_OPFOR = 0x1C187D0 + 0xD00 (The time played as Spetsnaz team)
TIME_PLAYED_OTHERS = 0x1C187D0 + 0xD04 (The time played in no team , like FFA)
TIME_PLAYED_TOTAL = 0x1C187D0 + 0xD0C (Total time played, all of the previous together)


Basically every time you complete a game, or go back to a party, the value at TIME_PLAYED_TOTAL gets re-calculated.
So if you want to set it properly, you can do this:

- Calculate your time played in seconds

    days * 24 * 60 * 60 + hours * 60 * 60 + minutes * 60


- Get the hex value of it by using a calculator

- Reverse the array, since the game uses Little Endian (shift bits)

- Your value is ready, now store it like this

    
TIME_PLAYED_ALLIES = 00 00 00 00 (null it)
TIME_PLAYED_OPFOR = Enter your value here
TIME_PLAYED_OTHERS = 00 00 00 00
TIME_PLAYED_TOTAL = Enter your value here


And you will have it done.

If you don't have any knowledge, i made this little program to calculate the value for you.


You must login or register to view this content.

You must login or register to view this content.


-xSonoro
08-20-2013, 05:48 PM #4
AlabamaHit
ROLL TIDE!!!
Thanks bro! Was really lost on how that worked!
08-20-2013, 05:50 PM #5
Sonoro
I like anteaters
Originally posted by AlabamaHit View Post
Thanks bro! Was really lost on how that worked!


Anytime tears

The following user thanked Sonoro for this useful post:

AlabamaHit
08-20-2013, 07:31 PM #6
Mango_Knife
In my man cave
Originally posted by xSonoro View Post
You must login or register to view this content.

Hello.
Most likely few people have been able to do this in a while, so it's time for it to come off.
Basically this has been cause of a confusion between some offsets.
Here's the explaination on how it works.

    
Stats Entry Point = 0x1C187D0
TIME_PLAYED_ALLIES = 0x1C187D0 + 0xCFC (The time played as Delta team)
TIME_PLAYED_OPFOR = 0x1C187D0 + 0xD00 (The time played as Spetsnaz team)
TIME_PLAYED_OTHERS = 0x1C187D0 + 0xD04 (The time played in no team , like FFA)
TIME_PLAYED_TOTAL = 0x1C187D0 + 0xD0C (Total time played, all of the previous together)


Basically every time you complete a game, or go back to a party, the value at TIME_PLAYED_TOTAL gets re-calculated.
So if you want to set it properly, you can do this:

- Calculate your time played in seconds

    days * 24 * 60 * 60 + hours * 60 * 60 + minutes * 60


- Get the hex value of it by using a calculator

- Reverse the array, since the game uses Little Endian (shift bits)

- Your value is ready, now store it like this

    
TIME_PLAYED_ALLIES = 00 00 00 00 (null it)
TIME_PLAYED_OPFOR = Enter your value here
TIME_PLAYED_OTHERS = 00 00 00 00
TIME_PLAYED_TOTAL = Enter your value here


And you will have it done.

If you don't have any knowledge, i made this little program to calculate the value for you.


You must login or register to view this content.

You must login or register to view this content.


-xSonoro


Tanks For Sharing xSonoro
Very Helpfull tanks So Much.
08-20-2013, 08:26 PM #7
zDirrTy__-
Little One
Good dude !

The following user thanked zDirrTy__- for this useful post:

xFreeshStyL
08-20-2013, 08:38 PM #8
Tustin
Balls of Steel
I'm posting this mainly because I need to update my user bar. Gud werk fran

The following user thanked Tustin for this useful post:

xFreeshStyL
08-20-2013, 08:39 PM #9
Sonoro
I like anteaters
Originally posted by Tustin View Post
I'm posting this mainly because I need to update my user bar. Gud werk fran


Haha thanks fran , how r u today

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo