CHECKPOINT +FIXED+ - 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 +FIXED+ (
/showthread.php?tid=402333)
CHECKPOINT +FIXED+ -
Kittylol - 26.12.2012
Hi.I have problems with my own filterscript.My problem is with red checkpoints.These red checkpoints are Very Huge.I want make them smaller.How can i do that.Can you please show me code what makes it smaller.
Re: CHECKPOINT - Patrick - 26.12.2012
can you show one code of checkpoint please?
Re: CHECKPOINT -
Kittylol - 26.12.2012
This is nr.1:
pawn Код:
public OnPlayerEnterCheckpoint(playerid)
{
SendClientMessage(playerid, 0xDB881AAA, "Tests Strada Loti labi,turpini stradat" );
return 1;
}
This is nr.2
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerCheckpoint(playerid, 2186.65, -2254.31, -13.42, 265.66);
return 1;
}
Re: CHECKPOINT -
B-Matt - 26.12.2012
SetPlayerCheckpoint(playerid, 2186.65, -2254.31, -13.42,
265.66);
This is size of your checkpoint. Use 10 or 5 if you want small checkpoints.
Re: CHECKPOINT - Patrick - 26.12.2012
the size you put is too big try this
pawn Код:
SetPlayerCheckpoint(playerid, 2186.65, -2254.31, -13.42, 3.0);// the size you put is too big try this
it should be like this
Re: CHECKPOINT -
DaRk_RaiN - 26.12.2012
pawn Код:
SetPlayerCheckpoint(playerid, 2186.65, -2254.31, -13.42, 1);//very small(for on foot player)
pawn Код:
SetPlayerCheckpoint(playerid, 2186.65, -2254.31, -13.42, 5);//Average (for cars ect..)
Re: CHECKPOINT -
Kittylol - 26.12.2012
Thank you people you are the best !