22/01/2022 14:04
(22/01/2022 13:46)xbruno1000x Escreveu: Crie no LLAdmin:
Essa public servirá para pegar o valor da variável da FS dentro do seu Gamemode.Código:forward IsPlayerInJail(playerid);
public IsPlayerInJail(playerid)
{
if(PlayerInfo[playerid][Jailed] != 0) return true;
}
Nos comandos de teleporte do GM:
Isso irá conferir se o player está com a variável preso ativa na FS, e caso esteja irá retornar o erro.Código:if(CallRemoteFunction("IsPlayerInJail", playerid)) return SendClientMessage(playerid, -1, "Você está preso!");
Código PHP:
warning 209: function "IsPlayerInJail" should return a value