protocol.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.
Parameter | Optional | Max Allowed | DataType | Notes |
---|---|---|---|---|
cid | no | 1 | text | client id. used to track origin of any particular message |
id | no | unbounded | integer | player id. starts at 1 |
i0 | no | 1 | integer | source index |
i1 | no | 1 | integer | destination index |
Example xml:
<sireq> <cid>Mum</cid> <fn> <movePlayerItem> <id>1</id> <i0>0</i0> <i1>-1</i1> </movePlayerItem> </fn> </sireq>