19.02.2014, 01:15
https://sampforum.blast.hk/showthread.php?tid=102865
Also, please don't copy KCNR if that's what you're trying to achieve.
- Threshold.
pawn Код:
new cp = CreateDynamicCP(Float:x, Float:y, Float:z, Float:size, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0);
pawn Код:
public OnPlayerEnterDynamicCP(playerid, checkpointid)
{
if(checkpointid == cp)
{
SetPlayerPos(playerid, ...);
//Etc.
}
return 1;
}
- Threshold.