Talk:SetElementAttachedOffsets
From Multi Theft Auto: Wiki
Maybe it would be better that optional arguments were increments instead of new offsets. So if you want to rotate an object around its Z axis you could do
SetElementAttachedOffsets(theObject,0,0,0,0,0,10) --where Zero values mean keep old value
Maybe im wrong but actually to change the last value you must provide all previous. If you dont provide them they will be set to default(=0) what would mess the offsets
Well not sure cos if you want to set an absolute value you would need to get old value and compute diff.
You could always use:
AttachElements(theObject, getElementAttachedTo(theObject), ....) to set absoulute values
Maybe some function float,float,float,float,float,float getElementAttachedOffsets(theObject)