[Help]Changing data in a array in a enumerator?
#2

You can't have 3 dimensional arrays.
You will have to do this like this
pawn Код:
enum Test
{    
    MyArray0,
    MyArray1,
    MyArray2,
    MyArray3,
    MyArray4,
};
new MyTest[20][Test];

main()
{    
    MyTest[0][MyArray3] = 2;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)