17.02.2015, 20:42
Quote:
error 001: expected token: ";", but found "}" |
__________________________________________________ _________________________________________
Quote:
error 017: undefined symbol "playerid" |
pawn Код:
SendClientMessage(playerid, YELLOW, string);
pawn Код:
ChangeBizInfo(bizid,bizname[])
__________________________________________________ _________________________________________
Quote:
error 017: undefined symbol "BizLabel" |
You didn't define "BizLabel" anywhere, example:
pawn Код:
BizLabel[bizid] = Create3DTextLabel( ... );
Quote:
warning 219: local variable "bizid" shadows a variable at a preceding level warning 219: local variable "bizname" shadows a variable at a preceding level |
pawn Код:
ChangeBizInfo(bizid,bizname[])
You should only use them in your function parameters, delete the global ones.