[AJUDA]Algem pode resolver esses erros ?
#1

Код:
C:\Documents and Settings\Livre\Desktop\Marvin'\Server Samp\gamemodes\NoS.pwn(853) : error 021: symbol already defined: "KillTimer"
C:\Documents and Settings\Livre\Desktop\Marvin'\Server Samp\gamemodes\NoS.pwn(855) : error 010: invalid function or declaration
C:\Documents and Settings\Livre\Desktop\Marvin'\Server Samp\gamemodes\NoS.pwn(843) : warning 204: symbol is assigned a value that is never used: "TimerB"
C:\Documents and Settings\Livre\Desktop\Marvin'\Server Samp\gamemodes\NoS.pwn(844) : warning 204: symbol is assigned a value that is never used: "TimerC"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.

linhas

Код:
853: KillTimer(TimerB);
855: return 1;
843: TimerB=SetTimer("AutoFix", 500, true);
844: TimerC=SetTimer("CheckPlayerState", 100, true);
Reply
#2

Lб onde vocк colocou SetTimer relacionado ao 'timerB' acrescente:

pawn Код:
new timerB; //no topo do GM
agora no cуdigo

pawn Код:
timerB = SetTimer(.......);
Caso queira identificar este timer para um jogador especнfico use:

pawn Код:
new timerB[MAX_PLAYERS]; //no topo do GM
agora no cуdigo

pawn Код:
timerB[playerid] = SetTimerEx(.......);
Reply
#3

a string TimerB ja foi definida anteriormente. Ja o return um, depende do comando, pq ja tive mesmo erro, dependentemente de uma chave ; posta o codigo que esta usando o return 1; no fim.
Reply
#4

ei felipe eu tambem moro em fotaleza moro no monteze

@edit
@pawno
n mudou nada
Reply
#5

kk XD eita, centro aq :P
Reply
#6

Nгo definiu isso sim:

pawn Код:
new timerB; //no topo do GM
Se caso queira que o timer seja setado para um jogador especнfico:

pawn Код:
new timerB[MAX_PLAYERS];; //no topo do GM
Reply
#7

Posta as linhas de:
843 atй 856

E pelo que vejo, nгo adianta fazer o que o pawno escreveu, mostre essas linhas que facilitarб.
Reply
#8

Код:
    TimerA=SetTimer("AngleUpdate", 200, true); // by
    TimerC=SetTimer("CheckPlayerState", 100, true); //b
    TimerA = SetTimer("AutoFix", 500, true); //by A);
    LoadTextDraws();
    portao = CreateStreamedObject(980,-302.591,1507.351,71.131,0.0,0.0,0.0);
	SetTimer("SendMSG", 300000, true);
	return 1;
}

public OnGameModeExit()
KillTimer(TimerA);
KillTimer(TimerB);
KillTimer(TimerC);
return 1;
ta ai 843 ate 856
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)