summaryrefslogblamecommitdiff
path: root/ChangeLog
blob: 92eaf648da57831fdc3516589de6d7d1ebc3e4f7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
















                                                     










                                                  










                                                                    






















                                                                          

















                                                                                 















                                                            













                                                      
























                                                           














                                                               




























                                                                         












                                                                                   
















                                                                         











                                                             



                                             
                           











                                                                 













                                                                                                




















                                                                                   










                                                               













                                                         














                                                                               
                               
         























                                                                   



















                                                         






















                                                                        









                                                                                   
















                                                         














                                                                        















                                                     

















                                                                         















                                                                    












                                                                                                 




                                                       
                               









                                                                                 
 












                                                                                       

                              




                                                              
 













                                                        









                                                                   
                                 


                         














                                                                          









                                                                                          




                                                                              
                                                                    









                                                                                   






























































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                  
2012-06-10 New release 1.2.6.10
fix: incorrect animation (hair bug).
fix: keys conflict in login dialog.
fix: kill stats on levelup.
fix: stay animation in beings without dead animation.
add: player relations to whisper chat context menu.
add: per hair style own palete (evol).
add: sittop animation (evol).
add: ground top collision flag (evol).
add: hide botchecker button by default.
add: improve image loading in OpenGL renderers.
add: improve dye speed.
add: footer to help window.
add: per server news in help window.
add: use actual desktop dir for screenshots in linux.
add: to npc option to disallow select npc.

2012-05-27 New release 1.2.5.27
fix: tips translations.
fix: joystick repeat key presses.
fix: minimap show/hide on windows.
fix: dehardcode some old paths.
add: button detect best video mode (windows only).
add: autodetect best video mode at first start.
add: disable by default autofix position.
add: prevent from healing enemies.
add: option to hide nick for erased players.

2012-05-12 New release 1.2.5.12
fix: keys for Next chat line/previous chat line.
fix: autologin from command line.
fix: move shortcuts windows.
add: timeout option between connections to servers.
add: pickup filter.
add: replace obsolete opengl code.
add: custom autorepeat for some actions.
add; option for auto attack next target if attack was not cancelled.
Disabled by default.

2012-04-29 New release 1.2.4.29
fix: bluring setting apply.
fix: split long lines in kill stats window.
fix: actions translation.
fix: vsync setting.
fix: improved in game visible position calculation.
add: keyboard repeat setting.
add: split input settings to tabs.
add: separate configurable shorcuts for emotes, shorcuts, move to target.
add: deharcode gui input keys.
add: improve keyboard handling in some dialogs.
add: autoclean configuration file from old keys.
add: option to center window on screen (windows, osx).
add: audio frequency and channels options to audio tab.
add: particle physics setting. (normal by default).
add: for OpenGL add option to enable/disable texture compression.
add: for OpenGL add option to enable/disable rectangular textures support.
add: in debug window add LPS counter near FPS.
add: write to log OpenGL info.
add: support for server independent updates.
add: improve perfomance.
add: update mplus font.

2012-04-15 New release 1.2.4.15
fix: cancel update fix.
fix: multiple conflicts between windows and game keys.
fix: random crash in chat update.
fix: possible crash after connecting to game.
fix: assign keys before connecting to game.
fix: cmake build flags.
add: proxy support for download updates.
add: change autohide buttons to three state (hide/show/hide in small resolution).
add: show client version in game window header.
add: clear in drops window context menu.
add: improve fill rectange speed in software mode.
add: option for enable disable textures blurring.
by default enabled.
add: allow assign 3 keys or joystick buttons to any action.
add: unselect item inventory if it was added to other windows.
add: extend sdl unknown keys for usage in any actions.

2012-04-01 New release 1.2.4.1
fix: validate assigned keys on load.
fix: animated tiles drawing in opengl modes.
fix: copy to clipboard.
fix: chat item links.
fix: online list auto update after error.
fix: outfits items adding/removing.
add: multi language help.
add: protect autocomplete from evil nicks.
add: theme blacknblack (kook).
add: redesign input handling.
add: extend xml animation tags.
add: autohide buttons on top right corner.
add: autohide chat window if inactive (disabled by default).
add: remove packet limits for changing direction.

2012-03-18 New release 1.2.3.18
fix: minimaps scrolling with moving camera.
fix: context menu in outfits window.
fix: shortcuts creation in windows portable version.
fix: volume in afk mode if was disconnect from server.
add: many update hosts. (evol only)
add: dye mode S.
add: support for unknown for SDL keys bindings.
add: basic skills actions.
add: allow add skills to shortcuts bar.
add: per race equipment sprites.
add: remove second "equip" button.
add: neutral other gender.

2012-03-04 New release 1.2.3.4
fix: loading client data translations.
fix: display translated xp+job messages.
fix: default paramters value.
fix: last frame delay in dead sprite actions.
fix: don't show errors for missing emotes.
fix: drawing big minimaps.
fix: ignore shortcuts keys in npc menu and in inventory.
fix: npc menu keyboard navigation.
fix: default npc dialog size.
fix: some copyrights.
fix: possible crashes.
add: visual settings page.
add: option to grab input.
add: move some settings and new to page visual in settings.
add: different sound effects for different messages.
can be configured in audio settings page.
add: resize minimaps.
add: context menu for minimaps.
add: gdb to windows build.
add: show latest client version in update news.
add: option for for creating screenshots with FBO.
If enable, can fix opengl screenshots issue.
add: update liberation fonts.

2012-02-19 New release 1.2.2.19
add: client data translations (items, etc).
add: increased max value for drop counter from 9 to 30.
add: chat command /setdrop N. to set drop counter from scripts.
add: hide map layers feature.
add: show gms with green color in online list (evol server).
add: relative position for floor items (item drops).
add: option to enable/disable grouping friends in online list.
add: enable chat logging by default.
add: set default max chat lines to 40.
add: update windows libs.
add: center game on screen in windows and osx.
add: race name to status and debug windows.
add: update liberation and mplus fonts.

