20.08.2009, 13:22
(752
: error 047: array sizes do not match, or destination array is too small
Check line 7528, you are trying to place a variable / string into a variable / string that is too small. E.G. Putting a 16 letter name into a 10 letter string.
(14352) : error 025: function heading differs from prototype
Your function has been declared differently to how you have written it on public YourFunction(Variables)
(16410) : error 021: symbol already defined: "HexToInt"
You have already done new HexToInt, don't "new" it again.
You have several instances of each of these types of errors, fix each of each and then repost your errors.
: error 047: array sizes do not match, or destination array is too smallCheck line 7528, you are trying to place a variable / string into a variable / string that is too small. E.G. Putting a 16 letter name into a 10 letter string.
(14352) : error 025: function heading differs from prototype
Your function has been declared differently to how you have written it on public YourFunction(Variables)
(16410) : error 021: symbol already defined: "HexToInt"
You have already done new HexToInt, don't "new" it again.
You have several instances of each of these types of errors, fix each of each and then repost your errors.

