case 0:
{
GetPlayerScore(playerid);
if(GetPlayerScore(playerid) >= 900)
{
PlayerProf[playerid] = Corregedoria;
SendClientMessage(playerid, LARANJA, "| INFO | Vocк trocou de profissгo, sua nova profissгo й: Corregedoria!");
EntarProf(playerid); // ----- ESSA Й UMA DAS LINHAS QUE DA ESSE ERRO
}
else
{
SendClientMessage(playerid, VERMELHO, "| ERRO | Vocк nгo tem level suficiente para pegar essa profissгo!");
}
}
C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(241) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(251) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(265) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(279) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(293) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(307) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(321) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(335) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(349) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(363) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(377) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(391) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(405) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(419) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(433) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(447) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(461) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(484) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(498) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(512) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(526) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(540) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(554) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(568) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(582) : error 017: undefined symbol "EntarProf" C:\Users\Fernando\Desktop\Construindo\filterscripts\profis.pwn(596) : error 017: undefined symbol "EntarProf" Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors.
public PlayerProf(playerid) { if(PlayerProf[playerid] == Desempregado) { SendClientMessage(playerid,C_DESEMPREGADO,"----------------- Desempregado -----------------"); SendClientMessage(playerid,C_DESEMPREGADO,"- Para ver os comandos da sua profissгo digite:"); SendClientMessage(playerid,C_DESEMPREGADO,"- /profissao"); SendClientMessage(playerid,C_DESEMPREGADO,"- Seu salбrio vai ser de: {00A700}R$ 250"); SendClientMessage(playerid,C_DESEMPREGADO,"----------------- Desempregado -----------------"); SetPlayerColor(playerid, C_DESEMPREGADO); return true; } else if(PlayerProf[playerid] == Gari) { SendClientMessage(playerid,C_GARI,"-------------------- Gari --------------------"); SendClientMessage(playerid,C_GARI,"- Para ver os comandos da sua profissгo digite:"); SendClientMessage(playerid,C_GARI,"- /profissao"); SendClientMessage(playerid,C_GARI,"- Seu salбrio vai ser de: {00A700}R$ 600"); SendClientMessage(playerid,C_GARI,"-------------------- Gari --------------------"); SetPlayerColor(playerid, C_GARI); return true; } return 1; }
Estб callback que vocк mostrou se chama PlayerProf, a callback que nгo existe se chama EntarProf.
|
public EntrarProf(playerid) { if(PlayerProf[playerid] == Desempregado) { SendClientMessage(playerid,C_DESEMPREGADO,"----------------- Desempregado -----------------"); SendClientMessage(playerid,C_DESEMPREGADO,"- Para ver os comandos da sua profissгo digite:"); SendClientMessage(playerid,C_DESEMPREGADO,"- /profissao"); SendClientMessage(playerid,C_DESEMPREGADO,"- Seu salбrio vai ser de: {00A700}R$ 250"); SendClientMessage(playerid,C_DESEMPREGADO,"----------------- Desempregado -----------------"); SetPlayerColor(playerid, C_DESEMPREGADO); return true; } else if(PlayerProf[playerid] == Gari) { SendClientMessage(playerid,C_GARI,"-------------------- Gari --------------------"); SendClientMessage(playerid,C_GARI,"- Para ver os comandos da sua profissгo digite:"); SendClientMessage(playerid,C_GARI,"- /profissao"); SendClientMessage(playerid,C_GARI,"- Seu salбrio vai ser de: {00A700}R$ 600"); SendClientMessage(playerid,C_GARI,"-------------------- Gari --------------------"); SetPlayerColor(playerid, C_GARI); return true; } return 1; }