SA-MP Forums Archive
[Ajuda] /mp - 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] /mp (/showthread.php?tid=204795)



[Ajuda] /mp - gabriel_ - 30.12.2010

Eae Galera, queria um sistema de /mp para por no meu GM, por favor me ajuda. Tipo queria um sistema que desse para falar por /mp com qualquer player Ex: Mandar MP para player. (Queria um que qualquer player pode mandar e nгo sу admin, meu server й de DM/TDM).
fiz um sistema de /mp mais aparece algun erros.
Por favor me ajudem '-'.


Re: [Ajuda] /mp - Ricop522 - 30.12.2010

https://sampforum.blast.hk/showthread.php?tid=204795

Tб ae. =D


Re: [Ajuda] /mp - Ricop522 - 30.12.2010

(OPS DOUBLE POST SEM QUERER, APAGA AE :X )


Re: [Ajuda] /mp - vinewood - 30.12.2010

Posta os erros e o cуdigo defeituoso.


Re: [Ajuda] /mp - gabriel_ - 30.12.2010

Aparece que с achou algum resultado...


Re: [Ajuda] /mp - vinewood - 30.12.2010

Vc tem que usar termos de pesquisa em english de preferкncia. MP = Mensagem Player? se sim procure por /pm.


Re: [Ajuda] /mp - CyNiC - 30.12.2010

https://sampforum.blast.hk/showthread.php?tid=152328


Re: [Ajuda] /mp - gabriel_ - 30.12.2010

Nгo tem resultados.. nenhum resultado encontrado... vocкs n tem um ae para passar ?

@Edit
estou traduzindo essa MP que vocк me passo, se tiver mais alguem ae que tenha algum sistema me passa ae pls '-'


Re: [Ajuda] /mp - zSuYaNw - 30.12.2010

o do cynic й muito bom, recomendo..


Re: [Ajuda] /mp - TiagoPS - 30.12.2010

Sistema simples de PM que eu mesmo fiz

/pm [ID] [Texto]

pawn Код:
if(strcmp(cmd, "/pm", true) == 0)
{
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
        return SendClientMessage(playerid, 0xFF0000AA, "USO: /pm [ID] [Texto]");
    }
    new ID;
    ID = strval(tmp);
    if(!strlen(tmp))
    {
    return SendClientMessage(playerid, 0xFF0000AA, "USO: /pm [ID] [Texto]");
    }
    new Nome[MAX_PLAYER_NAME];
    new String[128];
    GetPlayerName(playerid, Nome, sizeof(Nome));
    format(String, sizeof(String), "PM De %s: %s",Nome, cmdtext[6]);
    SendClientMessage(ID,0xFFFF00AA,String);
    return 1;
}