mob/proc
TurnRight()
var/DIR=turn(client.dir,-90)
dir=DIR
client.dir=DIR
Problem description:
I know my syntax isn't the best, but bear with me.
Not so much a problem I'm having with a particular string of code, I'm just wondering if this variable still functions as it originally was intended.
Before it would change the client's perspective, where it would appear on their screen that they were moving north, however changing client.dir to something such as "east" or "west", you'd still be facing north on your screen, however your action direction would not be that.
Basically it would appear as if you were playing a 3rd-person game with the camera oriented behind the character.
One thing I've noticed is in the current version of BYOND, when multiple clients are connected to a server, it does not display like this. It uses the default map orientation.
Any idea if this functionality should be working for multiplayer or if this was disabled?
EDIT:
When running the DMB in Dream Seeker, it works just fine. Connecting to a host (either from Dream Seeker or Dream Daemon), this doesn't work.