Multi-Axis scripts released on SexLikeReal

Hi guys,

We’re close to releasing support for multi-axis scripts on SLR.

We have some technical details that we want to share and discuss with you. We thought about creating a completely new format, but for simplicity we decided to extend the existing .funscript format instead, while keeping backwards compatibility. This means that the up/down stroking (L0) will still work on existing players and toys, while updated players will also be able to read the extra axes contained in the .funscript file.

Here is an example of the new format we’re planning to use:

{
  "actions": [
    { "pos":99, "at":0 }
  ],
  "axes": [
    {
      "id": "R0",
      "actions": [
        { "pos":99, "at":0 }
      ]
    },
    {
      "id": "R1",
      "actions": [
        { "pos":99, "at":0 }
      ]
    },
    .....
  ]
}

With this format you can add as many axes as you like and the SLR app will play them back on your TCode device. The ID’s are used to identify the axes and they should match the TCode standard set by Tempest. The original ‘Actions’ array is assumed to be L0.

3 Likes