[AJUDA] alguem pode me ajudar? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] alguem pode me ajudar? (
/showthread.php?tid=335604)
[AJUDA] alguem pode me ajudar? -
Tiu_DaColombia - 19.04.2012
Olб galera eu queria uma ajuda, tipo quando o player estiver no aluguel de carros ele nгo poderia digita nenhum comando a nгo ser o ''/alugarcarro'' e o ''/sair'' se alguйm pode me ajuda agradeзo muito dou + reputaзгo...
Atй.
Re: [AJUDA] alguem pode me ajudar? -
Lуs - 19.04.2012
No aluguel de carros? Como assim?
Re: [AJUDA] alguem pode me ajudar? -
Tiu_DaColombia - 19.04.2012
Quando alguem esTiver no aluguel de carro nao digita nenhum
CMD a nao ser SAIR OU ALUGARCARRO ENTENDEU?
Re: [AJUDA] alguem pode me ajudar? -
zbt - 19.04.2012
pawn Код:
new bool:b[MAX_PLAYERS]; //topo
//quando estiver no veiculo de aluguel
b[playerid] = true;
//quando nгo estiver
b[playerid] = false;
//add no comeзo do onplayercommandText
public OnPlayerCommandText(playerid,cmdtext[]) {
if(b[playerid] && strcmp(cmdtext, "/alugarcarro", false) && strcmp(cmdtext, "/sair", false))
return SendClientMessage(playerid, -1, "Comandos bloqueados, use apenas /alugarcarro, /sair!");
//resto..
Re: [AJUDA] alguem pode me ajudar? -
BreakDriFT - 19.04.2012
Topo:
pawn Код:
new BreakBlock[MAX_PLAYERS];
No Comando que voce quiser bloquear:
pawn Код:
BreakBlock[playerid] = 1;
Para Liberar:
pawn Код:
BreakBlock[playerid] = 0;
1 = true .
0 = false .
Um Exemplo Basic : Atй de Mais.
pawn Код:
if (strcmp(cmdtext, "/blabla", true) == 0)
{
if(BreakBlock[playerid] == true)
{
SendClientMessage(playerid, -1,"COmandos block");
}
else
{
SendClientMessage(playerid,-1,"Voce Nгo esta com comandos block");
}
return 1;
}
pawn Код:
BreakBlock[playerid] = 1; // Para dar block.
BreakBlock[playerid] = 0; // Para Desbloquear.