mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00

* Renamed game_textbooks to game_textwindow. * Fixed text window from opening multiple times, and is destroyed correctly. * Added new game_playerdeath module (moved death message and window here). * Hotkey window will hide on game end. * Logout/Exit/Stackable Items/Questlog/Hotkeys windows will now close on game end.
30 lines
738 B
Plaintext
30 lines
738 B
Plaintext
DeathWindow < MainWindow
|
|
id: deathWindow
|
|
!text: tr('You are dead')
|
|
size: 350 155
|
|
|
|
Label
|
|
!text: tr('Alas! Brave adventurer, you have met a sad fate.\nBut do not despair, for the gods will bring you back\ninto this world in exchange for a small sacrifice\n\nSimply click on Ok to resume your journeys!')
|
|
width: 550
|
|
height: 140
|
|
anchors.left: parent.left
|
|
anchors.top: parent.top
|
|
margin-left: 10
|
|
margin-top: 2
|
|
|
|
Button
|
|
id: buttonOk
|
|
!text: tr('Ok')
|
|
width: 64
|
|
anchors.left: parent.left
|
|
anchors.bottom: parent.bottom
|
|
margin-left: 160
|
|
|
|
Button
|
|
id: buttonCancel
|
|
!text: tr('Cancel')
|
|
width: 64
|
|
anchors.left: prev.right
|
|
anchors.bottom: parent.bottom
|
|
margin-left: 5
|