Checkpoint Help - 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)
+--- Thread: Checkpoint Help (
/showthread.php?tid=495814)
Checkpoint Help -
ShaneOvSina - 19.02.2014
I've tried so many times to create a checkpoint
i have failed so many times.
I have searched around the internet and still cannot find anything that really helps me
So could anyone recreate this:
-->
http://tinypic.com/view.php?pic=5ogtoj&s=8
-->
http://tinypic.com/view.php?pic=307t...8#.UwQTR2J_s6w
If this were to be created i could learn it and make more enterable building like this.
I will +Rep for any help
Re: Checkpoint Help -
Threshold - 19.02.2014
https://sampforum.blast.hk/showthread.php?tid=102865
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;
}
Also, please don't copy KCNR if that's what you're trying to achieve.
- Threshold.
Re: Checkpoint Help -
ShaneOvSina - 19.02.2014
I'm not. this was just an example of what i needed, and thanks
Re: Checkpoint Help -
ShaneOvSina - 19.02.2014
[SOLVED]