Jump to content

ForceFeedback O.P Ghost


Coding

Recommended Posts

 

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

 

Link to comment
Share on other sites

Guest R.R.Z.
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

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...