No, you have to use something like:
Code:
if(!yeey[2][SOME_CONSTANT][3][0])
{
// do my stuff
}
Also, arrays are free storage, but Pawn zeroes each cell automatically. This is a huge CPU hit, so you should avoid making arrays that large if you can do it other ways.
__________________