28.04.2018, 19:10
PHP код:
static Float:ShipmentList[3][3] = // 3 coordenadas (x, y, z)
{
{0.0, 0.0, 0.0},
{0.0, 0.0, 0.0},
{0.0, 0.0, 0.0}
};
CMD:carregar(playerid)
{
new indx = random(sizeof(ShipmentList));
SetPlayerCheckpoint(playerid, ShipmentList[indx][0], ShipmentList[indx][1], ShipmentList[indx][2], 3.0);
return 1;
}