2012-02-05 New release 1.2.2.5
ManaPlus:
fix: particle font in japan localisation.
fix: some untranslated strings.
fix: possible crash after switching servers.
fix: option "attack range" in evol server.
fix: drop counter with enabled "buggy servers protection".
fix: empty custom update server.
add: request client language from server. (evol server)
add: moving camera by npc commands. (evol server)
add: evol branding in windows installer.
add: extended online list. (evol server)
add: redesign char creation dialog.
add: resize window from video settings tab.
add: option to enable/disable window resize.
add: option to show/hide window frame border.
add: 3 new emotes by (Nina O'Reilly)
add: support for 48 emotes.
add: redesign servers list dialog, using new server editor.
add: increase login dialog size.
add: use translation for description in servers dialog.

Mana:
fix: infinite character selection with command line parameter --character
add: resize update window.
add: separate server editor.
add: possible improve loading images/music.
add: game window resize.

2012-01-22 New release 1.2.1.22
fix: bad update hosts handling.
fix: possible crashes.
fix: player name checking in logging.
fix: default shortcuts window size.
fix: player and mob hp bar in evol server.
fix: mouse pickup logic.
fix: adding double attributes to status window.
fix: ambient layer drawing in safe opengl mode.
add: increase resize and moving areas in shortcut window and other similar windows.
add: friends tab in social window.
add: load all servers from list in server dialog.

2012-01-08 New release 1.2.1.8
fix: -s command line parameter.
fix: restore GL_PACK_ALIGNMENT after creating screenshots in opengl modes
fix: rare crash with reconnecting to different servers.
fix: color for /me messages in wood theme.
fix: crash in char autocomplete if no active tab in chat window.
fix: bold chat/npc text correction.
add: allow close npc dialog if script stopped with error.
add: clear outfit option in outfits context menu.
add: ability to test graphics and sound perfomance and stability.
Shortcut ManaPlus (test). Need close all other ManaPlus instances.
add: chat command /dumpt to dump last test values.
add: addiitional checks for unsecure chars combinations in players nicks.
add: allow use item replacment with empty from value.
This mean replace from any value.
add: remove "> Next" message from npc dialogs.

2011-12-25 New release 1.1.12.25
fix: increasing log file if client disconnected from network.
fix: memory leak in evol online list.
fix: enter some chars in inventory input box.
fix: some rare used packets.
fix: dont load move type from configuration file.
fix: create char dialog size.
fix: wrong auto adjusting perfomance after sleep mode.
add: last login time in char selection dialog.
add: update mplus font.
add: move target cursors to themes.

2011-12-11 New release 1.1.12.11
fix: draw damage part on hp bar.
fix: recursive directory creation on windows.
fix: text colors in wood theme.
fix: talk to npc key delay.
add: polish translation (Derpella).
add: server side online list (evol only).
add: copy any line from chat to clipboard.
add: use two clipboard in xserver.
add: gm commands autocomplete for gms.
add: to combined menus floor items.
add: variables for replacment in chat messages.
<PLAYER> - target or nearest player nick.
<MONSTER> - target or nearest monster name.
<PEOPLE> - comma separated list of visible players (except self).
<PARTY> - all party members (except self).

2011-11-27 New release 1.1.11.27
ManaPlus:
fix: show enemy relation in online list.
fix: dead monsters and floor items poisition.
fix: file name conflicts between skins and client data files.
add: update ru and es translations.
add: change chat log save path to yyyy-mm/dd/file.log.
add: support for incomplete replace tag for items for compotability with future version of mana.
add: background images for equipment window.
add: whisper player name in autocomplete list.
add: show yellow bar mode changes in debug chat tab.
add: limits for hair color and style for char creation dialog.
add: different animations depend on monster hp (only for evol).

2011-11-12 New release 1.1.11.12
ManaPlus:
fix: hide death message on reconnect.
fix: stop move after open npc dialog.
fix: disable incomplete hr, hy translations.
fix: self player ignore.
fix: double network error dialog.
fix: joystick support.
fix: random key press loses.
add: pseudo away.
Command: /pseudoaway text
add: enemy relation. (no any ignore, but mark player as enemy)
add: option for attack players in pvp "Switch pvp attack". Default key not assigned
add: interface language selection.
Settings / Theme / Language.
add: Bold text type in chat. (To enable command ##B, to disable ##b)
Example: ##Bbold##b text.
add: update mplus fonts.
add: joystick selection, option for joystick usage only in active game.
add: enable joystick hat (if exists).

2011-10-30 New release 1.1.10.30
ManaPlus:
fix: disable autofix position for archer mode.
fix; hide password from packets log.
fix: replace tags without item id in items.xml.
fix: protect trades from some kind of abusing.
add: chat commands to use server side ignore for whispers:
Commands: /serverignoreall and /serverunignoreall
add: command for dump graphics and some other settings to chat.
Command: /dumpg

2011-10-16 New release 1.1.10.16
ManaPlus:
fix: particle effects Y position.
fix: resize in some dialogs.
fix: codeblocks project file.
fix: global messages sound highlight.
fix: last character selection with space in login dialog.
fix: fps if network error.
add: move to target mode for archers/mages.
add: blacklist relation.
add: reading real monsters attack range (in evol only).
add: option to show hide MVP messages.
add: update mplus fonts.

2011-10-02 New release 1.1.10.2
ManaPlus:
fix: inactive state.
fix: hide inventory filter if window too small.
fix: mouse selection.
fix: speed in targeting monsters.
fix: move to target in attack range.
add: comment for spells/commands.
add: split keyboard keys to groups.
add: chat or other windows scrolling with dragging mouse.
add: limits for stop attack packet.
add: show current experience after max level (for tmw after 99 level).
add: untarget key. it not stop attack but remove selection from current target.
add: amount field in buy dialog.

2011-09-18 New release 1.1.9.18
ManaPlus:
fix: restore windows visible state after restart.
fix: players sorting in relation and party tab.
fix: configuration settings in first start.
fix: animation moving animation with mouse and some other.
fix: reorder sprites if disabled in settings.
fix: disable config copy from ancient tmw versions.
fix: chat autocomplete case.
fix: change player state from sit to stay if under attack.
fix: whisper errors detection.
add: options to configure lazy scrolling.
add: move by minimaps clicks.
add: copy text to clipboard by CTRL+C.
add: additional sorting to inventory: by wight, by amount, by type.
add: inventory filter by item name.
add: per window visual configuration in themes.
add: add item move to context menu for party members.
add: configuration buttons in initial game window.
add: theme unity (by Freya).
add: Czech (cs) translation (by Pitriss).
add: improve game speed.

Mana:
fix: draw overlay in opengl mode.

2011-09-04 New release 1.1.9.4
ManaPlus:
fix: compilation with different flags.
fix: possible fix with incorrect camera position.
fix: replace sprite issues.
fix: some crashes.
add: hightlight words list in chat.
add: many colors for themes.
add: alien emote (DerLoisl).
add: basic auction bot integration.
add: guild bot integration.
add: impore guild members list sorting.
add: auto download content fixes.
add: show guild members on minimap.
add: always show party members in minimap if on same map.
add: lock windows position (at top right window corner).
add: update mplus fonts.
add: attribute damage per second.
add: option to disable self heal with mouse.

2011-08-21 New release 1.1.8.21
ManaPlus:
fix: moving near npc.
fix: crash in server dialog if press load button twice.
fix: saving opened whisper tabs.
fix: hide/show setup window by hot key.
fix: show shop sign on players only if shop enabled and shop not empty.
fix: chat auto scroll.
fix: mode with switching bow to knife.
fix: adding limits to adding items to trade.
fix: perfomance issue with invisible npcs.
add: auto improve perfomance by disabling different draphics features.
add: perfomance tab. most perfomance related settings moved to this tab.
add: new perfomance related options to perfomance tab.
add: split players setup tab to relations and players.
add: ability to add comments to npcs.
add: option to hide ip addresses on screen shots.
add: warp menu item navigation points menu (for gms only).
add: copy to chat button in status window to copy player stats to chat.
add: enable auto switching to janapese font if used japan locale.
add: update dejavu and mplus fonts.
add: updated translations.

2011-08-07 New release 1.1.8.7
ManaPlus:
fix: player attack animation length.
fix: random opacity issue in complex sprites in software mode.
fix: compilation in manaserv mode.
fix: adjust wait time after pasting text. possible should fix multiply paste issue.
add: improve perfomance in caching complex sprites in software mode.
add: improve perfomance with max opacity in software mode.
add: different keys in edit fields.

2011-07-24 New release 1.1.7.24
ManaPlus:
fix: compilation without opengl.
fix: crash with other players equipment window.
fix: improve speed.
fix: compilation in big endian systems.
fix: opengl configure flag for mac os.
fix: rectangle draw bug in some systems in software mode.
add: close popup menu by esc key.
add: keys for quick add items to trade
add: shortcut key to close current chat tab.
by default unassigned.
add: uninstall before install in windows installer.
add: multi user support in windows installer.
add: new update check url.
add: updated translations.

2011-07-10 New release 1.1.7.10
ManaPlus:
fix: char deletion
fix: improve speed.
fix: improve speed in software mode.
fix: some memory leaks.
fix: music fadeout.
fix: crash in reconnecting to servers.
add: make script for MacOS with fink.
add: updated mplus and libiration fonts.
add: player statuses: enabled shop, away and inactive mode.
add: map reduce mode usefull for sftware drawing mode (improving speed).
add: updated translations.
add: redesign video tab in settings.

2011-06-26 New release 1.1.6.26
ManaPlus:
fix: context menu positions.
fix: copy equiped to outfits.
fix: revert video resolutiion changes if new is fail.
fix: some more memory leaks.
add: own comments to players.
add: option to use local time in chat.
Can be changed here: SET / Chat / Use local time.
add: redesigned setup pages.
add: missing video modes.
add: updated some windows libs.
add: tooltips in skills dialog.
add: archlinux PKGBUILD file.


2011-06-12 New release 1.1.6.12
ManaPlus:
fix: outfits item selection.
fix: item slots in "show items" menu item.
fix: memory leaks.
fix: item colors in different windows.
add: secure font for highlighting incorrect nicks.
add: gender sign with any players names.
add: extend quick move items from inventory and back (LSHIFT)
modifier key + left click - move all items from/to storage.
modifier key + right clikc - show window for amount selection for moving.
modifier key + drop button - drop all items from selected slot.
add: add "drop all" to context menu.
add: menu item to copy text from bars to chat.
add: did you know window.
add: improve software draw mode (SDL) speed.


2011-05-29 New release 1.1.5.29
ManaPlus:
fix: infinite paste.
fix: remove home location by mouse.
fix: walk path in special collision.
fix: restore color hightlight smaller money in trade window.
add: moved classic theme to default. Default theme renamed to Mana.
add: support for images in help window.
add: evol server type (now it works same as tmw)
add: show other players equipment by context menu item "show items".
add: updated translations.
add: complete Finnish translation (Byakushin).
add: secure trades option to protect trade from some kind of cheats.
add: show speach popup variable. time depend on message size.


2011-05-15 New release 1.1.5.15
ManaPlus:
fix: targeting monster if monster added to priority attack list and "cycle mobs select" disabled.
fix: improved text cache cleaning.
fix: chat tab incorrect size if enabled hiding chat input line.
add: ask password before deleting char.
add: save attack filter.
add: updated japan fonts.
add: improved moving with mouse.
add: spanish help translation.
add: air and water collisions (incompotable with tmw).


2011-05-01 New release 1.1.5.1
ManaPlus:
fix: some controls draw issue in SDL software mode.
fix: map objects drawing. (incompotable with tmw maps).
fix: default values for new configurations.
fix: crash with incorrect maps.
add: away log.
add: attack filter.
new tab in social window.
new chat commands /addattack, /removeattack, /addignoreattack, /addpriorityattack
add: reset yellow bar context menu item.
add: spec file for rpm distros (mageia).

Mana:
add: music fadeout.


2011-04-17 New release 1.1.4.17
ManaPlus:
fix: add to trade menu item in inventory context menu.
fix: update error if update file list have empty lines (like in aethyra).
fix: manaserv support deprecated. By default all compilation scripts ignoring manaserv.
fix: inventory equip/unequip buttons.
fix: protected pickups spam.
fix: show unknown items in inventory.
add: moved help from chat to help window.
add: update progress files counter.
add: custom autocomplete words list. Place in customwords.txt.
add: dont waste chat space if input box is hidden.

2011-04-03 New release 1.1.4.3
ManaPlus:
fix: improve opengl speed.
fix: update ru, pt, pt_BR, fr, es translations.
add: remove nicks in whisper. Usefull for bots like guild bot.
add: no away option in whisper context menu.
add: save chat tabs options between client restarts.

2011-03-20 New release 1.1.3.20
ManaPlus:
fix: other players directions while moving.
fix: being direction while attacking.
fix: other players animation while moving.
fix: mouse pickup from big distance.
add: show message in party tab if some on join party.
add: /uptime chat command to show current client update.
add: small optimisation in software drawing mode (SDL).

Mana:
add: scroll buttons in chat tabs.


2011-03-06 New release 1.1.3.6
ManaPlus:
fix: remove extra spaces from chat commands.
fix: possible fix for pasting from clipboard in X system.
fix: partially opacity in extended minimaps.
add: add to trade items in item context menu.
add: tabs to spells window.
add: check already downloaded files intergrity.
add: pink theme (Freya).
add: updated pt_BR translation some lines from mana client (Freya).
add: updated russian translation.
add: update dejavu fonts.


2011-02-20 New release 1.1.2.20
ManaPlus:
fix: stop/start playung music after changing option.
add: show/hide buttons in top right corner.
right click on buttons open menu.
add: show/hide bars in top right corner.
right click on bars open menu.
add: extended minimaps (Ben Longbons).
add: npc gender. (only for extended servers)
add: hiding equipment sprites by attributes (need support in client data).
add: weight notice dialogs not modal and auto hiding after 10 seconds.
add: show amount in pickup particles.
add: new bars Weight bar, Inventory slots bar, Money bar, Arrows bar.


2011-02-06 New release 1.1.2.6.
ManaPlus:
fix: crashes.
fix: close npc dialogs in different actions like change character/server or network error.
fix: dont show random navigation point with coord 0,0.
fix: update item amount in sell dialog.
add: japanese fonts mplus 1p regular and mplus 1p bold.
add: option to enable/disable players popups.


2011-01-30 New release 1.1.1.30.
ManaPlus:
fix: stuck on disconnections while opened modal window.
fix: allow use rock knife in auto switching weapons.
fix: issue with invisible items in inventory after moving to and from storage.
fix: mouse cursors in wood and blackandwhite themes. (Nina O'Reilly)
add: show job bar in ministatus window.
add: diagonal move animation (need support in client data).
add: recovery on broken server job level and job level max experience.
add: floor item icon different from normal item icon (need support in client data).
add: show unknown skills in skills window.
add: show job xp after mob kill.
add: support for zlib map compression.
add: updated russian translation.


2011-01-16 New release 1.1.1.16.
ManaPlus:
fix: hide own hp bar if dead.
fix: equipment window.
add: inventory filter and sorter.
add: increased char slots number from 3 to 9 per each account.
Also add support for configurable char slots number in exended servers.
add: option to force connection to only one ip for all three servers (char, login, map).
Usefull for port mapping connections.
add: updated russian translation.

Mana:
add: updated german and french translation.


2011-01-09 New release 1.1.1.9.
ManaPlus:
fix: some strings translation support.
add: increase items slots support from 11 to 13.
add: new 4 emotes (Nina O'Reilly).
add: increased max emotes count to 44.
add: sound volume depend on distance to sound source point.
add: update russian translation.

Mana:
add: update french and spain translation.


2010-12-26 New release 1.0.12.26.
ManaPlus:
fix: manaserv a bit working now.
tested on woa server.
fix: spawned mobs with already taken damage.
fix: some chat crashes.
add: walk delay parameter in status window.
add: mob hp bar in selected mob.
add: tabs in shortcuts bar.
add: updated russian translation.

Mana:


2010-12-12 New release 1.0.12.12.
ManaPlus:
add: variables <TARGET> and <TARGETID> and <TARGETORSELF> in spells / text commands.
add: show weight message if weight was more then half and now less then half.
add: show attack range in status window.
add: offset of target cursor in monster and npc.
add: ability to dinamically change drawing player sprites order.

Mana:
add: support for tiles with aligment.


2010-11-28 New release 1.0.11.28.
ManaPlus:
fix: enter space in npc dialogs.
fix: popup xp messages flood.
fix: move all server messages if need to debug tab.
fix: visibility of moved npc.
add: show pvp rank in pvp maps.
add: show is pvp enabled on map or not.
add: shortcut keys to switch between social window tabs.
by default unassigned.
add: store/retreive 10, half, all.

Mana:


2010-11-14 New release 1.0.11.14.
ManaPlus:
fix: level percent in kill stats window.
fix: setting walkable tile alpha setting.
fix: freze with incorrect image set.
add: tooltips for emote shortcuts.
add: show short keys on map signs and warps.
add: distance 2 in move to distance.
add: improve speed in SDL (Software) mode.
add: safe opengl support, like in old tmw versions.
add: small speed improvements.
add: actors count in debug window.
add: move "show own name" from video to players tab.
add: battle chat tab and battle event.
Disable by default.
add: color hightlight if trade partner lower money.
add: custom update host.
Can be usefull if normal update server is dead.
To enable in login dialog select custom update type and put new update host url in text field. (custom host for tmw server is http://manaplus.jonklo.net/updates/)

Mana:


2010-10-31 New release 1.0.10.31.
ManaPlus:
fix: who is online list if used --server parameter.
fix: reenable portable mode for all platforms.
fix: update visible player levels.
fix: equip type for some items in TAW server.
fix: attack animation in TMW server and some clones.
add: option to hide warps particles.
SET / misc / Show warp particles.
by default warp particles disabled.
add: option to allow start buy/sell trade without asking player.
SET / misc / Accept sell/buy requests.
add: sorting player in party and guild tabs.
add: extended context menu to many players in one tile.
show submenus for each player in tile.
add: shortucts option in windows installer.
add: auto remove very old font cache items.
add: update russian translation.
add: new pumpkin smile. (Nina O'Reilly)

Mana:


2010-10-19 New release 1.0.10.19.
ManaPlus:
fix: command line switch -u now working like in mana client.
fix: crash on drawing incorrect strings.
fix: possible crash on exit.
add: disabled special chars by char codes for platinum server (because on this server players using many ugly clients).

Mana:


2010-10-17 New release 1.0.10.17.
ManaPlus:
fix: disable portable mode in non windows systems.
fix: improve speed in disabled opengl mode and opacity = 1. (based on idea from mana client)
add: /wait chat command. It play sound if find being with requested name.
add: chat autocomplete for mob names.
add: hot key for who is online window. (unassigned)
add: show players ip in social window. (only for GM's)
add: special chars by char codes &xxx;.
Example: &33; is !.
add: option in settings to disable quick stats assign.

Mana:


2010-10-05 New release 1.0.10.5.
ManaPlus:
fix: possible client stuck.
add: show killer name in debug tab.
add: enable/disable sound hightlight per tab.
can be enabled/disable from chat tab context menu.

Mana:


2010-10-04 New release 1.0.10.4.
ManaPlus:
fix: emote key + cursor keys to change direction.
fix: emotes in popup window.
fix: possible crashes.

Mana:


2010-10-03 New release 1.0.10.3.
ManaPlus:
fix: opacity cache.
add: quick increase stats.
now not working on windows.
add: portable mode.
In windows installer need select portable option.
add: add basic guild support.
guild chat commands:
/createguild name - create new guild.
/invite nick - invite player to guild.
/kick nick - kick player from uild.
/notice text - change guild notice.
/info - show info about guild.
/leave - leave guild.
Note: to create guild you should have snake egg in inventory.
add: increase item shortcuts count to 20.
add: increase emote shortcuts count to 40.
add: 19 server independent smiles. (Nina O'Reilly)
new smiles supported only by manaplus clients.
add: updated help. (Mihail Barer).

Mana:


2010-09-19 New release 1.0.9.19.
ManaPlus:
fix: improve chat resize speed.
fix: invisible objects with disabled opengl, like pinkies.
fix: resize windows from top corners.
add: opacity cache to improve game speed with disabled opengl.
Warning: some times it may crash client.
To enable SET \ Video \ Enable opacity cache.
add: increase outfits count from 80 to 100.
add: increase outfit slots from 9 to 12.
add: support zip archives in per server local updates dir.
add: support update patches zips.
in this dir local resources can have bigger priority over resources from update server.
Example dir in linux: ~/.local/share/mana/updates/updates.themanaworld.org/fix/
In this directory you can place http://tmw.cetki.com/other/update-96b7ecd..eeac43f.zip to fix moggun issue.
add: moving windows by dragging window from any empty space.
add: option to disable/enable attack while moving.
add: context menu in who is online window.
add: updated russian translation.

Mana:


2010-09-12 New release 1.0.9.12.
ManaPlus:
fix: set map arrows.
fix: draw map arrows.
fix: improved chat draw speed.
fix: improved game speed.
add: /undress chat command and popup menu item.
This command remove all clothes from selected player. This changes only local.
add: /attack chat command.
add: icons to spells / text commands.
add: /outfit next, /outfit prev commands.
add: /dirs chat command to show game dirs.

Mana:


2010-09-04 New release 1.0.9.4.
ManaPlus:
fix: updating servers list.
fix: warp removing from map.
fix: in away mode drop fps only if game inactive.
fix: crash on exit on tmw server.
add: server side attack mode.
add: free camera mode ([+]).
In this mode camera can be moved by cursor keys.
add: draw screen border in minimap.
add: play sound if you receive global message and game inactive.
add: dont highlight party tab if got server message on it.
add: change color on players, who attacking local player.
add: place away dialog on top of screen.
add: option to disable auto fix position.

Mana:
fix: focus on char select dialog.


2010-08-29 New release 1.0.8.29.
ManaPlus:
fix: walk between maps in e map modes.
fix: funny symbols and item links.
fix: visible names option.
fix: trying avoid server packets bug also in default attack mode.
fix: changed attack time limit to avoid new server bugs.
fix: disable hot keys in npc input dialogs.
fix: crash if client have some corrupted images.
fix: compilation for gcc 4.5.
fix: compilation with flag --without-opengl.
add: new map mode. symbol b. (f)
add: removed length limit in build walk path.
add: play whisper sound if new message in active whisper and game not active.
add: navigation tab in social window.
left click go to selected target.
add: key to move to location from navigation tab in social window (RSHIFT + 0-9)
Key like outfits but only mod key is right shift.
add: show items refine level.
add: continue attack if player moved.
add: attack target after moving to it by attack key (x).
add: switching to already opened whisper tab.
add: per server local updates dir.
in this dir can be placed local resources.
Example dir in linux: ~/.local/share/mana/updates/updates.themanaworld.org/local/

Mana:


2010-08-15 New release 1.0.8.15.
ManaPlus:
fix: battle sfx sound.
fix: gui sound in deb packages.
fix: show own player level.
fix: colors in black wood theme (lien).
fix: crash with -p command line option.
add: /disconnect chat command.
add: tooltips for control buttons (right top corner).
add: /me command in whisper and party tabs.
add: show level if possible in online list.

Mana:


2010-08-03 New release 1.0.8.3.
ManaPlus:
fix: money display bug.

Mana:


2010-08-01 New release 1.0.8.1.
ManaPlus:
fix: improve speed.
fix: adjust money field size in trade dialog.
add: show GM level near level in status window.
add: attribute Attack Delay in status window.
To open this windows, press F2.
add: increased number of servers from 6 to 15 in server dialog.
add: restore whispers between client restarts.
add: set fps limit to alternate value in away mode or if game minimized.
add: disable any sound and music in away mode.
add: antispoof chat protection.
add: option to auto close or skip updates in login window.
add: server name in login window.
add: theme black wood (lien).

Mana:
fix: fps limiter on windows.


2010-07-18 New release 1.0.7.18.
ManaPlus:
fix: moved mumble from recommended to suggested in deb packages.
fix: allow set more then 99 stat points, max 120.
Work only on servers with this ability, like UFB server.
fix: show player level.
fix: improve speed in openGL mode.
fix: crash on exit.
fix: dont fix player position in default attack mode.
add: updated russian translation (Schekoldin Ivan).
add: context menu to players in online list.
add: chat commands /befriend, /disregard, /neutral.
add: allow set fps from 2 to 160.
add: allow set gui opacity from 2 to 100 %.

Mana:


2010-07-04 New release 1.0.7.4.
ManaPlus:
fix: problems with font selection.
fix: crashes.
fix: -U command option.
fix: setup window size.
add: help font.
add: updated help.
add: show history in whispers.
add: per server player relations.
add: whisper and dialog ame sfx, gui sfx.
add: experimental support for mumble voice chat.
First start mumble, then start client with enabled mumble option.
add: updated russian translation.
add: safe mode shortcut for windows.

Mana:
fix: chat messages about user offline now showing in player tab.


2010-06-21 New release 1.0.6.21.
ManaPlus:
fix: crash on some servers.

Mana:


2010-06-20 New release 1.0.6.20.
ManaPlus:
fix: avoid server direction bug.
right direction server send as unknown direction.
fix: restore main line attack automation.
add: some russian translation.
add: show popups for players without party.
add: font changes.
To change open SET \ Theme.
add: per server configs.
Moved many server related options to per server configs, like magic spells.
Old values for bars can be restored from context menu.
add: attack mode 'd'.
Attack without auto target next monster.

Mana:


2010-05-31 New release 1.0.5.30.
Patch:
fix: crash from incorrect utf8 chars.
fix: allow registration.
add: moved to master mana branch.

Mana:
fix: improve game speed.


2010-05-23 New release 1.0.5.23.
Patch:
fix: follow modes and navigate.
fix: try avoid new server side bugs with packet limiter.
fix: --skip-update now working.
add: pickup mode A.
Allow pickup items in max distance.
add: allow add any items to buy list in personal shops.
add: improve text draw speed.
add: new imitation mode for imitating outfits.
Switch initation mode by key ([4])
add: allow mark any map positions with arrow sign and comment.
To mark current position while you standing press Set Home Location key ([5]).
To add comment press right button on map arrow.
To add home location, sit and press Set Home Location key ([5]).
add: custom resolution.
To change resolution, click on "custom" resolution.
add: auto change position if cant attack closed being.
add: option to hide move path.
add: change resolution in safe mode to 640x480.

Mana:
fix: crash with disabled opengl.


2010-05-1 New release 1.0.5.1.
Patch:
fix: allow start client if update server is down.
add: show floor item amount, if more then one.
add: improved command /navigate.
add: improved move to target.
add: improved targeting nearest beings.

Mana:

New keys:


2010-04-25 New release 1.0.4.25.
Patch:
fix: dont show shop requests if shop mode disabled.
fix: draw items in outfits even if no this item in inventory.
fix: invite command.
add: option to hide whisper shop messages.
Enabled by default.
add: change color in whisper tab if player go offline.
add: open buy sell window on selected player.
Select player, then press talk key.
add: new follow modes: relative, mirror, pet. ([1])
add: show server side player position.
add: manual mode to fix desync position. (D)
add: add missing help for chat commands.
add: new commands /loadprice, /saveprice.
For load and save prices.
add: new command /trade NICK.
Open trade window.
add: option to send shop announce with or without links to items.
add: partialy right click emulation from keyboard (TAB).
add: translated some string to russian.

Mana:
fix: crashes.
add: clear butotn in npc dialogs.

New keys:

switch follow modes. ([1])
right click emulation (TAB)


2010-04-14 New release 1.0.4.14.
Patch:
fix: item amout window size.
fix: gender display.
add: trade chat tab.
Most trade messages now moving to this tab.
Also players can speak in this tab about trades.
add: speed improvement.
add: button store in config window.
Save configuration file to disk.
add: simplify context menus.
add: personal shop.
To this shop player can add items for buy/sale.
Other players can use it by ser away outfit, and after away it restore old outfit.

Mana:
add: classic skin update.


2010-02-28 New release 1.0.2.28.
Patch:
fix: allow enter in NPC dialogs letters, assigned to prev\next chat tab keys.
fix: dont redirect server messages from party tab.
fix: npc flood with small dialogs.
fix: fixed some crashes.
add: show target player level, nick, party in debug window.
add: command /navigate x y.
add: heal players by click in social window.
add: get player levels from parsing #inwilt result.
add: visible players tab in social window (P tab).
add: actions in social window.
left click - heal
right click - context menu
middle click - whisper
add: damage counter for players.
You can see it in social window in P tab.

Mana:
fix: crash in TAW maps.
add: party windows replaced to social window.
add: party tooltips for players.
add: paste from clipboard.
CTRL+V


2010-02-07 New release 1.0.2.7.
add: health bars in party window.
add: own health in party window.
add: build on latest mana git client.
fix: allow enter numbers in input fields.
fix: segfault in follow.
fix: other small fixes.


2010-01-17 New release 1.0.1.17.
fix: D.o.S. in chat.
fix: D.o.S. in trade.
add: ignore button in trade request.
add: themes (classic, wood, red).
change : SET / theme / gui theme
add: buy/sell in npc context menu.
add: /follow command.
add: /heal command.


2010-01-02 New release 0.12.
fix: random generator in crazy move A.
fix: improved draw chat speed.
fix: fixed /closeall crush.
fix: use workaround to fix clover/towel and some other feature inventory bugs.
Two buttons, one for equip and second for use item.
fix: default Who is online size and position.
add: e? command in crazy move A.
e? show random emotion in crazy move A.
add: limit lines in chat.
change: SET / chat / Limit max lines in chat.
add: clear command in chat context menu.
add: highlight target being by bold font.
add: afk mode. ([2])
change : SET / other / Enable afk message
use: key 2 on numeric keuboard or chat command /away TEXT. (or /away)
add: draw item in item popups.

New keys:
Enable away mode ([2]).


2009-12-13 New release 0.11.
add: highlight player and monsters attack range.
change: set / Other
Highlight Player Attack Range
Highlight Monster Attack Range
add: colors in setup colors for attack range and portals.
change: set / Colors
Local Player Attack Range
Local Player Attack Range Border
Monster Attack Range
Portal Highlight
add: colors in setup for home location, collisions.
change: set / Colors
Home Place
Home Place Border
Collision Highlight
add: key to copy equiped items to outfit (]).
add: key to disable game modifiers ([8]).
add: ping field in debug window.
add: target id in debug window.
add: chat logger.
change: set / chat / Enable Chat Logger
add: /outfit N command.
Wear outfit N.
add: /emote N command.
Show emote N.
add: auto complete party members in party tab.
add: key switching on/off sound ([3]).
add: highlight inactive tab if player name is writed.
change: set / Color / Tab With Player Name Highlight

New keys:
key to copy equiped items to outfit (]).
key to disable game modifiers ([8]).
key switching on/off sound ([3]).


2009-11-29 New release 0.10.
fix: possible crush in update window.
fix: localisation resources in deb packages.
fix: added edit button to crazy move A.
fix: allow using other update servers.
add: auto complete chat key in settings. (TAB)
add: hide input chat key. (ESC)
add: manual update button in online users list and online list resize.
add: set log file name from command line.
add: limit chat messages size.
Change: set / chat / Limit max chars in chat line.

New keys:
Hide input chat key (ESC)

add: manual update button in online users list and online list resize.
add: set log file name from command line.
add: limit chat messages size.
Change: set / chat / Limit max chars in chat line.

New keys:

Hide input chat key. (ESC)

Download



2009-11-15 New release 0.9.
Download  Install in Ubuntu

New features:

fix: remove spaces and (GM) label from GM nicks in onlile list.
new: moved to git sources.
new: popup windows for hp, mp, xp bars.
new: more font sizes in setup.
new: context menu in chat tabs.
new: keys to wear next/previous outfit.
new: Increased outfits count to 40.
Keys for outfits 1 - 0, -, =, backspace, insert, home, q - p, [, ], \, a - l, ;, ', z
new: Increased drop slots to 16.
new: Increased spell shortcuts to 49.
new: New pick up modes g ang G. go and pick up in 4 and 8 cell distance.
new: programmed crazy move type A.
For this crazy move type you can write simple program in set / Other / Crazy move A program.
Allowed commands:
du, dd, dl, dr, d? change direction to up, down, left, right or random.
mu, md, ml, mr, m?, mf, mb move to up, down, left, right, random, forward, backward.
s sit.
on, op wear next outfit, wear previous outfit.
d0, da drop from first slot, drop from all slots.
p pick up.
e0 - e9, ea - ed emotions.
new: /target command.

New keys:

Wear next outfit. (right alt + right)
Wear previous outfit. (right alt + left)

Download



2009-10-25 New release 0.8.
Download

New features:

new: Setting to disable higlighting floor items.
new: Auto complete in chat.
To use press TAB key.
Auto complete visible nicks, commands from Commands Window and from chat history.
new: Show patch update information in update window.

Download



2009-10-18 New release 0.7.
New features:

new: Spells Window renamed to Commands Window.
new: Command (spells) editor.
To use editor, open Commands Window (j), then to open editor, press by right mouse button on spell.
new: Text or GM commands in Commands Window.
Now you can add or edit in Commands Window spells, simple text or GM commands.
new: Command /closeall for close all whisper tabs.
new: Command /ignoreall for ignore all current whispers.
new: highlight drops by time.
remove: no rain.
fix: disable keyboard shortcuts in drop/select item window.



2009-10-11 New release 0.6.
New features:

fix: fixed remove colors.
fix: fixed "Allow magic and GM command in all chat tabs".
new: bot checker. ([)
Warning: may conflict with other key bindings.
Check bindings in set / Keyboard / Bot Checker Window .
By default disabled. To enable, use set / other / enable bot checker
new: in colors picker color numbers replaced to color names.
new: display selected target in debug window.
new: spell shortcuts. (j)
Allow add spell shortcurs to shortcuts window.
To use, select spell in spells window by mouse click, then click on free slot in shortcuts window.
In this versions only predefined spells.

New keys:

Bot checker window. ([)
Spells window. (j)



2009-10-04 New release 0.5.
New features:

fix: possible crush if open emote window.
fix: now work 14 slots in emote window.
fix: some fix for jacko counter.
new: cycle select palyers.
Change: set / other / cycle player targets.
new: cycle select monsters or palyers.
Change: set / other / cycle monster targets.
new: cycle rainbow colors.
new: target name and position in debug window.
new: magic spells and GM commands work in all chat tabs.
Change: set / chat / All magic and GM commands in all chat tabs.
new: move player spell messages to debug window.
Change: set / chat / Log magic messages in debug tab.
new: move server messages to debug window.
Change: set / chat / Show server messages in debug tab.
new: outfits wear and copy keys in settings.
Change: set / keyboard / Wear Outfit.
set / keyboard / Copy Outfit.
new: move to target modifer.
Allow move to target in given distance
Move to target. (v)
Change distance. (.)
new: hide or show chat colors picker.
Change: set / chat / Chow chat colors list.
new: allow set home position.
Set home locaton to current position. ([5])
Go to home location. (d)
new: home locations now highligted.

New keys:

Change distance in move to target. (.)
Set home locaton to current position. ([5])



2009-09-29 New release 0.4.
New features:

Remove colors on overhead text.
Setting to hide or show portals higlighting.
Change: set / other / Highlight map portals.
Whisper command in popup menu.
Magic attack.
Attack key (b).
Switch attack spell (,).
Ability to change default text color in sended text messages.
Ability to remove colors from other users messages.
Change: set / chat / Remove colors from received chat messages.
Fix: Allow select dead player by mouse, if enabled seleting dead players.
Fix: Joystick pick up now work like pick up from keyboard.
Fix: Fixed negative jacko spawn counter.
Fix: Fixed some default colors.
Fix: Fixed crazy move 9.

New keys:

Magic attack (b).
Switch magic attack spell (,).


2009-09-26 First patch version.
New features:
Show damage inflicted near monster's name.
Change: set / other / Show damage inflicted to monsters.
Select text colors for local player damage and local player misses.
Change: set / colors. Items: Local player hit monster, Local player critical hit, Local player miss.
Highlighting map portals with color.
Allow target only reachable monsters.
Change: set / other / Auto target only reachable monsters.
Allow target dead players.
Change: set / players / Target dead players.
Quick heal feature.
Heal targeted player or self.
Quick pick up feature.
Pick up modes: small (1x1), default (2x1), forward (2x3), full (3x3)
For pick up use standard pickup key. (z)
For change use Change pickup type key. (o)
Nuke player (ported from qoal patch).
Debug chat tab for some information.
Print all visible object to debug chat window.
In chat type /all.
Anti rain.
Change: set / other / No rain.
/ignore, /unignore, /quit command in chat (ported from git version)
/move X Y command for move to location.
Quick Drops Window with 9 drop slots.
To open use drop window key. (w)
Quick drop.
Drop N items at once from 0 slot. (y)
Drop N items at once from all slots. (u)
Use drop counter for drops. To change counter use (i)
Who is online (ported from qoal patch).
Outfit window (ported from git version).
To open use outfits window key. (`)
To wear outfit use Right-CTRL+outfit key. (1-9,0,-,=,backspace,insert,home)
Outfit addons.
15 different outfits.
To Copy different outfit to current use left CTRL+outfit key. (1-9,0,-,=,backspace,insert,home)
Check box unequip first work independently for each outfit.
Kill stats (ported from qoal patch).
To open use Kill stats window key. (e)
Changing direction (rotate player) without moves.
To rotate use Direct up/left/down/right keys. (|,;,k,')
or ALT+move keys
Crazy moves.
For programmed moves use crazy moves key. (/)
To change current move type use Change crazy move type. (\)
Insert unicode chars in chat (ported from qoal patch).
Player position in debug window.
Id in item popups.
Experience per 1,5,15 minutes in kill stats.
Jack O counter in kill stats.
Different statuses in top left window corner.
To change statuses use designated keys.
To see detailed information, move mouse to statuses bar.
Unassign key binding in keyboard setup.
You can unassign any key in key bindings window.
After changing key bindings show first conflicting key binding.
New setup page "Other".
New settings in setup player tab.
New parameters in stats window.
Added Flee bonus and target time.
New map view mode. (without big objects, for example without trees).
To switch mode use Find path to mouse key. (f)
Allow player to speak after death (ported from qoal patch).
Smaller window buttons in top right corner.
More shortcuts (15).
Game modifiers.
Allow player to change some game behaviours from keyboard.
Can view in top left corner.
Allow sit without pauses.
Allow attack from sitting (quick stand).
Allow move to last target.
To move use Move to target key. (v)
Allow player to move to home position.
To move use Move to home key. (d)
Show player gender.
To change open set / player / show gender.
Allow automatically switch from bow to sword and backward.
Allow switch weapon depend on distance to target.
To change current switch mode use Change attack weapon type key. (g)

New keys:
Move to target. (v)
Move to home. (d)
Change pick up type. (o)
Changing player facing direction. (k,l,;,')
Crazy moves. (/)
Change crazy move type. (\)
Quick drop. (u)
Quick drop from first slot only. (y)
Switch quick drop counter. (i)
Heal. (c)
Itenplz. (m)
Invert move direction. ([.])
Change attack weapon type. (g)

New mouse actions:
Heal (Attack Key + left mouse button)