Modme Forums
Menu:

Remove gun from mystery box

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


Pepergogo:

I have a gun and I just want to remove from the mystery box:

scavenger,scavenger_upgraded,,5000,launcher,,,,,true,false,true,1,,false,true,special,true,,

I know some of this need to be false, but I don't know what option xD


Dedrix:

The very first true there has to do with whether or not it's in the box. So make that :
scavenger,scavenger_upgraded,,5000,launcher,,,,,false,false,true,1,,false,true,special,true,,


Pepergogo:

The very first true there has to do with whether or not it's in the box. So make that :
scavenger,scavenger_upgraded,,5000,launcher,,,,,false,false,true,1,,false,true,special,true,,

Thanks! 😎


Sir-Tanks-Alot:

You probably know this, but I will put it here for completeness and additional info for others, if that's OK with you. :)

Add this:

weapon_name,upgrade_name,hint,cost,weaponVO,weaponVOresp,ammo_cost,create_vox,obsolete_false,in_box,upgrade_in_box,is_limited,limit,upgrade_limit,obsolete2_false,wallbuy_autospawn,class,is_aat_exempt,is_wonder_weapon,force_attachments

as the very first line in your
zm_levelcommon_weapons.csv
file. Then use a spreadsheet editor (like Microsoft Excel or OpenOffice Calc) to edit it, as it is just a Comma Separated Value (.csv) file. That's way easier than a text editor, and you can see what each column is.


Pepergogo:

Sure

You probably know this, but I will put it here for completeness and additional info for others, if that's OK with you. :)

Add this:
weapon_name,upgrade_name,hint,cost,weaponVO,weaponVOresp,ammo_cost,create_vox,obsolete_false,in_box,upgrade_in_box,is_limited,limit,upgrade_limit,obsolete2_false,wallbuy_autospawn,class,is_aat_exempt,is_wonder_weapon,force_attachments

as the very first line in your
zm_levelcommon_weapons.csv
file. Then use a spreadsheet editor (like Microsoft Excel or OpenOffice Calc) to edit it, as it is just a Comma Separated Value (.csv) file. That's way easier than a text editor, and you can see what each column is.

Sure, np
That's super useful actually xD
Thanks