how do i set up a teleport point?

loz gowland

New Member
i want to teleport a player who enters point A ....and send him to point B..

can anyone tell or help me please.im new to scripting?

im using it as a reward,they kill all the a.i at point A...then enter teleport point to get to point B and grab the loot.

please help
 
Last edited:
use the setpos command https://community.bistudio.com/wiki/setPos

you can use a position array (this is somewhere near NWAB)
player setpos [4000,10000,0];

you can create a marker in the 3d editor, say its named "rewardpoint"
player setpos (getpos rewardpoint);

If you have the 'antihack' enabled in your init.sqf it most likely will revert your teleport. You will have to disable it.
 
Back
Top