11.06.2018, 23:02
Need more code than this... Show where you set gTeam, and where you create the checkpoint.
You also need to give more information as to what is happening, and what you have tried.
Also use tags, and fix your indentation.
Now that looks a lot better.
You also need to give more information as to what is happening, and what you have tried.
Also use tags, and fix your indentation.
PHP код:
public OnPlayerEnterDynamicCP(playerid, checkpointid)
{
if(checkpointid == CPStunt[0] && gTeam[playerid] == TEAM_STUNTER)
{
CPStunt[1] = CreateDynamicCP(1958.5, 1964, 23.200000762939, 2, -1, -1, -1, 100.0);
TogglePlayerDynamicCP(playerid, CPStunt[0], 1);
}
if(checkpointid == CPStunt[1] && gTeam[playerid] == TEAM_STUNTER)
{
GivePlayerMoney(playerid, 5000);
TogglePlayerDynamicCP(playerid, CPStunt[0], 1);
DestroyDynamicCP(CPStunt[1]);
}
return 1;
}