Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ Beyond of it's flexibility with scripts, otclient comes with tons of other featu
<summary>Layout based on tibia 13 by @marcosvf132</summary>

- by [@marcosvf132](https://github.com/marcosvf132)
- Game_shop v8
- Game_shop based in Store by [@Oskar1121](https://github.com/Oskar1121/Store) and modified/fixed by [@Nottinghster](https://github.com/Nottinghster/)
- Minimap WorldTime

- tfs c++(old): `void ProtocolGame::sendWorldTime()`
Expand Down
41 changes: 41 additions & 0 deletions modules/game_shop/changename.otui
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
MainWindow
size: 400 125
!text: 'Enter New Character Name'
@onEnter: modules.game_shop.confirmChangeName()

Button
id: buttonCancel
anchors.bottom: parent.bottom
anchors.right: parent.right
!text: 'Cancel'
width: 64
@onClick: modules.game_shop.cancelChangeName()

Button
id: buttonConfirm
anchors.bottom: parent.bottom
anchors.right: prev.left
margin-right: 13
!text: 'Ok'
width: 64
@onClick: modules.game_shop.confirmChangeName()

HorizontalSeparator
anchors.bottom: prev.top
anchors.right: parent.right
anchors.left: parent.left
margin-bottom: 10

Label
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
text-align: top
!text: 'Please enter the new name for your character:'

TextEdit
id: targetName
anchors.top: prev.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-top: 5
Loading
Loading