Posted May 25, 2017 by The any Key
Added script when you try using my room switch in multiplayer games.
Multiplayer offset calc: When you try use room switch for multiplayer you can now get the offset values from other players with the code:
scr_room_switch_MULTIPLAYER_OFFSET_CALC(your room, other players room);
Then use the return array to recalc the other players pos ex:
var offset=scr_room_switch_MULTIPLAYER_OFFSET_CALC(your room, client.room);
client.x=network_x_value+offset[0];
client.y=network_y_value+offset[1];