CasperTech / node-metaverse

A node.js interface for Second Life.
MIT License
51 stars 34 forks source link

Is Client.Self.Autopilot(x, y, z) supported ? #72

Open dr-soni opened 1 year ago

dr-soni commented 1 year ago

I use to use node-metaverse to move my avatar like I am currently doing with Corrade. Is it supported? If not, can someone give an outline/pointer on how one may implement it?

gwigz commented 1 year ago

Not currently, there's no serverside functionality either. You'll need to tell the simulator which controls are being held down.

I think this would move forward till the controls are cleared? Haven't tried it.

bot.agent.setControlFlag(ControlFlags.AGENT_CONTROL_AT_POS | ControlFlags.AGENT_CONTROL_FAST_AT);
bot.agent.sendAgentUpdate();

As for rotation there's #70 #58.