Hello all i am trying to add the block dimensions ( Size ) but i get some compile errors that i need help whit.
PHP Code:
/* Block dimensions */
new Float:gfBlockSizeMinForX[3] = {-4.0,-32.0,-32.0};
new Float:gfBlockSizeMaxForX[3] = { 4.0, 32.0, 32.0};
new Float:gfBlockSizeMinForY[3] = {-32.0,-4.0,-32.0};
new Float:gfBlockSizeMaxForY[3] = { 32.0, 4.0, 32.0};
new Float:gfBlockSizeMinForZ[3] = {-32.0,-32.0,-4.0};
new Float:gfBlockSizeMaxForZ[3] = { 32.0, 32.0, 4.0};
new Float:gfDefaultBlockAngles[3] = { 0.0, 0.0, 0.0 };
/* Normal Size of blocks */
new Float:gfBlockSizeMinForX_tv[3] = {-32.0,-32.0,-32.0};
new Float:gfBlockSizeMaxForX_tv[3] = { 32.0, 32.0, 32.0};
new Float:gfBlockSizeMinForY_tv[3] = {-32.0,-32.0,-32.0};
new Float:gfBlockSizeMaxForY_tv[3] = { 32.0, 32.0, 32.0};
new Float:gfBlockSizeMinForZ_tv[3] = {-32.0,-32.0,-32.0};
new Float:gfBlockSizeMaxForZ_tv[3] = { 32.0, 32.0, 32.0};
new Float:gfBlockSizeMinForX_kz[3] = {-14.0,-32.0,-32.0};
new Float:gfBlockSizeMaxForX_kz[3] = { 14.0, 32.0, 32.0};
new Float:gfBlockSizeMinForY_kz[3] = {-32.0,-14.0,-32.0};
new Float:gfBlockSizeMaxForY_kz[3] = { 32.0, 14.0, 32.0};
new Float:gfBlockSizeMinForZ_kz[3] = {-104.0,-104.0,-14.0};
new Float:gfBlockSizeMaxForZ_kz[3] = { 104.0, 104.0, 14.0};
/* Big Size of blocks */
new Float:gfBlockSizeMinForX2[3] = {-8.0,-64.0,-64.0};
new Float:gfBlockSizeMaxForX2[3] = { 8.0, 64.0, 64.0};
new Float:gfBlockSizeMinForY2[3] = {-64.0,-8.0,-64.0};
new Float:gfBlockSizeMaxForY2[3] = { 64.0, 8.0, 64.0};
new Float:gfBlockSizeMinForZ2[3] = {-64.0,-64.0,-8.0};
new Float:gfBlockSizeMaxForZ2[3] = { 64.0, 64.0, 8.0};
/* Small size of blocks */
new Float:gfBlockSizeMinForX4[3] = {-0.4,-3.2,-3.2};
new Float:gfBlockSizeMaxForX4[3] = { 0.4, 3.2, 3.2};
new Float:gfBlockSizeMinForY4[3] = {-3.2,-0.4,-3.2};
new Float:gfBlockSizeMaxForY4[3] = { 3.2, 0.4, 3.2};
new Float:gfBlockSizeMinForZ4[3] = {-3.2,-3.2,-0.4};
new Float:gfBlockSizeMaxForZ4[3] = { 3.2, 3.2, 0.4};
/* Big Size of blocks */
new Float:gfBlockSizeMinForX_small[3] = {-2.0,-16.0,-16.0};
new Float:gfBlockSizeMaxForX_small[3] = { 2.0, 16.0, 16.0};
and i got some errors i dont know why but i have to fix the sizes..
Code:
//AMXXPC compile.exe
// by the AMX Mod X Dev Team
//// SG_Bcm.sma
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForX2"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForX4"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForX_kz"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForX_small"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForX_tv"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForY2"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForY4"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForY_kz"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForY_tv"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForZ2"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForZ4"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForZ_kz"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMaxForZ_tv"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForX2"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForX4"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForX_kz"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForX_small"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForX_tv"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForY2"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForY4"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForY_kz"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForY_tv"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForZ2"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForZ4"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForZ_kz"
// C:\Program\Valve\HLServer\cstrike\addons\amxmodx\scripting\SG_Bcm.sma(4513) :
warning 203: symbol is never used: "gfBlockSizeMinForZ_tv"
// Header size: 3232 bytes
// Code size: 109896 bytes
// Data size: 105056 bytes
// Stack/heap size: 16384 bytes; max. usage is unknown, due to recursion
// Total requirements: 234568 bytes
//
// 26 Warnings.
// Done.
//
// Compilation Time: 2,03 sec
// ----------------------------------------
Press enter to exit ...
i need help quite fast it says error line 4513 but there is no line 4513
__________________