27.09.2015, 01:44
Quote:
but not |
You can do that if the arrays have the same size
For example:
PHP код:
#include <a_samp>
enum e {
str[32]
};
new test[2][e];
main() {
new tmp[32],st[32] = "Hallo";
test[0][str] = st;
tmp = test[0][str];
}
Greekz