SA-MP Forums Archive
Dynamic Checkpoint - 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: Dynamic Checkpoint (/showthread.php?tid=215488)



Dynamic Checkpoint - FreshDoubleX - 23.01.2011

Hey ,

Код:
new
	PangaCP[MAX_PLAYERS]
;
OnPlayerConnect:
Код:
PangaCP[playerid] = CreateDynamicCP(1433.3694, -997.1190, 1638.700, 1.5, -1, -1, -1, 100.0);
Код:
public OnPlayerEnterDynamicCP(playerid, checkpointid)
{
	if(checkpointid == PangaCP[playerid])
	{
		SendClientMessage(playerid, -1, "Testing");
	}
	return 1;
}
Now, problem is that if only I am in server, then it is Testing message shows up, but when there are like 2 more players, then it just doesn't show.
What's the problem ?


Re: Dynamic Checkpoint - FreshDoubleX - 24.01.2011

Anyone ?