MadelineProto/docs/TD_docs/constructors/messageGameScore.md

47 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: messageGameScore
description: New high score was achieved in a game
---
## Constructor: messageGameScore
[Back to constructors index](index.md)
New high score was achieved in a game
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|game\_message\_id|[long](../types/long.md) | Yes|Identifier of the message with the game, can be identifier of the deleted message|
|game\_id|[long](../types/long.md) | Yes|Identifier of the game, may be different from the games presented in the message with the game|
|score|[int](../types/int.md) | Yes|New score|
### Type: [MessageContent](../types/MessageContent.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$messageGameScore = ['_' => 'messageGameScore', 'game_message_id' => long, 'game_id' => long, 'score' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "messageGameScore", "game_message_id": long, "game_id": long, "score": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
messageGameScore={_='messageGameScore', game_message_id=long, game_id=long, score=int}
```