31.05.2015, 00:15
TO Tentado criar uma profissao e fica dando esses erros como arrumar
erros
linhas
obs: os numero foi eu q botei para vcs vк nгo esta no pawno
erros
PHP код:
C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamemodes\Untitled.pwn(86) : error 017: undefined symbol "Profissao"
C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamemodes\Untitled.pwn(86) : warning 215: expression has no effect
C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamemodes\Untitled.pwn(86) : error 001: expected token: ";", but found "]"
C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamemodes\Untitled.pwn(86) : error 029: invalid expression, assumed zero
C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamemodes\Untitled.pwn(86) : fatal error 107: too many error messages on one line
PHP код:
11#define TAXISTA 0
15new Profissao[MAX_PLAYERS];
PHP код:
84if(strcmp(cmdtext,"/minhaprofissao", true) == 0)
85{
86if(Profissao[playerid] == TAXISTA)
87{
88SendClientMessage(playerid,cor_cinza,"Ola parabens voce й taxista e dirigi um taxi");
89}
90else
91{
92SendClientMessage(playerid,cor_cinza,"Vocк nгo й taxista e nгo pode usar este comando");
93}
94return 1;
95}