Rendom spawn for each team
#1

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.

Код:
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}
};
and

Код:
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;
}
And my second question is, if there is something missing.

Thanks.
Reply


Messages In This Thread
Rendom spawn for each team - by _GHT_MarK445 - 10.02.2015, 15:48
Re: Rendom spawn for each team - by nezo2001 - 10.02.2015, 15:51
Re: Rendom spawn for each team - by M4D - 10.02.2015, 15:51
Re: Rendom spawn for each team - by _GHT_MarK445 - 10.02.2015, 16:06
Re: Rendom spawn for each team - by CalvinC - 10.02.2015, 16:14
Re: Rendom spawn for each team - by _GHT_MarK445 - 10.02.2015, 16:17

Forum Jump:


Users browsing this thread: 1 Guest(s)