15.07.2012, 19:21
Source: http://forum.sa-mp.com/showpost.php?...17&postcount=7
I use this.
And i get this Error.
(in "tolower" string)
pawn Code:
#define tolower(%0) \
(((%0) >= 'A' && (%0) <= 'Z') ? ((%0) | 0x20) : (%0))
pawn Code:
new option[30];
format(option, sizeof option, "TeSt");"
format(option, sizeof option, tolower(option));
Code:
error 033: array must be indexed (variable "option")