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



comando 191 - shirouz - 01.03.2019

Galera, fiz esse cmd aqui mas eu to querendo saber como que faz para o limite para escrever e aparecer aumentar, por exemplo nesse print ai й basicamente o "limite" eu queria aumentar mais...
PHP код:
if(strcmp(cmd, "/191", true) == 0)
    {
        new 
texto[128];
        if(
sscanf(cmdtext, "s[5]s[128]", cmd, texto))
        {
            
SendClientMessage(playerid, Vermelho, "[ERRO]: {FFFFFF}Digite: /191 [local]");
        }
        else
        {
            for(new 
i = 0; i < MAX_PLAYERS; i++)
            {
                if(
IsPlayerConnected(i))
                {
                    
format(file, sizeof(file), PASTA_CONTAS, GetPlayerNameEx(i));
                    if(
dini_Int(file, "Profissao") == Paramedico || dini_Int(file, "Profissao") == Guarda || dini_Int(file, "Profissao") == Policial_R  || dini_Int(file, "Profissao") == Policial_M || dini_Int(file, "Profissao") == Policial_C ||
                    
dini_Int(file, "Profissao") == Policial_F || dini_Int(file, "Profissao") == Delegado || dini_Int(file, "Profissao") == Bope || dini_Int(file, "Profissao") == Swat || dini_Int(file, "Profissao") == Narcoticos || dini_Int(file, "aAdmin") == 1 || PlayerInfo[playerid][SCON] == true)
                    {
                        
format(string, sizeof(string), "[EMERGКNCIA]: {FF0000}%s {FFFFFF}estб pedindo ajuda (») Local: {00FF00}%s {FFFFFF}(») atenda-o rбpido!", GetPlayerNameEx(playerid), texto);
                        
SendClientMessageToAll(Verde, string);
                    }
                }
            }
            
SendClientMessage(playerid, Vermelho, "[EMERGКNCIA]: {FFFFFF}A ajuda estб a caminho.");
        }
        return 
1;} 



Re: comando 191 - RenanMsV - 01.03.2019

O limite й 144 caracteres. Terб que dividir a mensagem em partes.


Re: comando 191 - shirouz - 01.03.2019

nгo tem nenhum mйtodo para aumentar ou sу dividindo?


Re: comando 191 - ipsLuan - 01.03.2019

PHP код:
if(sscanf(cmdtext, "s[128]", texto)) 
{ 
    
SendClientMessage(playerid, Vermelho, "[ERRO]: {FFFFFF}Digite: /191 [local]"); 
} 
Substitua por esse e tente.