Not sure if I got you right, your description is pretty weird..

Code:
Weapon *wp = &Weapons[4][2];
..
int myID = wp->Id;



Or do you actually want a pointer to only one row so you can do wp[secondIndexOnly] where wp is Weapons[firstIndex] ?
That would be:

Code:
Weapon *wp = Weapons[4];
..
int myID = wp[2].Id;


Last edited by Ch40zzC0d3r; 06/25/17 22:28.