setPos: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
[[Category:Scripting Commands| | [[Category:Scripting Commands|SETPOS]] | ||
[[Category:Scripting Commands OFP 1.97| | [[Category:Scripting Commands OFP 1.97|SETPOS]] | ||
[[Category:Scripting Commands OFP 1.46| | [[Category:Scripting Commands OFP 1.46|SETPOS]] | ||
[[Category:Scripting Commands ArmA| | [[Category:Scripting Commands ArmA|SETPOS]] | ||
Revision as of 16:27, 4 May 2006
obj setPos pos
Operand types:
obj: Object
pos: Array
Type of returned value:
Description:
Set object position.
Pos array format is Position.
Examples:
player setPos [ getPos player select 0, (getPos player select 1) + 10]
player setPos [ getPos this select 0, getPos this select 1, (getPos this select 2) +10]
obj1 setpos [ getPos obj1 select 0, getPos obj1 select 1, -5] .........Buries obj1 5 metres below ground level.
Comments:
Note that:
obj1 setPos[x,y,z]
Will place most objects z metres above ground level (negative numbers for underground).
But if obj1 is a trigger then it will be placed z metres above sea level