aimless
Member
+166|6335|Texas
This still makes me get headshotted twice as many times than without it.
i g
Banned
+876|6074|GA

VividSynergy wrote:

i g wrote:

good deal thanks
You're gay, so you should stfu.
so what if i like taking it in the ass? this is america.
VividSynergy
Banned
+6|5999|Bolingbrook, United States

i g wrote:

VividSynergy wrote:

i g wrote:


good deal thanks
You're gay, so you should stfu.
so what if i like taking it in the ass? this is america.
www = World Wide Web.  Also, America is gay too, so I could care less.  btw your bad.
i g
Banned
+876|6074|GA

VividSynergy wrote:

i g wrote:

VividSynergy wrote:


You're gay, so you should stfu.
so what if i like taking it in the ass? this is america.
www = World Wide Web.  Also, America is gay too, so I could care less.  btw your bad.
wat?
couldn't
you're
VividSynergy
Banned
+6|5999|Bolingbrook, United States

i g wrote:

VividSynergy wrote:

i g wrote:


so what if i like taking it in the ass? this is america.
www = World Wide Web.  Also, America is gay too, so I could care less.  btw your bad.
wat?
couldn't
you're
larn 2 spik anglish
one-weak
Banned
+4|6442

VividSynergy wrote:

i g wrote:

VividSynergy wrote:


www = World Wide Web.  Also, America is gay too, so I could care less.  btw your bad.
wat?
couldn't
you're
larn 2 spik anglish
*Learn to speak english


You should take your own advice.
Delusion
AK Hero
+26|5982|Greece / Rhodos

one-weak wrote:

VividSynergy wrote:

i g wrote:


wat?
couldn't
you're
larn 2 spik anglish
*Learn to speak english


You should take your own advice.
lol your slow...
one-weak
Banned
+4|6442

Delusion wrote:

one-weak wrote:

VividSynergy wrote:


larn 2 spik anglish
*Learn to speak english


You should take your own advice.
lol your slow...
*You're
VividSynergy
Banned
+6|5999|Bolingbrook, United States

one-weak wrote:

Delusion wrote:

one-weak wrote:


*Learn to speak english


You should take your own advice.
lol your slow...
*You're
Ever hear of sarcasm genius?
aimless
Member
+166|6335|Texas
You're typing on an internet forum, not in an academic journal.
Delusion
AK Hero
+26|5982|Greece / Rhodos
I was bored at work and thought of coding my own version

Check it out :

https://img501.imageshack.us/img501/6862/hitfixat6.png

Code:

/*
======================================================
Battlefield 2 HitReg Fixer 
by Delusion
======================================================
*/

SendMode Input 
#Persistent
#NoEnv 
#SingleInstance force
#InstallKeybdHook

programName=BF2 HitFixer
version=
helpguiname=Help

GoSub CreateIni
GoSub ReadIni
GoSub GGui

HotKey ~%v_HitFix%, Hitregfix, On UseErrorLevel


/*
======================================================
Tray Menu 
======================================================
*/

Menu, Tray, Tip, %programName% %version% by Delusion
Menu, Tray, NoStandard
Menu, Tray, Add, About, About
Menu, Tray, Add 
Menu, Tray, Add, Hide, Hide
Menu, Tray, Add, Show, Show
Menu, Tray, Disable, Show
Menu, Tray, Default, Show
Menu, Tray, Add 
Menu, Tray, Add, Reload 
Menu, Tray, Add, Edit 
Menu, Tray, Add 
Menu, Tray, Add, Suspend 
Menu, Tray, Add 
Menu, Tray, Add, Exit, Exit 

/*
======================================================
BF2 Process Check
======================================================
*/

SetTimer BF2ProcessCheck, 500
Process Priority, , High
return

BF2ProcessCheck:
   WinGet , szProcessName, ProcessName, A
   If szProcessName = BF2.exe ; <-- BF2 File Name Here
      {
      Suspend Off
      Menu, Tray, UnCheck, Suspend
      }
   Else
      {
      Menu, Tray, Check, Suspend
      Suspend On
      }
return

/*
======================================================
Tray Menu Actions
======================================================
*/

