Hello,
Today I am bringing you a logitech script works on all automatic weapons.
features :
1 - Automatic q spotting when in ADS and shooting
2 - Recoil compensation
3 - Crouch Spam
Note: Feature 1 and 2 works only if you are holding right mouse button (ads mode), zoom toggle doesn't work . Crouch spam works if you got c as your crouch and also no crouch toggle .
Instructions.
1 - Download/open Logitech software
2 - press on customize buttons on the bottom bar
3 - click the plus button to add a new profile
4 - Name your profile, make sure you add launchpad.exe and planetside2_x64.exe from your main ps2 install folder, tick lock profile while game is running
5 - Right click on your created profile and click scripting
6 - Delete everything written in the editor and replace with the code below
Code:
local zoomed = false
local weapons = true
local random = 0
EnablePrimaryMouseButtonEvents(true)
function OnEvent(event, arg)
OutputLogMessage("event = %s, arg = %d\n", event, arg)
if (event == "MOUSE_BUTTON_PRESSED" and arg == 2 and weapons) then
zoomed = true
end
if (event == "MOUSE_BUTTON_RELEASED" and arg == 2 and weapons) then
zoomed = false
end
if(weapons == true)then
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and zoomed) then
PressKey("q")
Sleep(5)
ReleaseKey("q")
repeat
MoveMouseRelative(0,1)
Sleep(25)
until not IsMouseButtonPressed(1)
end
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 5) then
PressKey("c")
Sleep(600)
ReleaseKey("c")
Sleep(150)
PressKey("c")
Sleep(600)
ReleaseKey("c")
end
end
7 - don't forget to save ( Ctrl + S )
Extra Notes :
You can customize the compensation depending on the weapon you're using( if it has a right or left pull ), if it has a right pull, you change the values in the MoveMouseRelative(x,y) x parameter to a negative value to counteract the right pull . My initial script only has a y value because all weapons have vertical recoil .
Pressing Mouse button 5 spams crouch 2 times very fast to throw off your opponent, only use this against people who can actually aim at your head and not newbies .
if you see someone running an anchor/msw with laser sight shooting people 30m away with perfect accuracy, he's probably using something like this, just with tweaked values to that specific gun, you can create hotkeys to switch between different weapons on the fly too if you switch playstyles during your sessions .
Have fun