27.05.2010, 12:19
The 2 Warnings
On Top
The Timer's
The sherifgunshopexit Callback
The bastradgunshopexit Callback
Код:
C:\Users\Edy\Desktop\New Server\gamemodes\Western.pwn(452) : warning 235: public function lacks forward declaration (symbol "sherifgunshopexit") C:\Users\Edy\Desktop\New Server\gamemodes\Western.pwn(461) : warning 235: public function lacks forward declaration (symbol "bastradgunshopexit") Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Warnings.
Код:
forward sherifgunshopexit(playerid); forward bastradgunshopexit(playerid);
pawn Код:
SetTimerEx("sherifgunshopexit", 30000, 0,"i",playerid);
SetTimerEx("bastardgunshopexit",2000,0,"i",playerid);
pawn Код:
public sherifgunshopexit(playerid)//Line 452
{
SetPlayerFacingAngle(playerid,180);
SetCameraBehindPlayer(playerid);
SetPlayerPos(playerid,4091.3589,-605.1016,30.4987);
SetPlayerInterior(playerid,0);
return 1;
}
pawn Код:
public bastradgunshopexit(playerid)//Line 561
{
RemovePlayerMapIcon(playerid,2);
SetPlayerFacingAngle(playerid,358);
SetCameraBehindPlayer(playerid);
SetPlayerPos(playerid,4055.1155,-677.3716,30.4987);
SetPlayerInterior(playerid,0);
return 1;
}