• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OTClient close option after walk

bpm91

Advanced OT User
Joined
May 23, 2019
Messages
1,046
Solutions
7
Reaction score
177
Location
Brazil
YouTube
caruniawikibr
Countwindow.otui
LUA:
CountWindow < LiveMainWindow
  id: countWindow
  !text: tr('Move Objects')
  size: 236 136

  SpinBox
    id: spinBox
    anchors.left: parent.left
    anchors.top: parent.top
    width: 1
    height: 1
    phantom: true
    margin-top: 2
    focusable: true
    opacity: 0

  ItemClean
    id: item
    anchors.top: parent.top
    anchors.left: parent.left
    margin: 14 0 0 13
    focusable: false
    virtual: true

  Label
    !text: tr('Set the number of' .. '\n' .. 'items you want to move:')
    text-auto-resize: true
    anchors.bottom: next.top
    anchors.left: next.left
    margin-bottom: 6
    margin-left: -1

  HorizontalScrollBar
    id: countScrollBar
    anchors.bottom: next.top
    anchors.left: parent.left
    anchors.right: parent.right
    margin: 0 14 21 59
    focusable: false

  HorizontalSeparator
    anchors.left: parent.left
    anchors.right: parent.right
    anchors.bottom: parent.bottom
    margin: 0 9 34 9

  ClassicButton43
    id: buttonOk
    !text: tr('Ok')
    anchors.right: next.left
    anchors.bottom: parent.bottom
    margin-bottom: 6
    margin-right: 11
    focusable: false
    
  ClassicButton43
    id: buttonCancel
    !text: tr('Cancel')
    anchors.bottom: parent.bottom
    anchors.right: parent.right
    margin-bottom: 6
    margin-right: 9
    focusable: false
1727519993675.webp

When walking, this window should close, but it stays open even when walking, does anyone know which file or how to fix this?

otcv8
 
Back
Top