[Pedido] Comando
#1

RESOLVIDO
Reply
#2

pawn Код:
if(strcmp(cmd, "/gritar", true) == 0 || strcmp(cmd, "/g", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, " Vocк nгo fez o Loggin !");
                return 1;
            }
            if(PlayerInfo[playerid][pMuted] == 1)
            {
                SendClientMessage(playerid, COLOR_RED, "|-Vocк foi mutado por um admin, nгo pode falar-|");
                return 1;
            }
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[64];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: (/g)ritar [local chat]");
                return 1;
            }

            format(string, sizeof(string), "%s Berra: %s!!", sendername, result);
            FicarRoco[playerid]++;
            ProxDetector(30.0, playerid, string,COLOR_WHITE,COLOR_WHITE,COLOR_WHITE,COLOR_FADE1,COLOR_FADE2);
            printf("[chat] [grito] [%s] %s", sendername, result);
        }
        return 1;
    }
Espero ter ajudado .
Reply
#3

RESOLVIDO
Reply
#4

PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
    new 
cmd[256], idx;
    
cmd strtok(cmdtextidx);
    if(
strcmp(cmd"/gritar"true) == 0)
    {
        new 
n[24], str[128];
        
GetPlayerName(playeridn24);
        new 
length strlen(cmdtext);
        while ((
idx length) && (cmdtext[idx] <= ' '))
        {
            
idx++;
        }
        new 
offset idx;
        new 
result[64];
        while ((
idx length) && ((idx offset) < (sizeof(result) - 1)))
        {
            
result[idx offset] = cmdtext[idx];
            
idx++;
        }
        
result[idx offset] = EOS;
        if(!
strlen(result)) return SendClientMessage(playerid0xFFFFFFFF"USO: /gritar [texto]");
        
format(strsizeof(str), "%s grita: %s !"nresult);
        
ProxDetector(35.0playeridstr,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF);
        return 
1;
    }
    return 
0;

Reply
#5

PHP код:
new gPlayerLogged[MAX_PLAYERS]; // Topo do GM. 
Reply
#6

RESOLVIDO
Reply
#7

Quote:
Originally Posted by Shickcard
Посмотреть сообщение
PHP код:
new gPlayerLogged[MAX_PLAYERS]; // Topo do GM. 
Alйm dessa nova array deveria colocar isto aqui tambйm:

PHP код:
enum a 

    
pMuted 
}
new 
PlayerInfo[MAX_PLAYERS][a];
new 
FicarRoco[MAX_PLAYERS]; 
Entгo o melhor a ser usado seria o codigo que eu postei.

#EDIT

Tymer, poe isto no final do seu GM:

PHP код:
public ProxDetector(Float:radiplayeridstring[],col1,col2,col3,col4,col5)
{
    if(
IsPlayerConnected(playerid))
    {
        new 
Float:posxFloat:posyFloat:posz;
        new 
Float:oldposxFloat:oldposyFloat:oldposz;
        new 
Float:tempposxFloat:tempposyFloat:tempposz;
        
GetPlayerPos(playeridoldposxoldposyoldposz);
        for(new 
0MAX_PLAYERSi++)
        {
            if(
IsPlayerConnected(i))
            {
                
GetPlayerPos(iposxposyposz);
                
tempposx = (oldposx -posx);
                
tempposy = (oldposy -posy);
                
tempposz = (oldposz -posz);
                if (((
tempposx radi/16) && (tempposx > -radi/16)) && ((tempposy radi/16) && (tempposy > -radi/16)) && ((tempposz radi/16) && (tempposz > -radi/16)))
                {
                    
SendClientMessage(icol1string);
                }
                else if (((
tempposx radi/8) && (tempposx > -radi/8)) && ((tempposy radi/8) && (tempposy > -radi/8)) && ((tempposz radi/8) && (tempposz > -radi/8)))
                {
                    
SendClientMessage(icol2string);
                }
                else if (((
tempposx radi/4) && (tempposx > -radi/4)) && ((tempposy radi/4) && (tempposy > -radi/4)) && ((tempposz radi/4) && (tempposz > -radi/4)))
                {
                    
SendClientMessage(icol3string);
                }
                else if (((
tempposx radi/2) && (tempposx > -radi/2)) && ((tempposy radi/2) && (tempposy > -radi/2)) && ((tempposz radi/2) && (tempposz > -radi/2)))
                {
                    
SendClientMessage(icol4string);
                }
                else if (((
tempposx radi) && (tempposx > -radi)) && ((tempposy radi) && (tempposy > -radi)) && ((tempposz radi) && (tempposz > -radi)))
                {
                    
SendClientMessage(icol5string);
                }
            }
        }
    }
//not connected
    
return 1;

Reply
#8

RESOLVIDO
Reply
#9

Usa o do Shadow.
Reply
#10

RESOLVIDO
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)