Random spawns help
#1

i need help for this...when the player type /teleport the player to teleport to random places...
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)