About:
   MsgBox, 64, About, %programName% by Delusion`n`nOriginal Idea by DupaUnit.`n`nDupaUnit Contact Email - DupaSoftware[at]gmail.com`nDelusion Contact Email - alexpersonal15[at]yahoo.com
return

Hide:
   IfWinExist,  %helpguiname%
      Winclose,  %helpguiname%
   IfWinExist,  About
      Winclose,  About
Gui, Submit, %programName% %version%
Gui, 2:Destroy
Menu, Tray, Disable, Hide
Menu, Tray, Enable, Show
guiopen:=0
return

Show:
Gui, Show, , %programName% %version%
Menu, Tray, Disable, Show
Menu, Tray, Enable, Hide
return

Reload:
Reload
return

Edit:
Edit
return

Suspend:
Suspend, Toggle
Menu, Tray, ToggleCheck, Suspend
SoundBeep, 500, 100
return

Exit:
GuiClose:
ExitApp
return


/*
======================================================
Gui
======================================================
*/

GGui:
   Gui, 1: -MaximizeBox +Theme +ToolWindow -SysMenu
   Gui, 1:Add, GroupBox, x4 y-2 w192 h36,
   Gui, 1:Font, bold
   Gui, 1:Add, Text,x8 y12,HitFixer Key :
   Gui, 1:Font,
   Gui, 1:Add, Hotkey,x86 y9 w50 h20 vHitfix, %v_Hitfix%
   Gui, 1:Add, Button,x140 y8 w50 h22 gSave , Save
   Gui, 1:Add, Button,x3 y40 w65 h22 gHelp , Help
   Gui, 1:Add, Button,x68 y40 w65 h22 gHide , Hide
   Gui, 1:Add, Button,x133 y40 w65 h22 gExit , Exit
   Gui, 1:Add, StatusBar,gStbr, 
   SB_SetText("by Delusion")
   SB_SetIcon("Shell32.dll",177) 
   Gui, 1:Show,w200 h93, %programName% %versionName%
return

Stbr:
   SB_SetText("Pwned")
   Sleep,850
   SB_SetText("by Delusion")
return

/*
======================================================
Gui Actions
======================================================
*/

Help:
   If (!guiopen)
   {
      guiopen:=1
      Gui, 2:+Owner1 -SysMenu +ToolWindow +Theme 
      Gui, 2:Font, bold
      Gui, 2:Add, Text,x8 y8, 1.
      Gui, 2:Font,
      Gui, 2:Add, Text,X+0,%A_Space%%A_Space%In BF2 Press the key you assigned HitFix to,to open the Console
      Gui, 2:Font, bold
      Gui, 2:Add, Text,x8, 2.
      Gui, 2:Font,
      Gui, 2:Add, Text,X+0,%A_Space%%A_Space%Type your Ping in the Console and Press Enter
      Gui, 2:Font, bold
      Gui, 2:Add, Text,x8, 3.
      Gui, 2:Font,
      Gui, 2:Add, Text,X+0,%A_Space%%A_Space%Done! The Script should now start typing those settings.`n%A_Space%%A_Space%You can close the Console now.
      Gui, 2:Add, Button, x226 y86 vbtn w100 Default, Close
      Gui, 2:Show, w330 h112, %helpguiname%
   }
   Else
   {
      Gui, 2:Submit
      Gui, 2:Destroy
      guiopen:=0
   }
return

2ButtonClose:
Gui2Close:
   Gui, 2:Submit
   Gui, 2:Destroy
   guiopen:=0
return

Save:
   Gui Submit, NoHide
   v_Hitfix=%Hitfix%
   IniWrite %v_Hitfix%, %A_WinDir%\BF2HitFixer.ini, Hotkeys, HitfixerKey
   Reload
return

/*
======================================================
HitReg Fix
======================================================
*/

Hitregfix:
    SetKeyDelay 10, 20
    Send {~ Down}
    Sleep 100
    Send {~ Up}
    Sleep 100
    Send,Enter Your Ping{Enter}
    Input, Interpol, T10 V,{Enter}{Esc}
if (ErrorLevel = "EndKey:Escape")
    {
        Send,{Space}-{ENTER}
        return
    }
if PingVar is not digit
    {
        Send,-.{ENTER}
        return
    }
Interpol += 5
LatencyComp := Interpol / 1000
ExtraPol := Interpol * 12
        Send {Enter}
        Send,SettingsManager.floatSet GSDefaultLatencyCompensation %LatencyComp% {Enter}
    Sleep 20
        Send,SettingsManager.U32Set GSExtrapolationTime{Space} %ExtraPol% {Enter}
    Sleep 20
        Send,SettingsManager.U32Set GSInterpolationTime{Space} %Interpol% {Enter}
