05.08.2012, 15:01
use streamer
https://sampforum.blast.hk/showthread.php?tid=102865/
Example:
https://sampforum.blast.hk/showthread.php?tid=102865/
Example:
pawn Код:
//At Top
new alreadypickupcp[MAX_PLAYERS];
// Add this OnGameModeInit..
CreateDynamicRaceCP(type, Float:x, Float:y, Float:z, Float:nextx, Float:nexty, Float:nextz, Float:size, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0);
//remember to edit it.
public OnPlayerEnterDynamicRaceCP(playerid, checkpointid)
{
if(checkpointid == CHECKID && alreadypickupcp[playerid] == 0)
{
SendClientMessage(playerid,Your_Color,"You've entered an race checkpoint!");
alreadypickupcp[playerid] = 1;
}
return 1;
}

