21.06.2015, 08:46
Can anyone help with this?
(7806) : error 079: inconsistent return types (array & non-array)
(782
: error 035: argument type mismatch (argument 1)
(7806) : error 079: inconsistent return types (array & non-array)
Код:
stock PickupGun(weaponid)
{
if (weaponid < 0 || weaponid > 64)
{
return 0;
}
return GunObjects[weaponid];
}
: error 035: argument type mismatch (argument 1)Код:
GunObject[i] = CreateDynamicObject(PickupGun(weaponid), X, Y, Z-1, 80.0, 0.0, 0.0, VirtualWorld);

