Jump to content

Arena Breakout: Infinite

Hipfire is added, aims coming soon!
Read more...

Project L33T

See the game notes for instructions on how to disable smoothing.
Read more...

Twilight Town: A Cyberpunk FPS

Just added.
Read more...

Contain

See the game notes for instructions on how to disable smoothing.
Read more...

Vomitoreum

Just added.
Read more...

World of Warcraft


DPI Wizard
Ready for Legion!

User Feedback

Recommended Comments



You can edit the mouse sensitivity through the command:

/console SET cameraYawMoveSpeed

 

you enter that into the chat to be able to use it

Link to comment

Thanks a lot!

 

Here's a quick addon to make this permanent:

local frame = CreateFrame("frame")
frame:RegisterEvent("PLAYER_ENTERING_WORLD")
frame:SetScript("OnEvent", function()
	SetCVar("cameraYawMoveSpeed", 180.0)
	SetCVar("cameraPitchMoveSpeed", 90.0)
	SetCVar("enableMouseSpeed", 0)
end)

Just paste this into http://addon.bool.no/ and click "Create my Addon"  ;)

Link to comment

In my case the calculated sensitivity seems too high. Using Overwatch as the base game the result for WoW is 66, while actually 45 seems to fit better. Could you please check if the calculation is still valid?

Link to comment
  • Wizard
1 hour ago, VaniKa said:

In my case the calculated sensitivity seems too high. Using Overwatch as the base game the result for WoW is 66, while actually 45 seems to fit better. Could you please check if the calculation is still valid?

I don't know if it's any different, but classic or new?

Link to comment

I may have found the cause. I found out that exactly 44 seems to make it as sensitive as it should be at 66, which is exactly two thirds. I use 150 % DPI scaling in Windows, which seems to have an impact on the game's sensitivity. Also this site detects a resolution of 1280x720, although the native resolution is 1920x1080. I guess it's the same with WoW. 

Link to comment
  • Wizard
39 minutes ago, VaniKa said:

I may have found the cause. I found out that exactly 44 seems to make it as sensitive as it should be at 66, which is exactly two thirds. I use 150 % DPI scaling in Windows, which seems to have an impact on the game's sensitivity. Also this site detects a resolution of 1280x720, although the native resolution is 1920x1080. I guess it's the same with WoW. 

Thanks for the info, I've updated the game to support the Windows Display Scale setting.

Link to comment

New WoW Addon that provides simple slash commands to adjust the mouse sensitivity in WoW.

https://www.curseforge.com/wow/addons/mousesensitivity

How to use:
/sens shows your current mouse sensitivity
/sens 20 sets your current mouse sensitivity to 20

The addon also turns off "Enable Mouse Sensitivity" under Interface/Mouse for maximum compatibility with mouse settings from mouse-sensitivity.com

Link to comment
  • Wizard
Just now, Metz said:

New WoW Addon that provides simple slash commands to adjust the mouse sensitivity in WoW.

https://www.curseforge.com/wow/addons/mousesensitivity

How to use:
/sens shows your current mouse sensitivity
/sens 20 sets your current mouse sensitivity to 20

The addon also turns off "Enable Mouse Sensitivity" under Interface/Mouse for maximum compatibility with mouse settings from mouse-sensitivity.com

Awesome! I'll test it and update the info :)

Link to comment
  • Wizard
32 minutes ago, Metz said:

New WoW Addon that provides simple slash commands to adjust the mouse sensitivity in WoW.

Works beautifully, I've updated the game info now!

Link to comment

Need an update. Getting 21 when the max is 10.

Pasted /sensitivity 21.12 in the general chat but doesnt feel like it changed?

Only response i am getting is Type /help for a listing of a few commands

Edited by LEGENDKMS
Link to comment
  • Wizard
7 hours ago, LEGENDKMS said:

Need an update. Getting 21 when the max is 10.

Pasted /sensitivity 21.12 in the general chat but doesnt feel like it changed?

Only response i am getting is Type /help for a listing of a few commands

You need to type (or copy/paste) the whole calculated output from the calculator, for instance:

/console cameraYawMoveSpeed 21.12

and

/console cameraPitchMoveSpeed 21.12

Link to comment

Starting with the Dragonflight expansion, there is a new FOV slider in the video options.

Minimum is 50 and max is 90.

Link to comment
  • Wizard
12 hours ago, JTF195 said:

Starting with the Dragonflight expansion, there is a new FOV slider in the video options.

Minimum is 50 and max is 90.

About time! I've updated it now.

Link to comment

there is a way for applying raw input in wow and also it stops freezing camera problem on fast swipes. I'm writing the method down below it fixed my freezing camera in fast swipes problem. also can be updated for raw input in calculator ^^

There is a config CVar "rawMouseEnable" we could test here.

To check if it's enabled type or copy - then ctrl + v this into a chat box.

/script print(GetCVar("rawMouseEnable"))

That will show a single 0 if off or a 1 if on.

Now to enable it use:

/script SetCVar("rawMouseEnable", 1);

To double check that the script worked go to the Wow folder > WTF - look for the Config file. Open with notepad. This should be at the bottom of CVar list:

SET rawMouseEnable "1"

(Alternately you could just add that setting using notepad exactly as it is here. Copy/Paste would be your friend - I have it enabled that is my copy paste)

Link to comment

SET rawMouseAccelerationEnable "0" also adding this command to config.WTF inside battle.net/WoW file fixes the mouse acceleration.

Can you check sensitivity with theese options please @DPI Wizard

Link to comment



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...