Hallo!
Ich möchte machen, das wenn man in ein Checkpoint fährt, dann der nächste kommt.
Ich hab es so gemacht:
public OnPlayerEnterCheckpoint(playerid)
{
if(cp1 == 1) {
cp2 = SetPlayerCheckpoint(playerid, -1662.2839,394.7228,6.7358, 5.0);
}
if(cp2 == 1) {
cp3 = SetPlayerCheckpoint(playerid, -1808.7117,94.3069,14.6656, 5.0);
}
if(cp3 == 1) {
cp4 = SetPlayerCheckpoint(playerid, -1801.3147,-275.4642,21.4837, 5.0);
}
if(cp4 == 1) {
cp5 = SetPlayerCheckpoint(playerid, -1764.9352,-636.7467,17.8352, 5.0);
}
Allerdings funktioniert das nicht.