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
11#define TAXISTA 0
15new Profissao[MAX_PLAYERS];
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}
enum pInfo
{
Profissao
}
new PlayerInfo[MAX_PLAYERS][pInfo];
public OnPlayerCommandText(playerid, cmdtext[])
if(strcmp(cmdtext,"/minhaprofissao", true) == 0)
{
if(PlayerInfo[playerid][Profissao] == TAXISTA)
{
SendClientMessage(playerid,cor_cinza,"Ola parabens voce й taxista e dirigi um taxi");
}
else
{
SendClientMessage(playerid,cor_cinza,"Vocк nгo й taxista e nгo pode usar este comando");
}
return 1;
}
C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamem odes\Untitled.pwn(95) : error 017: undefined symbol "TAXISTA" C:\Users\carlos\Desktop\samp037_svr_R1_win32\gamem odes\Untitled.pwn(106) : warning 209: function "OnPlayerCommandText" should return a value |
public OnPlayerCommandText(playerid, cmdtext[]) if(strcmp(cmdtext,"/minhaprofissao", true) == 0) { if(PlayerInfo[playerid][Profissao] == TAXISTA) { SendClientMessage(playerid,0xFFFF00FF,"Ola parabens voce й taxista e dirigi um taxi"); } else { SendClientMessage(playerid,0xFFFF00FF,"Vocк nгo й taxista e nгo pode usar este comando"); } return 1; } |
enum Infos {
Job
};
new Dados[MAX_PLAYERS][Infos];
#define Desempregado 0
#define Taxista 1
#define Policial 2
command(meu_emprego, playerid) {
if(Dados[playerid][Job] == Desempregado) SendClientMessage(playerid, -1, "[EMPREGO] Vocк nгo tem emprego!");
if(Dados[playerid][Job] == Taxista) SendClientMessage(playerid, -1, "[EMPREGO] Vocк й taxista.");
if(Dados[playerid][Job] == Policial) SendClientMessage(playerid, color, "[EMPREGO] Vocк й um policial.");
return 1;
}
#define TAXISTA 1
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext,"/minhaprofissao", true) == 0)
{
if(PlayerInfo[playerid][Profissao] == TAXISTA)
{
SendClientMessage(playerid,0xFFFF00FF,"Ola parabens voce й taxista e dirigi um taxi");
}
else
{
SendClientMessage(playerid,0xFFFF00FF,"Vocк nгo й taxista e nгo pode usar este comando");
}
}
return 1;
}