‪Black Ops 3 Source Code Explorer  0.1
‪An script explorer for Black Ops 3 by ZeRoY
_statstable.gsh
Go to the documentation of this file.
1 #define STATS_TABLE_MAX_ITEMS 256
2 
3 #define STATS_TABLE_COL_NUMBERING 0 // unique unsigned int - general numbering of all items
4 #define STATS_TABLE_COL_GROUP 2 // string - item group name, "primary" "secondary" "inventory" "specialty" "grenades" "special grenades" "stow back" "stow side" "attachment"
5 #define STATS_TABLE_COL_NAME 3 // string - name of the item, "Extreme Conditioning"
6 #define STATS_TABLE_COL_REFERENCE 4 // string - reference string of the item, "m203" "svt40" "bulletdamage" "c4"
7 #define STATS_TABLE_COL_COUNT 5 // signed int - item count, if exists, -1 = has no count
8 #define STATS_TABLE_COL_IMAGE 6 // string - item's image file name
9 #define STATS_TABLE_COL_DESC 7 // long string - item's description
10 #define STATS_TABLE_COL_ATTACHMENTS 8 // long string - item's other string data, reserved
11 #define STATS_TABLE_COL_SORT_KEY 9 // signed int - item's other number data, used for attachment number representations
12 #define STATS_TABLE_COL_UNLOCK_LEVEL 10 // unsigned int - represents if item is unlocked by default
13 #define STATS_TABLE_COL_DEFAULT_CLASS 11 // signed int - item's other number data, used for primary weapon camo skin number representations
14 #define STATS_TABLE_COL_ALLOCATION 12 // signed int - allocation cost of the item
15 #define STATS_TABLE_COL_SLOT 13 // string - slot for the given item
16 #define STATS_TABLE_COL_MOMENTUM 16 // signed int - momentum cost
17 
18 #define ATTACHMENT_TABLE_COL_NUMBERING 0 //
19 #define ATTACHMENT_TABLE_COL_TYPE 1 //
20 #define ATTACHMENT_TABLE_COL_BOT_PROB 15 //
21