18/01/2022 22:54
(18/01/2022 22:16)xbruno1000x Escreveu:(18/01/2022 21:17)fear Escreveu:(18/01/2022 20:08)xbruno1000x Escreveu:Não tem nem no gamemode e não no fs eu estou usando o fs lladmin coloquei o codigo e fui compilar deu esses warnings.. mas procurei não tem public OnPlayerCommandReceived nem no gamemode e nem no fs(18/01/2022 18:49)fear Escreveu:(16/01/2022 20:46)xbruno1000x Escreveu:Código:public OnPlayerCommandReceived(playerid, cmd[], params[], flags)
{
if(PlayerInfo[playerid][Jailed] != 0)
return SendClientMessage(playerid, -1, "ERRO: Você está preso!"), 0;
}
Código PHP:warning 235: public function lacks forward declaration (symbol "OnPlayerCommandReceived")
warning 209: function "OnPlayerCommandReceived" should return a value
deu isso ai.
Você já tem essa public no seu GM... basta inserir os códigos na public já existente.
Eu mandei os parâmetros incorretos, mandei os do Pawn.CMD. Teste dessa forma.Código:OnPlayerCommandReceived(playerid, cmdtext[])
Além disso, adicione return 1; no final da public.
Fiz e ainda deu esse warning..
codigo:
Código PHP:
public OnPlayerCommandReceived(playerid, cmdtext[])
{
if(PlayerInfo[playerid][Jailed] != 0) return SendClientMessage(playerid, -1, "ERRO: Você está preso!"), 0;
return 1;
}
warning:
Código PHP:
warning 235: public function lacks forward declaration (symbol "OnPlayerCommandReceived")
linha:
Código PHP:
public OnPlayerCommandReceived(playerid, cmdtext[])