Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Where ? I cant find It 😭
when u are in the inputUserMappings file, press "Control + F", now u can search for certain keywords. type in "sell_perk"
u should get this:
<mapping name="sell_perk" type="Button" SIEJADependent="true" >
<button id="IK_Pad_Y_TRIANGLE"/>
<button id="IK_MiddleMouse"/>
replace the "MiddleMouse" with like "U":
<mapping name="sell_perk" type="Button" SIEJADependent="true" >
<button id="IK_Pad_Y_TRIANGLE"/>
<button id="IK_U"/>
_______________________________________________________
you can do the same for the unequip button, same process but u now gotta change 2 "passages" (idk how its called tbh):
Press Control + F again, search for "unequip"
<mapping name="UI_Unequip" type="Button" >
<button id="IK_MiddleMouse" />
</mapping>
change it to
<mapping name="UI_Unequip" type="Button" >
<button id="IK_U" />
</mapping>
AND search further for this passage:
<mapping name="unequip_item" type="Button" SIEJADependent="true" >
<button id="IK_Pad_Y_TRIANGLE"/>
<button id="IK_MiddleMouse"/>
<button id="IK_R"/>
</mapping>
and change this one to
<mapping name="unequip_item" type="Button" SIEJADependent="true" >
<button id="IK_Pad_Y_TRIANGLE"/>
<button id="IK_U"/>
<button id="IK_R"/>
</mapping>
save the file with Control + S, close it, open the game and have fun :)