Difference between revisions of "Talk:SetPos"
Jump to navigation
Jump to search
revert demage
imported>GuidoBot (fyi notes to script example) |
imported>Entim (revert demage) |
||
Line 4: | Line 4: | ||
'''This does not work:''' | '''This does not work:''' | ||
<pre>SetPos X (GetPos X | <pre>SetPos X (GetPos X + 40)</pre> | ||
'''This works:''' | '''This works:''' | ||
<pre>short xPos | <pre>short xPos | ||
Set xPos to (GetPos X | Set xPos to (GetPos X + 40) | ||
SetPos X xPos</pre> | SetPos X xPos</pre> | ||