Talk:SetPos

From the Oblivion ConstructionSet Wiki
Revision as of 11:11, 13 June 2006 by imported>JOG (Moved pointless info to discussion)
Jump to navigation Jump to search

I added some additional information that helped me in the process of scripting my mods.--Omzy 11:50, 13 June 2006 (EDT)

Setting this value via computations does not work. Instead, use GetPos with computations and use the result as a variable for SetPos.

This does not work:

SetPos X (GetPos X + 40)

This works:

short xPos
Set xPos to (GetPos X + 40)
SetPos X xPos


What's the point of this info? No Function accepts expressions as parameters.--JOG 12:11, 13 June 2006 (EDT)