Aspire

Known Member
Messages
31
Reaction score
14
Points
118
I've seen the list of weapons in bo3 and i really can't tell what is what...
If someone has all the mp weapons and their ingame names please send them to me
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
5,000
Reaction score
2,920
Points
1,103
I've seen the list of weapons in bo3 and i really can't tell what is what...
If someone has all the mp weapons and their ingame names please send them to me
You can get the weapon name from the game, with displayName:

Code:
function testfunction()
{
    string = "smg_standard";
    weapon = getWeapon(string);
    displayName = weapon.displayName;
    self iprintln(displayName);
}

It will return the STRING from the weapon.

You can find a full weapons here:
Answered - weapons and sounds | CabConModding
 
Top