06.08.2018, 08:22
I try to update SC-RP gamemodes to r41 version
And i got this one i dont know how it work
But i try to fix the code below:
And i got this one error:
Can anyone explain or help please?
And i got this one i dont know how it work
PHP код:
for (new j = 0; j < 4; j ++)
{
format(str, 24, "rackWeapon%d", j + 1);
RackData[i][rackWeapons][j] = cache_get_field_int(i, str);
format(str, 24, "rackAmmo%d", j + 1);
RackData[i][rackAmmo][j] = cache_get_field_int(i, str);
}
PHP код:
for (new j = 0; j < 4; j ++)
{
format(str, 24, "rackWeapon%d", j + 1);
cache_get_value_int(i, str, RackData[i][rackWeapons][j]);
format(str, 24, "rackAmmo%d", j + 1);
cache_get_value_int(i, str, RackData[i][rackAmmo][j]);
}
PHP код:
error 035: argument type mismatch (argument 2)