[AJUDA] Comando /do
#18

PHP код:
    if(!strcmp("/do"cmdtexttrue) || !strcmp("/dominar"cmdtexttrue))//Se: O comando digitado for /do ou /dominar...
    
{
        new 
string[256];
        if(
IsPlayerInPistaDeSkate(playerid))
        {
            if(
Dominando[playerid] != 0)
            {
                
SendClientMessage(playerid0x666666FF"Vocк jб esta dominando uma GangZone.");
                return 
1;
            }
            if(
PistaSendoDominada != 0)
            {
                
SendClientMessage(playerid0x666666FF"A Pista de Skate jб esta sendo dominado.");
                return 
1;
            }
            if(
DonoPista == GROVE)
            {
            
SendClientMessage(playerid0x666666FF"A Pista de Skate jб й da sua Gang.");
            return 
1;
            }
            
format(stringsizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Grove Street estгo dominando a {FFF00F}Pista de Skate."sendername);
            
SendClientMessageToAll(GROVE_COLORstring);
            
GangZoneFlashForAll(GZPistaGROVE_COLOR);
            
SetTimerEx("DominarPista"30000false"i"playerid);
            
PistaSendoDominada 1;
            
Dominando[playerid] = 1;
            return 
1;
            }
            else if(
DonoPista == BALLAS)
            {
            
SendClientMessage(playerid0x666666FF"A Pista de Skate jб й da sua Gang.");
            return 
1;
            }
            
format(stringsizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Ballas estгo dominando a {FFF00F}Pista de Skate."sendername);
            
SendClientMessageToAll(BALLAS_COLORstring);
            
GangZoneFlashForAll(GZPistaBALLAS_COLOR);
            
SetTimerEx("DominarPista"30000false"i"playerid);
            
PistaSendoDominada 1;
            
Dominando[playerid] = 1;
            return 
1;
            }
            
/*else if(DonoPista == LOSAZTECAS)
            {
                SendClientMessage(playerid, 0x666666FF, "A Pista de Skate jб й da sua Gang.");
                return 1;
            }
            format(string, sizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Los Aztecas estгo dominando a {FFF00F}Pista de Skate.", sendername);
            SendClientMessageToAll(AZTECAS_COLOR, string);
            GangZoneFlashForAll(GZPista, AZTECAS_COLOR);
            SetTimerEx("DominarPista", 30000, false, "i", playerid);
            PistaSendoDominada = 1;
            Dominando[playerid] = 1;
            return 1;
            }
            else if(DonoPista == LOSVAGOS)
            {
                SendClientMessage(playerid, 0x666666FF, "A Pista de Skate jб й da sua Gang.");
                return 1;
            }
            format(string, sizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Los Vagos estгo dominando a {FFF00F}Pista de Skate.", sendername);
            SendClientMessageToAll(VAGOS_COLOR, string);
            GangZoneFlashForAll(GZPista, VAGOS_COLOR);
            SetTimerEx("DominarPista", 30000, false, "i", playerid);
            PistaSendoDominada = 1;
            Dominando[playerid] = 1;
            return 1;
            }
            else if(DonoPista == POLICIAIS)
            {
                SendClientMessage(playerid, 0x666666FF, "A Pista de Skate jб й da sua Gang.");
                return 1;
            }
            format(string, sizeof(string), "[INFORMAЗГO] O Player %s e os Policiais estгo dominando a {FFF00F}Pista de Skate.", sendername);
            SendClientMessageToAll(POLICIAIS_COLOR, string);
            GangZoneFlashForAll(GZPista, POLICIAIS_COLOR);
            SetTimerEx("DominarPista", 30000, false, "i", playerid);
            PistaSendoDominada = 1;
            Dominando[playerid] = 1;
            return 1;
            }*/
        
else//Se o Jogador nгo estivem em nem uma gang zone...
        
{
            
SendClientMessage(playerid0x666666FF"Vocк nгo esta em uma GangZone.");
            return 
1;
        }
    } 
Aн estб o /dominar inteiro. Quando eu tiro a */ e o */ da esse erro:

Код:
C:\Documents and Settings\Luciano\Desktop\Servidores\Gaming of Life - Gang War\gamemodes\glgw.pwn(2235) : error 017: undefined symbol "string"
C:\Documents and Settings\Luciano\Desktop\Servidores\Gaming of Life - Gang War\gamemodes\glgw.pwn(2235) : error 017: undefined symbol "string"
C:\Documents and Settings\Luciano\Desktop\Servidores\Gaming of Life - Gang War\gamemodes\glgw.pwn(2235) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Luciano\Desktop\Servidores\Gaming of Life - Gang War\gamemodes\glgw.pwn(2235) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
E ele persiste nas linhas:

PHP код:
      format(stringsizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Grove Street estгo dominando a {FFF00F}Pista de Skate."sendername);  
            
format(stringsizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Ballas estгo dominando a {FFF00F}Pista de Skate."sendername);  
            
format(stringsizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Los Aztecas estгo dominando a {FFF00F}Pista de Skate."sendername);
            
format(stringsizeof(string), "[INFORMAЗГO] O Player %s e a Gangue Los Vagos estгo dominando a {FFF00F}Pista de Skate."sendername);
            
format(stringsizeof(string), "[INFORMAЗГO] O Player %s e os Policiais estгo dominando a {FFF00F}Pista de Skate."sendername); 
E na hora que domina, o %s nгo tem funзгo nenhuma, pois ele nгo dб o nome do jogador que estб dominando. Ajuda DreeH
Reply


Messages In This Thread
[AJUDA] Comando /do - by [AF]Junior - 09.06.2011, 21:51
Re: [AJUDA] Comando /do - by ViniBorn - 09.06.2011, 21:53
Re: [AJUDA] Comando /do - by [AF]Junior - 09.06.2011, 21:59
Re: [AJUDA] Comando /do - by Shadoww5 - 09.06.2011, 22:01
Re: [AJUDA] Comando /do - by Bruno Pereira - 09.06.2011, 22:03
Re: [AJUDA] Comando /do - by Shadoww5 - 09.06.2011, 22:07
Re: [AJUDA] Comando /do - by [AF]Junior - 09.06.2011, 22:12
Re: [AJUDA] Comando /do - by Shadoww5 - 09.06.2011, 22:15
Re: [AJUDA] Comando /do - by [AF]Junior - 09.06.2011, 22:21
Re: [AJUDA] Comando /do - by DreeH - 09.06.2011, 22:28
Re: [AJUDA] Comando /do - by Shadoww5 - 09.06.2011, 22:29
Re: [AJUDA] Comando /do - by [AF]Junior - 09.06.2011, 22:29
Re: [AJUDA] Comando /do - by DreeH - 09.06.2011, 23:01
Re: [AJUDA] Comando /do - by Ricop522 - 10.06.2011, 02:13
Re: [AJUDA] Comando /do - by DreeH - 10.06.2011, 16:51
Re: [AJUDA] Comando /do - by [AF]Junior - 10.06.2011, 21:24
Re: [AJUDA] Comando /do - by DreeH - 10.06.2011, 21:54
Re: [AJUDA] Comando /do - by [AF]Junior - 10.06.2011, 22:38
Re: [AJUDA] Comando /do - by LuxurioN™ - 10.06.2011, 23:46
Re: [AJUDA] Comando /do - by [AF]Junior - 11.06.2011, 00:17

Forum Jump:


Users browsing this thread: 2 Guest(s)