Boa noite !
Gostaria de ajuda de vocкs para poder criar um comando que faz com que retire as mensagens de teleportes e as ative com o mesmo. |
new bool:Comandos = true;
//Comando de teleporte
if(Comando)
//Exibe mensagem
//Comando para habilidar/desabilitar mensagens
if(Comando)
Comando = false;
else
Comando = true;
new bool:G_TELEPORT_MSG;
public OnGameModeInit()
{
G_TELEPORT_MSG = true;
return 1;
}
CMD:teleport(playerid, params[])
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Vocк nгo й administrador!");
if(!G_TELEPORT_MSG)
{
G_TELEPORT_MSG = true;
SendClientMessage(playerid, -1, "Mensagens de teleports ativadas!");
return 1;
}
else
{
G_TELEPORT_MSG = false;
SendClientMessage(playerid, -1, "Mensagens de teleports desativadas!");
return 1;
}
return 1;
}
CMD:ls(playerid, params[])//exemplo
{
//Funзхes
if(G_TELEPORT_MSG)
{
new L_N[MAX_PLAYER_NAME]; GetPlayerName(playerid, L_N, MAX_PLAYER_NAME);
new L_S[128]; format(L_S, 128, "O jogador %s foi para Los Santos (/ls)", L_N);
SendClientMessage(playerid, -1, L_S);
return 1;
}
return 1;
}