Hi everyone! Do you happen to know if there is a way to hook a platform to 2 platform helpers? I need this to have a long elevator that can travel a very long distance (changin the size is not enough for me) Thanks a lot for taking your time to read!
Sometimes I duplicate the xMarkers and the items, is that what causes it? (Didnt mean to spam, just my bad internet made me press the post button many times)
Whenever I place a XMarkerHeading for some reason a lot of random stuff teleports to its location. Is this a known bug? Or just my game? Or am I doing something wrong? Thanks for your time!
Yes, it looks like MoveTo doesn't work with static objects. And TranslateToRef only works with statics, so I guess it needs a workaround, gonna keep tinkering with it
I'm trying to make a scenary scroll to give the illusion of moving (I'm very new to scripting as you can see) I managed to get the scenary moving:
Scriptname ScenaryLoop extends ObjectReference Const Conditional
ObjectReference Property StartPoint Auto Const
ObjectReference Property Scenary Auto Const
ObjectReference Property EndPoint Auto Const
Event OnActivate(ObjectReference akActionRef)
while (game.getplayer() == true)
Scenary.TranslateToRef(EndPoint, 100)
Endwhile
EndEvent
But can't figure ou how to make the scenary reset to it's original position and repeat the loop. Thank you a lot for your time!