Skip to content

Commit

Permalink
2.4.0 version of the xmlrpc api.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aessi committed Jan 31, 2018
1 parent 8a9e19c commit ef6aaf1
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions XmlRpcListing.md
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,29 @@ Callbacks
}"
]
```
- Version >=2.4.0:
The scores table module has a new visible property
```
[
"{
"responseid": "xyz" //< Facultative id passed by a script event
}",
"
<ui_properties>
...
<!-- Scores table displayed in the middle of the screen -->
<scorestable alt_visible="true" visible="true" />
</ui_properties>
",
"{
...
"scorestable": { //< Scores table displayed in the middle of the screen
"alt_visible": true,
"visible": true
}
}"
]
```

### Shootmania.UI.Property

Expand Down Expand Up @@ -2066,6 +2089,29 @@ Callbacks
}"
]
```
- Version >=2.4.0:
The scores table module has a new visible property
```
[
"{
"responseid": "xyz" //< Facultative id passed by a script event
}",
"
<ui_properties>
...
<!-- Scores table displayed in the middle of the screen -->
<scorestable alt_visible="true" visible="true" />
</ui_properties>
",
"{
...
"scorestable": { //< Scores table displayed in the middle of the screen
"alt_visible": true,
"visible": true
}
}"
]
```

### Trackmania.UI.Property

Expand Down Expand Up @@ -2363,6 +2409,20 @@ Methods
]
```

### Maniaplanet.UI.SetScoresTableVisibility

* Name: Maniaplanet.UI.SetScoresTableVisibility
* Type: TriggerModeScriptEventArray
* Description: Enable or disable the scores table.
* Data:
- Version >=2.4.0:
```
[
"PlayerLogin", //< The login of the player to update
"false" //< false to disable, true to enable
]
```

### Maniaplanet.WarmUp.GetStatus

* Name: Maniaplanet.WarmUp.GetStatus
Expand Down Expand Up @@ -2519,6 +2579,23 @@ Methods
"
]
```
- Version >=2.4.0:
The scores table module has a new visible property
```
[
"
<!--
Each node is optional and can be omitted.
If it's the case then the previous value will be kept.
-->
<ui_properties>
...
<!-- Scores table displayed in the middle of the screen -->
<scorestable alt_visible="true" visible="true" />
</ui_properties>
"
]
```

### Shootmania.UI.ResetProperties

Expand Down Expand Up @@ -2885,6 +2962,23 @@ Methods
"
]
```
- Version >=2.4.0:
The scores table module has a new visible property
```
[
"
<!--
Each node is optional and can be omitted.
If it's the case then the previous value will be kept.
-->
<ui_properties>
...
<!-- Scores table displayed in the middle of the screen -->
<scorestable alt_visible="true" visible="true" />
</ui_properties>
"
]
```

### Trackmania.UI.ResetProperties

Expand Down

0 comments on commit ef6aaf1

Please sign in to comment.