Post: [UPDATED!] Advanced Warfare Unlimited Supply Drop Offsets
02-09-2015, 09:03 PM #1
RatchetBooty
Former Staff
(adsbygoogle = window.adsbygoogle || []).push({});
So as you may or may not know already we now have Supply Drop challenges on Advanced Warfare. You can easily manipulate these challenges and give yourself as many supply drops as you want. Let's get right to it.

Stat Entry Address: 0x29F656C
Supply Drop Challenge (Locked, Progress, Completed):
    Stat Entry + 0x58CE
or
0x29FBE3A

0x00 = Locked, 0x01 = Progress, 0x02 = Completed

[I]Use this offset to change the status of your Supply Drop challenge[/I]


Supply Drop Challenge Amount:
    Stat Entry + 0x5CF4
or
0x29FC260

[I]Use this offset to change the amount of things to do before Supply Drop challenge completion[/I]


Choose Supply Drop Challenge
    Stat Entry + 0x6460
or
0x029FC9CC

[I]Use this offset to change your supply drop challenge. If you don't like the one you have now simply go to that offset and mess with the bytes till you get one you do like[/I]


Now here is how to use all of this to your advantage to give yourself as many supply drops as you want. If your Supply Drop challenge is already complete or locked then go to the Supply Drop Challenge offset (Stat Entry + 0x58CE or 0x29FBE3A) and change it to 0x01. Now your Supply Drop challenge is in progress. Now go to the Supply Drop challenge amount offset (Stat Entry + 0x5CF4 or 0x29FC260) and change it to 1 interger before the completion of the supply drop challenge. So let's say our Supply Drop Challenge was to get 30 kills with a sub machine gun in capture the flag. We'd set change the Supply Drop Challenge Amount offset value to 0x1D (this is hex for 29). We'd go into a game and get one kill and we'd get the supply drop and we'd repeat this process over and over until we feel we've got enough supply drops... and then we can do it some more :sheit:

Note: To put a number into hexadecimal simply go onto google and type 0x00 + your number here.
[/B]
(adsbygoogle = window.adsbygoogle || []).push({});

The following 38 users say thank you to RatchetBooty for this useful post:

|_Lion_|, A_Gen_Fiasco, Arrow_Modz, Bigmoneyhustlin, Boliberrys, clark1226, EG6, EquakeCSharp, Gay For Satan, Geo, SQUID-EYE, Hunter926, iHaxel, ImHaXUnique, Jack PPCX, Jarvis123 xOGx, justinster, Loz, Luma, OLDSCHOOLMODZHD, OrbitModding, PRoBleMaTiK, RayJ_chugs, recycling.exe, RoCK__711, RTE, SaberNGU, SONYS✮NIGHTMARE, SveBu Live, Swaqq, Taylor, TheLastHelmet, Thirst, x5150xiZombie, xDebugKiller, xSuperLᴏbbies, Zambie
02-09-2015, 11:47 PM #11
Thirst
Error… Cat invasion!
Originally posted by Kush View Post
I pressed auto reset challenge and I just completed it with no supply drop


The auto reset challenge is just the reset challenge but ran on a timer. What was your challenge? Was it kills? Orbitals?

*NOTICE: this is only for the KILLS challenges, it just sets it to un-completed and 29 kills. This was made for personal use wasn't meant to be given out since I only made it to benefit my challenge. I wouldn't know what other challenges other people received. RB's tutorial should be self-explanatory.
02-09-2015, 11:48 PM #12
WsV-Kush
Bounty hunter
Originally posted by Grape
The auto reset challenge is just the reset challenge but ran on a timer. What was your challenge? Was it kills? Orbitals?

*NOTICE: this is only for the KILLS challenges, it just sets it to un-completed and 29 kills. This was made for personal use wasn't meant to be given out since I only made it to benefit my challenge. I wouldn't know what other challenges other people received. RB's tutorial should be self-explanatory.


20 kills with shotguns in uplink
02-10-2015, 12:22 AM #13
Bigmoneyhustlin
Can’t trickshot me!
good shit man....learning a lot and getting a lot of goodies all in one thread, Thanks
02-10-2015, 01:38 AM #14
Chris
Former Staff
Good job man, about to try and get this speakeasy.
02-10-2015, 01:48 AM #15
Hunter926
Little One
Originally posted by Grape
Due to some people not understanding how to set bytes, I've decided to save you the 3 second struggle.


Virus Scan :
You must login or register to view this content.

Download : You must login or register to view this content.

Image :
You must login or register to view this content.


*NOTICE: this is only for the KILLS challenges, it just sets it to un-completed and 29 kills. This was made for personal use wasn't meant to be given out since I only made it to benefit my challenge. I wouldn't know what other challenges other people received. RB's tutorial should be self-explanatory.


Looked at your code and read your notice, however why not take the extra 10 seconds and do it so it's easily customizable.
I would think that's well worth it, even if it's for your benefit alone.

Just add a NumericUpDown box

    #region
private void ChallengeSwitch_ValueChanged(object sender, EventArgs e)
{
if (ChallengeSwitch.Value == true)
{
ChallengeTimer.Start();
}
else
{
ChallengeTimer.Stop();
}
}

private void ChallengeTimer_Tick(object sender, EventArgs e)
{
//If Challenge is not In-Progress OR If Number of completed objectives is not 1 less than total needed.. Set Memory..
if (PS3.Extension.ReadByte(0x29FBE3A) != 0x01 || PS3.Extension.ReadByte(0x29FC260) != (Byte)(ChallengeNumBox.Value - 1))
{
//Set status to In-Progress
PS3.Extension.WriteByte(0x29FBE3A, 0x01);
//Set to 1 below your total required objectives
PS3.Extension.WriteByte(0x29FC260, (Byte)(ChallengeNumBox.Value - 1));
}
}
#endregion


Instead of
    private void Reset_Tick(object sender, EventArgs e)
{
PS3.SetMemory(0x29fbe3a, new byte[] { 0x1 });
PS3.SetMemory(0x29fc260, new byte[] { 0x1d });
}


You must login or register to view this content.

The following user thanked Hunter926 for this useful post:

Thirst
02-10-2015, 02:50 AM #16
Thirst
Error… Cat invasion!
Originally posted by Hunter926 View Post

~snip


Tbh, I'm lazy. Sal
02-10-2015, 03:03 AM #17
Hunter926
Little One
Originally posted by Grape
Tbh, I'm lazy. Sal


Ha, I have those days ALL the time.
Well if you feel like it, then use what I put down and re-upload your tool so people can use it.

Thanks for the original upload btw
02-10-2015, 03:30 AM #18
Thirst
Error… Cat invasion!
Originally posted by Hunter926 View Post
Ha, I have those days ALL the time.
Well if you feel like it, then use what I put down and re-upload your tool so people can use it.

Thanks for the original upload btw


Haha, just did it :p and fixed the original post. Thanks man.

The following user thanked Thirst for this useful post:

Hunter926
02-10-2015, 03:49 AM #19
someone better making a fucking tool with this

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo