04.01.2013, 19:36
I applied the patches and the errors I had before are gone,
but unfortunately the patches kinda broke something else in the compiler.
It can't handle arrays of strings anymore.
Let me show you an example:
The above code produces the following error now:
I get tons of these errors, the compiler is always complaining about
the last element of a array of string.
but unfortunately the patches kinda broke something else in the compiler.
It can't handle arrays of strings anymore.
Let me show you an example:
PHP код:
26 new afkCardColorName[][] = {
27 "Herz",
28 "Karo",
29 "Kreuz",
30 "Pik"
31 }
Код:
include/afk/afk_main.inc(30) : error 037: invalid string (possibly non-terminated string)
the last element of a array of string.