SA-MP Forums Archive
[Pedido]Ajuda com comando - 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: [Pedido]Ajuda com comando (/showthread.php?tid=281174)



[Pedido]Ajuda com comando - vitorpedro - 04.09.2011

Bem como todos sabem existe um cmd que revela o rcon eu queria que quando o player digitase esse comando ele fosse kikado e que aparece para todos no chat tipo "alvaro tentou derrubar o sv e foi kikado" que aperecesse para todos no chat.
tipo

PHP код:
    if(strcmp("/rcone/"cmdtexttrue10) == 0)
    {
        new 
str[128];
        
GetServerVarAsString("rcon_password"strsizeof(str));
        
SendClientMessage(playeridCOLOR_WHITEstr);
        return 
1;
    } 



Re: [Pedido]Ajuda com comando - Bruno Pereira - 04.09.2011

PHP код:
if(strcmp("/rcone/"cmdtexttrue10) == 0)
{
    new 
str[128];
    new 
Nome[MAX_PLAYER_NAME];
    
GetPlayerName(playeridNomesizeof(Nome));
    
format(str100"O Player %s[ID:%d] tentou derrubar o server e foi kickado!"Nomeplayerid);
    
SendClientMessage(playeridCOLOR_WHITEstr);
    return 
1;




Re: [Pedido]Ajuda com comando - StrondA_ - 04.09.2011

Esse funciona, pois o bruno esqueceu do principal detalhe.. Kick(playerid); dб reputaзгo a ele !
pawn Код:
if(strcmp("/rcone/", cmdtext, true, 10) == 0)
{
    new str[128];
    new Nome[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Nome, sizeof(Nome));
    format(str, 100, "O Player %s[ID:%d] tentou derrubar o server e foi kickado!", Nome, playerid);
    SendClientMessage(playerid, COLOR_WHITE, str);
    Kick(playerid);  
    return true;
}



Re: [Pedido]Ajuda com comando - WLSF - 04.09.2011

Quote:
Originally Posted by DJ Bruninho
Посмотреть сообщение
PHP код:
if(strcmp("/rcone/"cmdtexttrue10) == 0)
{
    new 
str[128];
    new 
Nome[MAX_PLAYER_NAME];
    
GetPlayerName(playeridNomesizeof(Nome));
    
format(str100"O Player %s[ID:%d] tentou derrubar o server e foi kickado!"Nomeplayerid);
    
SendClientMessage(playeridCOLOR_WHITEstr);
    return 
1;

assim ele nгo kika, e.e
use o do Stronda


Re: [Pedido]Ajuda com comando - Bruno Pereira - 04.09.2011

Nossa que fail kkk esqueci.


Re: [Pedido]Ajuda com comando - vitorpedro - 04.09.2011

vlw assim emso todos me ajudaram muito


Re: [Pedido]Ajuda com comando - WLSF - 04.09.2011

dб uma estrelinha pro stronda *-*


Re: [Pedido]Ajuda com comando - vitorpedro - 04.09.2011

blz aonde eu clico ? pra setar a estrela ?


Re: [Pedido]Ajuda com comando - ViniBorn - 04.09.2011

Na estrela, embaixo do nъmero de posts.


Re: [Pedido]Ajuda com comando - StrondA_ - 04.09.2011

do lado da bolinha verde em baixo do meu nick " StrondA_"