21.09.2018, 14:52
I'm having a problem
I get a return value of 1 (Sizeof Skin: 1) while sizeof must be 19 (Sizeof Skin: 19)
Код:
new Skin[] =
{
1, 2, 4, 8, 9, 10, 11, 60, 91,
92, 93, 94, 95, 96, 97, 98, 99,
138, 140
};
CMD:checksizeof(playerid, params[])
{
new string[128];
format(string, sizeof(string), "Sizeof Skin: %d", sizeof(Skin[]));
SendClientMessage(playerid, -1, string);
return 1;
}

