Fala ?? com a boca no SA-MP Tipo voz de comando ?
OU por cmd mesmo ? |
Isso e uma pergunta meio esquisito mais estou me referindo a CMD /// .-.
|
Mais voce que um sistema de portao ??
que so uma pessoa especifica pode abrir ? se for ......... https://sampforum.blast.hk/showthread.php?tid=418207 |
Tipo que n curto muito esses sistema queria mesmo com comando tipo que nesses futuro tempo tbm quero criar comando que so funfa com um player espesifico...
|
if ( strcmp ( cmdtext,"/abrirportao", true ) == 0 )
{
new Nome [ MAX_PLAYER_NAME ] ;
GetPlayerName ( playerid, Nome, MAX_PLAYER_NAME ) ;
if ( strcmp ( Nome, "NickPlayer", true) == 0 )
{
// Funзao
SendClientMessage ( playerid , -1, "[ > ] Abrindo o Portгo." ) ;
return 1;
}
else
{
SendClientMessage ( playerid , -1," x =========== Gays nao podem abrir esse portao! ========== x " ) ;
}
return 1;
}
if (strcmp(cmdtext,"/abrirportao", true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(strcmp(aname, "Samuel_Quintal", true) == 0){
MoveObject(pdf,321.2999900,-1188.4000200, 72, 4.0); // Coloque as cordenas do seu portгo fechado
SendClientMessage(playerid,0xFFFFFFAA, "[PORTEIRO] Bem vindo a sua casa Samuel_Quintal!");
GameTextForPlayer(playerid, "~w~Portao ~g~Aberto!", 6000, 1);
return 1;
} else {
SendClientMessage(playerid,Vermelho,"[ERRO] Vocк nгo й o Samuel_Quintal!");
}
return 1;
}
if (strcmp(cmdtext,"/fecharportao", true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(strcmp(aname, "Samuel_Quintal", true) == 0){
MoveObject(pdf,321.2999900,-1188.4000200, 78, 4.0); // Coloque as cordenas do seu portгo aberto
SendClientMessage(playerid,0xFFFFFFAA, "[PORTEIRO] Sua casa estб sendo fechada casa estб sendo fechada Samuel_Quintal!");
GameTextForPlayer(playerid, "~w~Portao ~r~Fechado!", 6000, 1);
return 1;
} else {
SendClientMessage(playerid,Vermelho,"[ERRO] Vocк nгo й o Samuel_Quintal!");
}
return 1;
}