Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Difference between revisions of "Dark Souls II"

From PCGamingWiki, the wiki about fixing PC games
(→‎Input settings: mouse lag fix)
Line 107: Line 107:
 
}}
 
}}
  
====Controller not working====
+
===Delay between mouse clicks and actions===
 +
{{--}} You can bind some of your actions to mouse double clicks, however this feature is causing slight delay between single click and its action as the game is waiting for another click.
 +
 
 +
{{Fixbox|1=
 +
{{Fixbox/fix|Use additional buttons on gaming mice}}
 +
{{ii}} For users with gaming mice or mice with additional buttons.
 +
# Bind your attacks on any unused keyboard key (F keys for example).
 +
# Open your mouse setting application and bind your new attack keys to additional mouse buttons.
 +
}}
 +
 
 +
{{Fixbox|1=
 +
{{Fixbox/fix|AutoHotKey script|ref=<ref>[http://www.reddit.com/r/DarkSouls2/comments/23ws2g/guaranteed_fix_to_mouse_input_lag/ch28ley Guaranteed Fix To Mouse Input Lag - Dark Souls 2 subreddit]</ref>}}
 +
# Unbind all the mouse bindings in the game.
 +
# Download and install [http://www.autohotkey.com/ AutoHotkey].
 +
# Let application create sample script. This script file should open after installation.
 +
# Delete everything, insert these lines and reload script (open AutoHotkey window (green H icon in tray area), navigate to <code>File</code> and hit <code>Reload Script</code>).
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="width:400px">
 +
AutoHotKey script:
 +
<div class="mw-collapsible-content">
 +
<pre>#SingleInstance Force
 +
#MaxHotkeysPerInterval 99999`
 +
#IfWinActive ahk_class DarkSouls2
 +
 
 +
; Hold to block with a shield in left hand
 +
LShift::Send {u down}
 +
LShift Up::Send {u up}
 +
 
 +
; Strong attack (left hand) / Parry
 +
CapsLock::
 +
XButton1:: send {y down}
 +
CapsLock up::
 +
XButton1 up:: send {y up}
 +
 
 +
; Attack (left hand)
 +
XButton2::send {u down}
 +
XButton2 up::send {u up}
 +
 
 +
; Boss key
 +
LAlt & Tab::AltTab
 +
 
 +
; Wield right weapon two-handed (hold for left weapon)
 +
Tab::n
 +
 
 +
; Attack (right hand)
 +
$LButton::
 +
    send {h down}
 +
    send {LButton down}
 +
return
 +
$LButton up::
 +
    send {h up}
 +
    send {LButton up}
 +
return
 +
 
 +
; Strong attack (right hand)
 +
$RButton::
 +
    send {g down}
 +
    send {RButton down}
 +
return
 +
$RButton up::
 +
    send {g up}
 +
    send {RButton up}
 +
return
 +
 
 +
; Equipment menu
 +
1::
 +
    send {Escape down}
 +
    sleep 30
 +
    send {Escape up}
 +
    send {ENTER down}
 +
    sleep 30
 +
    send {ENTER up}
 +
return
 +
 
 +
; Inventory menu
 +
2::
 +
    send {Escape down}
 +
    sleep 30
 +
    send {Escape up}
 +
    send {right down}
 +
    sleep 30
 +
    send {right up}
 +
    send {ENTER down}
 +
    sleep 30
 +
    send {ENTER up}
 +
return 
 +
 
 +
; Player status menu
 +
3::
 +
    send {Escape down}
 +
    sleep 30
 +
    send {Escape up}
 +
    send {right down}
 +
    sleep 30
 +
    send {right up}
 +
    send {right down}
 +
    sleep 30
 +
    send {right up}
 +
    send {ENTER down}
 +
    sleep 30
 +
    send {ENTER up}
 +
return
 +
 
 +
; Message menu
 +
4::
 +
    send {Escape down}
 +
    sleep 30
 +
    send {Escape up}
 +
    send {right down}
 +
    sleep 30
 +
    send {right up}
 +
    send {right down}
 +
    sleep 30
 +
    send {right up}
 +
    send {right down}
 +
    sleep 30
 +
    send {right up}
 +
    send {ENTER down}
 +
    sleep 30
 +
    send {ENTER up}
 +
return
 +
 
 +
; Interact (open doors, speak to the NPCs)
 +
e::ENTER
 +
 
 +
; Use item (drink dat estus)
 +
q::e
 +
 
 +
; Guard break
 +
c::
 +
^LButton::
 +
    send {w down}
 +
    send {h down}
 +
    send {w up}
 +
    send {h up}
 +
return
 +
 
 +
; Jump attack
 +
r::
 +
^RButton::
 +
    send {w down}
 +
    send {g down}
 +
    send {w up}
 +
    send {g up}
 +
return
 +
 
 +
; Switch left weapon
 +
WheelLeft::
 +
    send {left down}
 +
send {left up}
 +
return
 +
 
 +
; Switch right weapon
 +
WheelRight::
 +
    send {right down}
 +
    send {right up}
 +
return
 +
 
 +
F1::Suspend
 +
</pre>
 +
</div>
 +
</div>
 +
 
 +
'''Features'''
 +
* '''This script was made with default DS II controls in mind, please reset your controls or be sure to adjust the script before using.'''
 +
* Doesn't break menu controls.
 +
* Left mouse button and right mouse button are binded to the right handed attacks.
 +
* {{key|Shift}} and {{key|Capslock}} are binded to the left hand, mouse 4 and mouse 5 works too
 +
* {{key|tab}} key to toggle between one-handed and two-handed stances, also try holding it and see what happens. Doesn't break AltTabbing.
 +
* {{key|E}} for interacting.
 +
* {{key|Q}} for using items (drink estus, etc.).
 +
* One-button jumping attacks and guard breaks with {{key|R}} and {{key|C}}, {{key|CTRL}} + left or right mouse button works too.
 +
* Move your mouse wheel to the left or right to change weapons in both hands (if your mouse doesn't support this, remove ^LButton:: and ^RButton:: lines from Jump attack and Guard break sections.
 +
* {{key|1}} for equipment menu.
 +
* {{key|2}} for inventory menu.
 +
* {{key|3}} for player status menu.
 +
* {{key|4}} for message menu.
 +
* {{key|F1}} to enable/disable the script.
 +
* The script only works when Dark Souls 2 is running and has focus.
 +
}}
 +
 
 +
===Controller not working===
 
{{Fixbox|1=
 
{{Fixbox|1=
 
{{Fixbox/fix|Dinput8 blocker}}
 
{{Fixbox/fix|Dinput8 blocker}}

Revision as of 10:06, 27 April 2014

Dark Souls II
cover
Developers
From Software
Publishers
Namco Bandai Games
Release dates
Windows April 25, 2014
Dark Souls II on Wikipedia
Dark Souls
Dark Souls: Prepare to Die Edition 2012
Dark Souls II 2014
Dark Souls II: Scholar of the First Sin 2015
Dark Souls III 2016
Dark Souls: Remastered 2018

General information

Official Bandai Namco Support Thread
Steam Community Discussions

Availability

Template:Availability Table

All versions require Steam.

Game data

Configuration file(s) location

Template:Game data/row
System Location
Steam Play (Linux) <SteamLibrary-folder>/steamapps/compatdata/236430/pfx/[Note 1]

Save game data location

Template:Game data/row
System Location
Steam Play (Linux) <SteamLibrary-folder>/steamapps/compatdata/236430/pfx/[Note 1]

Save game cloud syncing

System Native Notes
Steam Cloud

Video settings

Basic and advanced graphical settings.
Screen option menu.

Template:Video settings

Input settings

Game option menu.

Template:Input settings

Delay between mouse clicks and actions

You can bind some of your actions to mouse double clicks, however this feature is causing slight delay between single click and its action as the game is waiting for another click.
Instructions
Instructions

Controller not working

Instructions

Audio settings

Template:Audio settings

Localizations

Language UI Audio Sub Notes
English
Brazilian Portuguese
French
German
Italian
Japanese
Japan version only.
Korean
Polish
Russian
Spanish
Traditional Chinese

Issues unresolved

Online features disabled for users with VAC ban from other games

There seems to be an issue with VAC bans from other games. Accounts with previous VAC bans are unable to connect to the Dark Souls II servers. The developers are aware of this problem.[1]

Issues fixed

Mouse cursor reappear when using controller

If playing with a controller, the mouse cursor will always reappear in the middle of the screen, even if not in use or relocated.
Instructions

Pink artifacts with Radeon GPUs

Instructions

Crash at startup

Instructions
Instructions
Instructions
Instructions

System requirements

Windows
Minimum Recommended
Operating system (OS) XP SP3
Processor (CPU) Intel Pentium Core 2 Duo E8500 3.17 Ghz
AMD Phenom II X2 555 3.2 Ghz
System memory (RAM)
Hard disk drive (HDD) 14 GB
Video card (GPU) Nvidia GeForce 9600 GT
ATI Radeon HD 5870
DirectX 9.0c compatible

Notes

  1. 1.0 1.1 Notes regarding Steam Play (Linux) data:

References