24.11.2009, 00:01
Anyone got any idea why this isn't randomly spawing the player in the two places ?
Код:
new Float:RandomSpawns[2][4] = {
{-2365.1787, -1635.4945, 485.9717, 253.8724},
{1958.3783, 1343.1572, 15.3746, 269.1425}
};
Код:
for(new i = 0; i < 299; i++)
{
if(IsValidSkin(i))
{
new rand = random(sizeof RandomSpawns);
AddPlayerClass(i, RandomSpawns[rand][0], RandomSpawns[rand][1], RandomSpawns[rand][2], RandomSpawns[rand][3], 3, 0, 0, 0, 0, 0);
}
}


