24.01.2011, 17:58
Quote:
i get this error
Code:
C:\Users\Stephen-Laptop\Desktop\server samp - Copy\gamemodes\lvpg.pwn(719) : warning 235: public function lacks forward declaration (symbol "CheckGate") Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning. |
pawn Code:
forward CheckGate();
public CheckGate()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, 10.0, 1717.04809570,1298.18298340,11.49500275))
{
MoveObject(AutomaticGate, 1716.09643555,1293.90063477,11.49500275, 5.0);
}
else
{
MoveObject(AutomaticGate, 1717.04809570,1298.18298340,11.49500275, 5.0);
}
}
}
}