How to get a random value from a multidimensional array?
#3

Quote:
Originally Posted by SickAttack
Посмотреть сообщение
pawn Код:
new Float:TeamSpawns[][] =
{
    {1090.1176,1915.2543,10.8203,359.0264},
    {1093.6993,1905.3907,16.4873,2.1364},
    {1116.3743,1891.2225,10.8203,167.8679},
    {1092.0170,1892.6232,10.8203,182.2814}
    {-799.3118,1570.1510,27.0807,87.2953},
    {-819.4633,1499.2266,19.7184,179.7295},
    {-767.4883,1520.2850,26.7911,270.9103},
    {-721.7050,1538.5356,40.4757,93.5855}
};

stock SetPlayerRandomPos(playerid)
{
    new rand = random(sizeof(TeamSpawns));
    SetPlayerPos(playerid, TeamSpawns[rand][0], TeamSpawns[rand][1], TeamSpawns[rand][2]);
    SetPlayerFacingAngle(playerid, TeamSpawns[rand][3]);
    return 1;
}
That's not right, I have a three dimentional array.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 3 Guest(s)