What's the difference between this:
PHP Code:
new a[32];
public some_func()
{
a[id] = create_entity("info_target");
}
And this:
PHP Code:
new a[32][1];
public some_func()
{
a[id][0] = create_entity("info_target");
}
Could you explain it to me?
NOTE: It should be noted that from where I see it, there is no difference, but I may be wrong...