07.10.2010, 08:09
Hi.
I would like to give an array value for an array.
Its work with integer, but with float, not.
E.g:
But with Float no, why?
Thanx for the help
I would like to give an array value for an array.
Its work with integer, but with float, not.
E.g:
Код:
#include <a_samp>
new test[20][20][2];
public OnGameModeInit()
{
test[0][0] = {12, 51};
return 1;
}
Код:
\debug.pwn(7) : warning 213: tag mismatch
Код:
#include <a_samp>
new Float:test[20][20][2];
public OnGameModeInit()
{
test[0][0] = {12.25, 51.69};
return 1;
}


