My Checpoints Won't show onto game - 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: My Checpoints Won't show onto game (
/showthread.php?tid=76984)
My Checpoints Won't show onto game -
will_92 - 08.05.2009
I'e Tried and Tried to put up Checkpoints but when i load up the game it won't show
SetPlayerToTeamColour(playerid);
SetPlayerWorldBounds(playerid, 388.6190, -7.9993, 2147.0618, 1655.8849);
switch (gPlayerClass[playerid]) {
case 0:
{
gPlayerCheckpointStatus[playerid] = CHECKPOINT_PLANE;
SetPlayerCheckpoint(playerid,315.7353,1035.6589,19 45.1191,5.0);
SetPlayerInterior(playerid,9);
GameTextForPlayer(playerid, "Grab a parachute~n~Then exit the plane via the ~r~ramp", 2000, 5);
}
case 1, 2:
{
gPlayerCheckpointStatus[playerid] = CHECKPOINT_NONE;
GameTextForPlayer(playerid, "Defend Your Land", 2000, 5);
SetPlayerInterior(playerid,0);
}
}
return 1;
}