SA-MP Forums Archive
2 warnings - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: 2 warnings (/showthread.php?tid=133573)



2 warnings - 02manchestera - 13.03.2010

Код:
C:\Program Files\Rockstar Games\GTA San Andreas\my server\pawno\include\foreach.inc(346) : warning 201: redefinition of constant/macro (symbol "OnPlayerConnect")
C:\Program Files\Rockstar Games\GTA San Andreas\my server\pawno\include\foreach.inc(436) : warning 201: redefinition of constant/macro (symbol "OnPlayerDisconnect")
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
Код:
#define MEASURE_TIME 1000 //line346
Код:
forward IsPlayerAdminCall(playerid); //line 436
I cant see the link between the warning and tthese lines



Re: 2 warnings - 02manchestera - 13.03.2010

Код:
#define OnPlayerConnect Itter_OnPlayerConnect
Код:
#define OnPlayerDisconnect Itter_OnPlayerDisconnect
Well these the 2 lines and i dnt have a clue about inc


Re: 2 warnings - cessil - 13.03.2010

looks like you have 2 definitions for the same thing, take out your
Код:
#define OnPlayerConnect Itter_OnPlayerConnect
and
Код:
#define OnPlayerDisconnect Itter_OnPlayerDisconnect
and just replace OnPlayerConnect with Itter_OnPlayerConnect and OnPlayerDisconnect with Itter_OnPlayerDisconnect