15.06.2014, 16:46
(
Последний раз редактировалось DrakeX; 16.06.2014 в 04:29.
)
Thank you for that ******. It worked, however I found another compiler bug. I guess I'll send a message to Zeex about it. If you've got the code I posted above (second callback), it will still produce the error, and I found out that it is caused by declaring this:
Having (a multi-dimensional variable I think it's called) will cause the error to happen. I suppose I could fix this by using:
instead.
(EDIT): Changing:
to
Will fix the compiling issue.
Код:
value[2][64]
Код:
value1[64], value2[64]
(EDIT): Changing:
pawn Код:
new DB:database, DBResult:result[2], dialog[1650], string[128], value[2][64], placeholder[3], target, time;
pawn Код:
new value[2][64], DB:database, DBResult:result[2], dialog[1650], string[128], placeholder[3], target, time;