10.04.2017, 12:35
Those errors means that pawn cant read the code correctly because of a shitty placement of the code.
another example goes
PHP код:
SendClientMessage(...)
SendClientMessage (...)//wrong
PHP код:
SendClientMessage (...)
SendClientMessage (...)//correct
PHP код:
MyFunction(...)
SendClientMessage (...)
MySecondFunction(...)//wrong
return true;
PHP код:
MyFunction(...)
SendClientMessage (...)
MySecondFunction(...)//correct
return true;