2012-08-25 21:11:54 +02:00
|
|
|
Panel
|
|
|
|
OptionCheckBox
|
|
|
|
id: classicControl
|
|
|
|
!text: tr('Classic control')
|
|
|
|
|
|
|
|
OptionCheckBox
|
|
|
|
id: autoChaseOverride
|
|
|
|
!text: tr('Allow auto chase override')
|
2013-01-23 18:35:43 +01:00
|
|
|
|
2012-08-26 06:27:30 +02:00
|
|
|
OptionCheckBox
|
|
|
|
id: smartWalk
|
|
|
|
!text: tr('Enable smart walking')
|
|
|
|
!tooltip: tr('Will detect when to use diagonal step based on the\nkeys you are pressing')
|
2012-08-25 21:11:54 +02:00
|
|
|
|
2013-02-26 20:37:02 +01:00
|
|
|
OptionCheckBox
|
|
|
|
id: dashWalk
|
|
|
|
!text: tr('Enable dash walking')
|
|
|
|
!tooltip: tr('Will boost your walk on high speed characters')
|
|
|
|
|
2012-08-26 06:27:30 +02:00
|
|
|
OptionCheckBox
|
|
|
|
id: showPing
|
|
|
|
!text: tr('Show connection ping')
|
|
|
|
!tooltip: tr('Display connection speed to the server (milliseconds)')
|
2012-08-25 21:11:54 +02:00
|
|
|
|
|
|
|
OptionCheckBox
|
|
|
|
id: showLeftPanel
|
|
|
|
!text: tr('Show left panel')
|
2013-01-23 18:35:43 +01:00
|
|
|
|
2013-02-01 15:38:17 +01:00
|
|
|
OptionCheckBox
|
|
|
|
id: displayNames
|
|
|
|
!text: tr('Display creature names')
|
|
|
|
|
|
|
|
OptionCheckBox
|
|
|
|
id: displayHealth
|
|
|
|
!text: tr('Display creature health bars')
|
|
|
|
|
2017-11-07 07:23:25 +01:00
|
|
|
OptionCheckBox
|
|
|
|
id: displayMana
|
|
|
|
!text: tr('Display player mana bar')
|
|
|
|
|
2013-02-01 15:38:17 +01:00
|
|
|
OptionCheckBox
|
|
|
|
id: displayText
|
|
|
|
!text: tr('Display text messages')
|
|
|
|
|
2017-11-16 18:58:58 +01:00
|
|
|
Label
|
|
|
|
id: turnDelayLabel
|
|
|
|
!text: tr('Turn delay: %sms', 30)
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: prev.bottom
|
|
|
|
margin-top: 12
|
|
|
|
@onSetup: |
|
|
|
|
local value = modules.client_options.getOption('turnDelay')
|
|
|
|
self:setText(tr('Turn delay: %dms', value))
|
|
|
|
|
|
|
|
OptionScrollbar
|
|
|
|
id: turnDelay
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: prev.bottom
|
|
|
|
margin-top: 3
|
|
|
|
minimum: 30
|
|
|
|
maximum: 250
|
|
|
|
|
|
|
|
Label
|
|
|
|
id: hotkeyDelayLabel
|
|
|
|
!text: tr('Hotkey delay: %dms', 30)
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: prev.bottom
|
|
|
|
margin-top: 12
|
|
|
|
@onSetup: |
|
|
|
|
local value = modules.client_options.getOption('hotkeyDelay')
|
|
|
|
self:setText(tr('Hotkey delay: %dms', value))
|
|
|
|
|
|
|
|
OptionScrollbar
|
|
|
|
id: hotkeyDelay
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: prev.bottom
|
|
|
|
margin-top: 3
|
|
|
|
minimum: 30
|
|
|
|
maximum: 250
|
|
|
|
|
2013-01-23 18:35:43 +01:00
|
|
|
Button
|
|
|
|
id: changeLocale
|
|
|
|
!text: tr('Change language')
|
|
|
|
@onClick: modules.client_locales.createWindow()
|
|
|
|
anchors.top: prev.bottom
|
|
|
|
anchors.left: prev.left
|
2017-11-16 18:58:58 +01:00
|
|
|
margin-top: 12
|
2013-01-24 17:01:28 +01:00
|
|
|
width: 120
|