12.02.2011, 09:58
Something like this should work.
You will maybe get an error, just download the "Streamer Plugin v2.5.2" and install it..
You will maybe get an error, just download the "Streamer Plugin v2.5.2" and install it..
pawn Код:
new GiveGuns[MAX_PLAYERS];
public OnGameModeInit()
{
GiveGuns = CreateDynamicCP(-103.7533, -22.6790, 1000.7188, 3.0, -1, -1, -1);
return 1;
}
public OnPlayerEnterCheckPoint(playerid)
{
if(GiveGuns)
{
GivePlayerWeapon(...);
return 1;
}
}