SA-MP Forums Archive
[Ajuda] Tempo no comando, ajuda? - 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] Tempo no comando, ajuda? (/showthread.php?tid=583389)



Tempo no comando, ajuda? - jefrens - 28.07.2015

Queria colocar para o player usar esse comando apenas de 10 em 10 segundos, mas nгo estou conseguindo, alguйm me ajuda?

PHP код:
     if(strcmp(cmd"/localizar"true) == 0)
    {
        
tmp strtok(cmdtextidx);
         if(!
IsACop(playerid) && !IsAHit(playerid) && !IsATriad(playerid))
          {
            
SendClientMessage(playeridCOLOR_GRAD1,"Vocк nгo й um Assassino ou Policial!");
            return 
true;
        }
        if (
PlayerInfo[giveplayerid][pInt] != 0)
           {
             
SendClientMessage(playeridCOLOR_GRAD1,"O Player estб em algum interior e nгo pode ser Localizado.");
               return 
true;
        }
        if(!
strlen(tmp))
        {
              
SendClientMessage(playeridCOLOR_GRAD1"USE: /localizar [id]");
            return 
1;
        }
        
KillTimer(TempoGZLocalizar[playerid]);
        new 
Float:x,Float:y,Float:z;
        new 
Nome[MAX_PLAYER_NAME];
        
giveplayerid ReturnUser(tmp);
         
GetPlayerPos(giveplayerid,x,y,z);
        
GetPlayerName(giveplayeridNomesizeof(Nome));
        new 
location[MAX_ZONE_NAME];
        
GetPlayer2DZone(giveplayeridlocationMAX_ZONE_NAME);
        
format(stringsizeof(string), "Localizar: %s foi visto perto de %s, Uma Бrea foi criada em seu mapa!"Nome,location);
        
SendClientMessage(playeridCOLOR_YELLOWstring);
         
GZLocalizar[playerid] = GangZoneCreate(x-120,y-120,x+120,y+120);
         
GangZoneShowForPlayer(playeridGZLocalizar[playerid], 0xB1C998AA);
         
TempoGZLocalizar[playerid] = SetTimerEx("GZHide"100000"i"playerid);
         
GangZoneFlashForPlayer(playeridGZLocalizar[playerid],0x57D6F6AA);
        return 
1;
    } 



Re: Tempo no comando, ajuda? - pWesley - 28.07.2015

Poste a public GZHide.


Re: Tempo no comando, ajuda? - jefrens - 28.07.2015

Jб consegui, obrigado!