Hey, hab ein Problem wieder -.-
Ich hab ein Tutoriacheckpointl für Neukommer gemacht, der über ein Dialog abefragt wird, und wenn es bestätigt wird, fängt man an. So weit so gut.. Fängt mit BSN also an. Sobald ich aber dort bin, werden die weiteren Checkpoints nicht angezeigt und ich bekomme alle Checkpoints - Nachrichten von den anderen..
hier der code
[PHP] if(response==1)
{
TutCP[playerid]=1;
SetPlayerCheckpoint(playerid,1191.9098,-920.0125,42.8168,3.0);
SendClientMessage(playerid,green,"You've started the Tutorial. Please follow the Checkpoints!");
}[/PHP]
[PHP]public OnPlayerEnterCheckpoint(playerid)
{
if(TutCP[playerid]==1)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid] = 2;
SetPlayerCheckpoint(playerid, 1543.8728,-1669.8749,13.2300, 3.0);
SendClientMessage(playerid,green,"This is the BurgerShot North! Here you can fill up your HP by eating");
SendClientMessage(playerid,orange,"Go on, that's not all. Find now the next Checkpoint!");
}
if(TutCP[playerid]==2)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid] = 3;
SetPlayerCheckpoint(playerid, 1483.7485,-1764.6368,18.7958, 3.0);
SendClientMessage(playerid,green,"Here is the Los Santos Police Department! If you get problems, they'll help you. Please respect them.");
SendClientMessage(playerid,orange,"Go on, that's not all. Find now the next Checkpoint!");
}
if(TutCP[playerid]==3)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid] = 4;
SetPlayerCheckpoint(playerid, 1348.5499,-1752.1724,13.3611, 3.0);
SendClientMessage(playerid,green,"Here is the Los Santos Office. Here you find Jobs and create your identity card");
SendClientMessage(playerid,orange,"Go on, that's not all. Find now the next Checkpoint!");
}
if(TutCP[playerid]==4)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid] = 5;
SetPlayerCheckpoint(playerid, 1363.9559,-1285.0071,13.5469, 3.0);
SendClientMessage(playerid,green,"This is the 24/7 shop. Here you can buy a mobile phone, some snacks and more..!");
SendClientMessage(playerid,orange,"Go on, that's not all. Find now the next Checkpoint!");
}
if(TutCP[playerid]==5)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid] = 6;
SetPlayerCheckpoint(playerid, 777.0124,-1388.1178,13.6335, 3.0);
SendClientMessage(playerid,green,"Here is the LS Ammunation! You can buy guns here. But first, you'll need a gun license.");
SendClientMessage(playerid,orange,"Go on, that's not all. Find now the next Checkpoint!");
}
if(TutCP[playerid]==6)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid] = 7;
SetPlayerCheckpoint(playerid, 488.8225,-1520.5413,19.8818, 3.0);
SendClientMessage(playerid,green,"Here is the Car-Shop. You can buy cars here, but first you'll need a drivers license");
SendClientMessage(playerid,orange,"Go on, that's not all. Find now the next Checkpoint!");
}
if(TutCP[playerid]==7)
{
DisablePlayerCheckpoint(playerid);
TutCP[playerid]=0;
SendClientMessage(playerid,green,"This is the driving school in Los Santos. You've also done the Tutorial by now.");
}
return 1;
}
[/PHP]