> For the complete documentation index, see [llms.txt](https://changelog.matrixemulator.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://changelog.matrixemulator.com/welcome/server/muserver/data/custom/consumableticket.md).

# ConsumableTicket

<mark style="color:green;">Registers items that function as VIP tickets: when the item is used, the player receives the corresponding VIP account type for a specified duration. Maximum of 50 entries.</mark>

```
//LI	II	VT	VD	Comment
0	7421	1	30	//Ticket Vip Silver
1	7422	2	30	//Ticket Vip Bronze
2	7423	3	30	//Ticket Vip Gold
end
```

| Column | Accepted Values                             | Description                                                                                                   |
| ------ | ------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
| LI     | Number                                      | Present in the file, but **not read by the server** — a dead/unused column (only useful as an editor's note). |
| II     | Number (pre-combined item code)             | The item that functions as this VIP ticket.                                                                   |
| VT     | Number (`1` = VIP1, `2` = VIP2, `3` = VIP3) | The VIP account type granted when the ticket is used.                                                         |
| VD     | Number (days)                               | Duration of the VIP status granted.                                                                           |

### <mark style="color:yellow;">Notes</mark>

* The `LI` column is not used by the game — the server identifies each entry using its own internal counter based solely on the order in which the lines appear in the file. You may use any value in `LI`, including duplicates, without affecting behavior.
* Each item can represent **only one** VIP ticket. If the same `II` value appears in multiple entries, only one of them will be considered.
* Using a new ticket only increases the account level (`AccountLevel`) if the ticket's VIP type is equal to or higher than the player's current level. For example, a VIP1 ticket will not downgrade an account that is already VIP2 or VIP3.
