Random spawns help
#2

alright, This my friend is fairly simple. If you want to create a random spawning system. You will need a new.

Код:
new pteleports[0][4] = {
{x1, y1, z1},
{X2, y2, z2},
{X3, y3, z3}
}; (AND SO ON) depending on how many coordinates you want.
if you are using zcmd you can do the command below.
to download the zcmd include for pawno please visit this link: http://solidfiles.com/d/d20f/

Код:
command(teleport, playerid, params[])
{
     new teleports = random(sizeof(pteleports));
     SetPlayerPos(playerid, teleports[rand][0], teleports[rand][1], teleports[rand][3]);
     return 1;
}
for more information on how to make randoms, please visit this link: https://sampwiki.blast.hk/wiki/Random

ALSO: please rep+ IF i helped you. If not dont mind it. Thank you.
Reply


Messages In This Thread
Random spawns help - by s0me0ne - 01.12.2008, 07:19
Re : Random spawns help - by rbcrp - 15.02.2012, 20:03

Forum Jump:


Users browsing this thread: 1 Guest(s)