Since ToS doesnt allow to bind actions to Mouse4 and Mouse5 (side buttons) it is currently only possible with 3rd party software. To bind those buttons to NormalAttack and LeftHand(knife/shield/staff melee etc), for example, in AHK (AutoHotKey) it would look like:
#SingleInstance force
#MaxThreadsperHotkey 5
#KeyHistory 0
; Note: you have to run this script with admin privileges on order for it to work properly
; CTRL+Insert to exit script
^Ins::ExitApp
; button rebinds work only while ToS is an active window
#IfWinActive ahk_exe Client_tos.exe
XButton1::Z
XButton2::C
###To enable Japanese voices for skills
navigate to “Tree of Savior/Release” folder, locate User.xml file and change Language="" to Language=“Japanese”
save your changes and restart game client
###To enable interacting with NPCs and objects using your keyboard (for example with “E” button) in mouse mode add:
locate hotkey_mousemode_user.xml in “Tree of Savior/Release” folder and add
<HotKey ID="Select" Name="@dicID_^*$ETC_20151224_019811$*^" DownScp="None" UpScp="None" Key="E" UseShift="NO" UseAlt="NO" UseCtrl="NO" OnEdit="NO" Category="Battle"/>
line somewhere in-between other lines:
save file and restart your game client. It help sometimes to interact with NPCs in crowded area. May also help you aiming skills in combat: when you highlight Enemy and press interaction key your character will turn to face that enemy.
Note: after you have done this, option to change keybind for that action will appear for mouse mode in game control settings.
####Some tips:
-
There is a way to check a player even if he is not near you:
/memberinfo TeamName
You can also check yourself using this command. It will bring up frame as if you right clicked and chose “Examine” on a player. -
Alt + A is default bind for Toggle UI (for nice screenshots), but its better to rebind to something that wont get in your way during gameplay because ALT is used to highlight items on ground.
-
F12 is a default bind for video capture. Press it again to stop. Video will can be found in “Tree of Savior\release\avicapture” folder.
###It is possible to change default folder where your game saves captured clips by using windows symbolic links:
- Move “avicapture” folder anywhere you want it to be, you can rename it as well.
- open command prompt with administrator privileges and type:
MKLINK /D "path to original avicapture location" "path we moved avicapture to"
for example if you have Tree of savior installed in D:\Games\Tree of Savior
and you want to save clips to E:\Clips then command will look like:
MKLINK /D "D:\Games\Tree of Savior\release\avicapture" "E:\Clips"
Hope it helps somebody.
Question to @STAFF_Julie @STAFF_Shawn @STAFF_Ethan :
Would using AHK be allowed for quality of life scripts?
