Hi, im using this -
http://forums.alliedmods.net/showthr...ht=blocks.amxx blockmaker. And i tried to add more models.
Code:
new const models[TY_MAX][] = {
"models/HNS/bhop.mdl",
"models/HNS/boost.mdl",
"models/HNS/death.mdl",
"models/HNS/heal.mdl",
"models/HNS/nofalldamage.mdl",
"models/HNS/he.mdl",
"models/HNS/honey.mdl",
"models/HNS/frost.mdl",
"models/HNS/platform.mdl",
"models/HNS/awp.mdl",
"models/HNS/deagle.mdl",
"models/HNS/ct_barrier.mdl",
"models/pac_cube.mdl",
"models/chick.mdl",
"models/wall_n.mdl"
};
But i got error.
Code:
initialized data exceeds declared size.
I think i need to edit this:
Code:
new const Float:sizes[TY_MAX][2][3] = {
{{-32.0, -32.0, -4.0}, {32.0, 32.0, 4.0}},
{{-8.0, -8.0, -8.0}, {8.0, 8.0, 8.0}},
{{-8.0, -8.0, -8.0}, {8.0, 8.0, 8.0}},
{{-88.0, -6.0, -19.0}, {88.0, 6.0, 169.0}}
};
Need help. (Im new on scripting)