TYBA






protocol.MovePlayerItemRequest

MovePlayerItemRequest

This request allows you to move items around in the specified player queue. Negative values reference from the end of the queue in reverse. i.e -1 is the last item in the queue then -2 etc. Source and destinations indices are supplied as parameters.

ParameterOptionalMax AllowedDataTypeNotes
cidno1textclient id. used to track origin of any particular message
idnounboundedintegerplayer id. starts at 1
i0no1integersource index
i1no1integerdestination index

Example xml:


  <sireq>
      <cid>Mum</cid>
      <fn>
          <movePlayerItem>
              <id>1</id>
              <i0>0</i0>
              <i1>-1</i1>
          </movePlayerItem>
      </fn>
  </sireq>

 

back to index