Hey guys, I bought the full package yesterday and I'm really pleased with the program as a whole, even if I haven't been able to figure out all the functions the application has to offer, yet.
I'll give you a brief summary on what I'm trying to do with the program and where my problems are:
I mainly planned on using reWASD to simulate a controller while playing with mouse and keyboard for CoD Warzone (although I probably try out other games with controller aim assist support like Planetside 2) to aquire both aim assist aswell as easier lobbies when queuing. (I know I'm evil, no need to point it out :P)
Now that I have set up the responsiveness and sensetivity to the point where it actually feels like I'm using a mouse and not a sponge to aim (which took me several hours of try and error in custom matches) the only thing I'm missing is the slight automatic recoil control I used to have via my Logitech Gaming Software's internal script, which looked like this for anyone wondering:
EnablePrimaryMouseButtonEvents (true);
function OnEvent(event,arg)
if IsKeyLockOn("numlock")then
if IsMouseButtonPressed(3)then
repeat
if IsMouseButtonPressed(1) then
repeat
MoveMouseRelative(0,1)
Sleep(21)
until not IsMouseButtonPressed(1)
end
until not IsMouseButtonPressed(3)
end
end
end
(I primarily use the Sleep function to adjust the recoil compensation intensity, but you could also increase the "(0,1)" in MoveMouseRelative to "(0,2)" or higher with similar effect)
To get to the bottom of my technical issue:
Since I need to unmap the mouse buttons aswell as mouse movements to not get double clunky input and Warzone blocks all mouse input anyways as soon as you pick "controller" as your input source, I need my Logitech Gaming Software to get priority before reWASD so my internal script will send input towards reWASD which then simulates my physical mousemovement aswell as the output of the script as a virtual controller.
Now I'm looking for suggestions to accomplish this, thanks in advance and I hope I won't be missunderstood, not a native english speaker nor very proud of my technical knowledge..
If anyone wants to know my config for reWASD and/or Warzone, let me know, I'll share.
I'll give you a brief summary on what I'm trying to do with the program and where my problems are:
I mainly planned on using reWASD to simulate a controller while playing with mouse and keyboard for CoD Warzone (although I probably try out other games with controller aim assist support like Planetside 2) to aquire both aim assist aswell as easier lobbies when queuing. (I know I'm evil, no need to point it out :P)
Now that I have set up the responsiveness and sensetivity to the point where it actually feels like I'm using a mouse and not a sponge to aim (which took me several hours of try and error in custom matches) the only thing I'm missing is the slight automatic recoil control I used to have via my Logitech Gaming Software's internal script, which looked like this for anyone wondering:
EnablePrimaryMouseButtonEvents (true);
function OnEvent(event,arg)
if IsKeyLockOn("numlock")then
if IsMouseButtonPressed(3)then
repeat
if IsMouseButtonPressed(1) then
repeat
MoveMouseRelative(0,1)
Sleep(21)
until not IsMouseButtonPressed(1)
end
until not IsMouseButtonPressed(3)
end
end
end
(I primarily use the Sleep function to adjust the recoil compensation intensity, but you could also increase the "(0,1)" in MoveMouseRelative to "(0,2)" or higher with similar effect)
To get to the bottom of my technical issue:
Since I need to unmap the mouse buttons aswell as mouse movements to not get double clunky input and Warzone blocks all mouse input anyways as soon as you pick "controller" as your input source, I need my Logitech Gaming Software to get priority before reWASD so my internal script will send input towards reWASD which then simulates my physical mousemovement aswell as the output of the script as a virtual controller.
Now I'm looking for suggestions to accomplish this, thanks in advance and I hope I won't be missunderstood, not a native english speaker nor very proud of my technical knowledge..
If anyone wants to know my config for reWASD and/or Warzone, let me know, I'll share.
Comment