10/12/2022 10:34
Galera eu gostaria que quando o player chegar em determinado checkpoint ele recebesse uma quantia de dinheiro diferente, pois alguns CP são mais longes outros mais pertos.
Código:
new Float:Posicoesc[][]=
{
{ 2098.9116,2673.9832,10.8203 },
{ 1941.637329,-1757.459716,13.382812 },
{ 1682.216796,-2320.880859,13.476512 },
{ -573.077697,-1055.687500,23.984531 },
{ -1398.416748,-1472.172973,101.962890 },
{ -2045.645629,-96.953994,36.423358 }
};
public OnPlayerEnterCheckpoint(playerid)
{
if(PlayerInfo[playerid][caminhoneiro] == 1)
{
PlayerInfo[playerid][caminhoneiro] = 1;
random(sizeof(Posicoesc));
DisablePlayerCheckpoint(playerid);
SendClientMessage(playerid,0xE60000FF," Você recebeu $ 9000 Pelas Entregas");
GivePlayerMoney(playerid,granacm);
}
return 1;
}