Sleep 50
    Send {Shift Up}
    Send {Alt Up}
return

;~F12::
;    Send,SettingsManager.boolSet GSExtrapolateFrame 1 {Enter}
;return

/*
======================================================
Create ini
======================================================
*/


CreateIni:
   IfNotExist %A_WinDir%\BF2HitFixer.ini
   {
      Empty = 
      FileAppend ,= BF2 Hitfixer =`n`n, %A_WinDir%\BF2HitFixer.ini
      IniWrite F11, %A_WinDir%\BF2HitFixer.ini, Hotkeys, HitfixerKey
   }
return

/*
======================================================
Read ini
======================================================
*/

ReadIni:
   IniRead v_Hitfix, %A_WinDir%\BF2HitFixer.ini, Hotkeys, HitfixerKey
return

/*
======================================================
Ingame Suspend 
======================================================
*/

$Pause::
Suspend, Toggle
Menu, Tray, ToggleCheck, Suspend
SoundBeep, 500, 100
return

Last edited by Delusion (2008-07-12 15:44:06)

aimless
Member
+166|6335|Texas
Why is extrapolation time your ping times 12? Why 12?
one-weak
Banned
+4|6442

VividSynergy wrote:

one-weak wrote:

Delusion wrote:


lol your slow...
*You're
Ever hear of sarcasm genius?
No.
Mint Sauce
Frighteningly average
+780|6496|eng
95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
#rekt
VividSynergy
Banned
+6|5999|Bolingbrook, United States

one-weak wrote:

VividSynergy wrote:

one-weak wrote:


*You're
Ever hear of sarcasm genius?
No.
Then go back to elementary.

Mint Sauce, why spend that extra time adapting when you can just use the program?
latinolink
plop plop flop flop
+11|6867|west liberty IA

Mint Sauce wrote:

95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
but some ppl stride to go for that 100% ....so yeah fuck 95% you should go for 100%<====sarcasm
.Sup
be nice
+2,646|6663|The Twilight Zone

Mint Sauce wrote:

95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
Thats why u get raped on waib.
https://www.shrani.si/f/3H/7h/45GTw71U/untitled-1.png
Zimmer
Un Moderador
+1,688|6966|Scotland

Ig, shut up. Vivid, shut up. Stop spamming a perfectly good topic.
Mint Sauce
Frighteningly average
+780|6496|eng

.Sup wrote:

Mint Sauce wrote:

95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
Thats why u get raped on waib.
Sure. That always happens.

:dickhead:
#rekt
.Sup
be nice
+2,646|6663|The Twilight Zone

Mint Sauce wrote:

.Sup wrote:

Mint Sauce wrote:

95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
Thats why u get raped on waib.
Sure. That always happens.

:dickhead:
lol it was a joke. why are you so uptight?
https://www.shrani.si/f/3H/7h/45GTw71U/untitled-1.png
hintakaari
Member
+113|6149
i just try this out. Seems to have some effect to hitreg! I never use SVD cuz i get too mutch smoke shots with it, and it sucks anyway but now i try it out with this program and i hit jumping guys from the air with no problem felt like lot less smoke to me, i will try it again later
Blehm98
conservative hatemonger
+150|6673|meh-land
i get about 50-66% hitreg tbh...
so i need settings to even play the game more than 5 minutes

I prefer my own settings tbh
Mint Sauce
Frighteningly average
+780|6496|eng

.Sup wrote:

Mint Sauce wrote:

.Sup wrote:


Thats why u get raped on waib.
Sure. That always happens.

:dickhead:
lol it was a joke. why are you so uptight?
It didn't look like a joke to me. </3
#rekt
Miniman7474
Banned.
+30|6409|Daqing Oilfields?
I've never really found my hit reg to be a problem.

Went on kark to try it and went 13-0 within the first 50 tickets with an M16 not missing a single shot. Its like a fucking aimbot, I didn't miss a shot until I ran out of ammo.

I'm anxious to try TVing with it!
Delusion
AK Hero
+26|5982|Greece / Rhodos
almost finished...thats how my version looks right now :

https://img244.imageshack.us/img244/3849/46777625we2.png

https://img176.imageshack.us/img176/3523/94724225ab0.png
it will be ready in a few days after i fix some bugs and think of some more stuff to add/change

Last edited by Delusion (2008-07-13 17:32:54)

Board footer

Privacy Policy - © 2024 Jeff Minard