question
#4

Quote:
Originally Posted by Christian_Bojic
Посмотреть сообщение
I dont understand this
Put this somewhere in your script:
pawn Код:
new Float:RandomSpawn[][4] =
{
    // add your own co-ords and facing angles here
    {-2796.9854, 1224.8180, 20.5429, 192.0335},
    {-2454.2170, 503.8759, 30.0790, 267.2932},
    {-2669.7322, -6.0874, 6.1328, 89.8853}
};

Put these functions under the OnPlayerSpawn callback
pawn Код:
new rand = random(sizeof(RandomSpawn));
    SetPlayerPos(playerid, RandomSpawn[rand][0], RandomSpawn[rand][1],RandomSpawn[rand][2]);
    SetPlayerFacingAngle(playerid, RandomSpawn[rand][3]);
    return 1;
Reply


Messages In This Thread
question - by Christian_Bojic - 24.06.2011, 18:29
Re: question - by Jantjuh - 24.06.2011, 18:31
Re: question - by Christian_Bojic - 24.06.2011, 18:32
Re: question - by Jantjuh - 24.06.2011, 18:34
Re: question - by Christian_Bojic - 24.06.2011, 18:38
Re: question - by Jantjuh - 24.06.2011, 18:44
Re: question - by Christian_Bojic - 24.06.2011, 18:46
Re: question - by Jantjuh - 24.06.2011, 18:50
Re: question - by Christian_Bojic - 24.06.2011, 18:52
Re: question - by Jantjuh - 24.06.2011, 19:53

Forum Jump:


Users browsing this thread: 1 Guest(s)