Modme Forums
Menu:

Unlocking Supply Drop Weapons in MP Mod

Game Modding | Call of Duty: Black Ops 3 | Scripting


Sample Text:

Hello all,
Is there a way to unlock the supply drop/loot weapons within an MP mod (for Create-a-Class)? Can camos also be done?
Thanks.


ConvictioNDR:

For camos it is in gamedata\weapons\common\attachmentTable.csv. Copy that to your mod.
There are a bunch of them that will say loot, extras, mtx, personalization pack near the end of the line. Delete those words from the lines.
For unlocking the loot weapons maybe you can in gamedata\stats\mp\mp_statstable.csv


M5_Prodigy:

I've had no luck with this either actually.


M5_Prodigy:

i THINK there lock status are determined by some other file we don't have.


ConvictioNDR:

i THINK there lock status are determined by some other file we don't have.

I believe you are correct. Even adding the guns to default classes the game won't let you choose that class unless you have that gun unlocked. Amazing the lengths they've gone to to keep them from being used in a mod. A workaround would be to make your own weaponfiles of a different name and then add those to the mp_stattable. All assets are already in game so you just need to know the names of the models, animations, sounds, and have all the stats for the gun to recreate the files.


ConvictioNDR:

Create a folder in your mod gamedata\loot. Put any csv file in that folder and rename it to mplootitems.csv.
Edit the csv and select all and delete everything. Add this single line to it.

a0,b1,c2,d3,e4,f5,g6
All guns will now be unlocked.


M5_Prodigy:

WOAH how the hell ? you're a fucking S rank modder.


M5_Prodigy:

After loading it up, i get "UI Error 91329" i can edit the preset classes just not my own weird enough.


M5_Prodigy:

In the console it says something about integer being at 24 despite the index waning something in 1-18.


ConvictioNDR:

I ran out of time to test it this morning. I will look into it further when I get the chance.


M5_Prodigy:

The calling card menu is also locked BUT as for why CAC is locked, i think it has something to do with the M14 line and the line for some unknown sniper called "mosin_sniper" being removed causing the lock for CAC sadly i ran out of time so i didn't get to test it.


ConvictioNDR:

I've just tested and I get no errors. My mod however is a fresh mod with only the mplootitems.csv as the only modified file.


M5_Prodigy:

Interesting,i decide just to unlock SOME of the guns and leave everything else unlocked, which worked i was able to mess with CAC like normal. Overall thank you for looking into this, in the end we did get our answer which worked.


Sample Text:

Sorry for late response! For some reason, I got no notification. Thank you guys for finding the solution! I had trouble with the attachments on custom weapons, but I'll just start a fresh mod like you said.