Coding Posted October 5, 2021 Share Posted October 5, 2021 Hello everyone, I want to share a program I made to have the forcefeefback effect of the operation ghost. I put the effect of weapon 1 in capslock and weapon 2 in numlock https://www.mediafire.com/file/dwevyvhh3ofas8w/gunfeed.rar/file run gs2.exe first and then gunfeed.exe Link to comment Share on other sites More sharing options...
Guest tommiegunz Posted October 5, 2021 Share Posted October 5, 2021 nice so will this also give rumble feature to wiimotes when shooting as well ? Link to comment Share on other sites More sharing options...
Coding Posted October 5, 2021 Author Share Posted October 5, 2021 i'm using autoit to monitor memory addresses give guns 1 and 2 i found an address for each gun that adds 1 to each fired bullet so my code performs the action of pressing the capslock and numlock keys the code is this: Opt("SendCapslockMode",0) $arma1 = 0 $arma2 = 0 $ctt = 0 $ctt1 = 0 While 1 $PID = ProcessExists("gs2.exe") $hOpen = _MemoryOpen($PID) $Address = "0x02A5DC24" $Address2 = "0x02A5DC28" $Read = _MemoryRead($Address,$hOpen, "int") $Read1 = _MemoryRead($Address2,$hOpen, "int") if $Read > $arma1 Then $ctt = $ctt + 1 if $ctt = 1 Then Send("{CAPSLOCK}") Sleep(20) Send("{CAPSLOCK}") EndIf If $ctt = 2 Then Send("{CAPSLOCK}") Sleep(20) Send("{CAPSLOCK}") EndIf if $ctt >= 2 Then $ctt = 0 EndIf $arma1 = $Read EndIf if $Read1 > $arma2 Then $ctt1 = $ctt1 + 1 if $ctt1 = 1 Then Send("{NUMLOCK}") Sleep(20) Send("{NUMLOCK}") EndIf If $ctt1 = 2 Then Send("{NUMLOCK}") Sleep(20) Send("{NUMLOCK}") EndIf if $ctt1 >= 2 Then $ctt1 = 0 EndIf $arma2 = $Read1 EndIf ConsoleWrite($ctt ) sleep (16) WEnd would have to find the joystick rumble api and insert it in the code 2 Link to comment Share on other sites More sharing options...
Guest R.R.Z. Posted October 5, 2021 Share Posted October 5, 2021 7 hours ago, Coding said: Hi if you can help the community by adding the rest of nxl2 games to tp it’ll be awesome if you like have a look at my post on the subject on page 969 on tp thread TIA for any help Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now