Код
new String:TextureName[5][32] = {
"effects/gunshipmuzzle.vmt",
"effects/yellowflare.vmt",
"effects/combineshield/comshieldwall.vmt",
"effects/combine_binocoverlay.vmt",
"effects/bluespark.vmt"};
new R = GetRandomInt(0, 4);
new String:Texture[40];
Format(Texture, sizeof(Texture), "%d", TextureName[R]);
PrintToChatAll("%d", TextureName[R]);
DispatchKeyValue(x, "Material", Texture);
В компиляторе выдаёт ошибку : error 018: initialization data exceeds declared size
Возможно ли данным кодом сделать рандомный подбор текстур?