Quote: "Isn't Goto handled the same like a function call without parameters and without a return value?"
Functions have defined structure whereas Goto could go anywhere.
Quote: "this if then combination did not work, the compiler did not understand
if abs(dx#-dy#)>0.01 then if iNetID then SendUpdate(iNetID,Player.MoveIndex,2,0,1)"
Unfortunately that type of nesting is no longer supported, you will need to change it to
if abs(dx#-dy#)>0.01
if iNetID then SendUpdate(iNetID,Player.MoveIndex,2,0,1)
endif
or
if abs(dx#-dy#)>0.01 and iNetID then SendUpdate(iNetID,Player.MoveIndex,2,0,1)
Quote: "your new getdocumentspath() command is useless and only good to read files from"
This should work
SetRawWritePath( GetDocumentsPath() )
Quote: "I have nearly all my sprites in an Atlas subimage file"
Quote: "did you made sure that the casing of the filename in your code matches the casing of the actual file"
Definitely sounds like a case issue.
Quote: "I finally produced code that demonstrates the problem I was describing earlier."
Perfect, thanks. Fixed for next version.