[Ajuda] Onde estб o erro neste CODE ??
#1

Seguinte Criei um comando para quando o player digitar por exemplo: /3543245 ai ele ganha grana e se vocк digitar novamente ele nгo conseguia mas esta dando 2 erros code abaixo.
pawn Код:
if(strcmp(cmd, "/265846", true) == 0) {
    if ( BloqCMD1 == true)
        return SendClientMessage(playerid, -1, "Comando bloqueado!");
        SendClientMessage(playerid, Vermelho, "Parabens, vocк foi o primeiro a usar o code e recebeu 500k");
            GivePlayerMoney(playerid, 500000);
            BloqCMD1 = true;
        return true;
    }
Esta dando estes erros abaixo.
Код:
C:\Documents and Settings\Lucas\Desktop\samp serve\para teste\gamemodes\LVDM.pwn(2801) : error 017: undefined symbol "BloqCMD1"
C:\Documents and Settings\Lucas\Desktop\samp serve\para teste\gamemodes\LVDM.pwn(2805) : error 017: undefined symbol "BloqCMD1"
C:\Documents and Settings\Lucas\Desktop\samp serve\para teste\gamemodes\LVDM.pwn(2805) : warning 215: expression has no effect
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Preciso de ajuda se responder agradeзo.
Reply
#2

falta !
pawn Код:
static BloqCMD1 = {false,...};
Reply
#3

new BloqCMD1;
ou
new BloqCMD1[MAX_PLAYERS];
Reply
#4

Agora funcionou, faltava a new tinha me esquecido dela vlw.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)