10.02.2015, 15:48
Hi guys,
today I was working on random spawns for my prison. These spawns are just for prisoners. But, i didnt figure out, how to set random spawn just for specified team.
I got it like this.
and
And my second question is, if there is something missing.
Thanks.
today I was working on random spawns for my prison. These spawns are just for prisoners. But, i didnt figure out, how to set random spawn just for specified team.
I got it like this.
Код:
new Float:RandomSpawn[][4] =
{
{-2796.9854, 1224.8180, 20.5429, 192.0335},
{-2454.2170, 503.8759, 30.0790, 267.2932},
{-2669.7322, -6.0874, 6.1328, 89.8853}
};
Код:
public OnPlayerSpawn(playerid)
{
new val = random(sizeof(RandomSpawn));
SetPlayerPos(playerid, RandomSpawn[rand][0], RandomSpawn[rand][1],RandomSpawn[rand][2]);
SetPlayerFacingAngle(playerid, RandomSpawn[rand][3]);
return 1;
}
Thanks.

