This still makes me get headshotted twice as many times than without it.
Topic closed
- Index »
- Games »
- Battlefield Series »
- Battlefield 2 »
- BF2/2142 Hit reg fix
so what if i like taking it in the ass? this is america.VividSynergy wrote:
You're gay, so you should stfu.i g wrote:
good deal thankshiberNative wrote:
http://www.hundecode.org/images/leet-9991.jpg
www = World Wide Web. Also, America is gay too, so I could care less. btw your bad.i g wrote:
so what if i like taking it in the ass? this is america.VividSynergy wrote:
You're gay, so you should stfu.i g wrote:
good deal thanks
wat?VividSynergy wrote:
www = World Wide Web. Also, America is gay too, so I could care less. btw your bad.i g wrote:
so what if i like taking it in the ass? this is america.VividSynergy wrote:
You're gay, so you should stfu.
couldn't
you're
larn 2 spik anglishi g wrote:
wat?VividSynergy wrote:
www = World Wide Web. Also, America is gay too, so I could care less. btw your bad.i g wrote:
so what if i like taking it in the ass? this is america.
couldn't
you're
*Learn to speak englishVividSynergy wrote:
larn 2 spik anglishi g wrote:
wat?VividSynergy wrote:
www = World Wide Web. Also, America is gay too, so I could care less. btw your bad.
couldn't
you're
You should take your own advice.
lol your slow...one-weak wrote:
*Learn to speak englishVividSynergy wrote:
larn 2 spik anglishi g wrote:
wat?
couldn't
you're
You should take your own advice.
*You'reDelusion wrote:
lol your slow...one-weak wrote:
*Learn to speak englishVividSynergy wrote:
larn 2 spik anglish
You should take your own advice.
Ever hear of sarcasm genius?one-weak wrote:
*You'reDelusion wrote:
lol your slow...one-weak wrote:
*Learn to speak english
You should take your own advice.
You're typing on an internet forum, not in an academic journal.
I was bored at work and thought of coding my own version
Check it out :
Check it out :
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)
Why is extrapolation time your ping times 12? Why 12?
No.VividSynergy wrote:
Ever hear of sarcasm genius?one-weak wrote:
*You'reDelusion wrote:
lol your slow...
95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
#rekt
Then go back to elementary.one-weak wrote:
No.VividSynergy wrote:
Ever hear of sarcasm genius?one-weak wrote:
*You're
Mint Sauce, why spend that extra time adapting when you can just use the program?
but some ppl stride to go for that 100% ....so yeah fuck 95% you should go for 100%<====sarcasmMint Sauce wrote:
95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
Ig, shut up. Vivid, shut up. Stop spamming a perfectly good topic.
Sure. That always happens..Sup wrote:
Thats why u get raped on waib.Mint Sauce wrote:
95% of the time, my reg is fine. Instead of complaining about it, try adapting your play around it.
:dickhead:
#rekt
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
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
so i need settings to even play the game more than 5 minutes
I prefer my own settings tbh
It didn't look like a joke to me. </3.Sup wrote:
lol it was a joke. why are you so uptight?Mint Sauce wrote:
Sure. That always happens..Sup wrote:
Thats why u get raped on waib.
:dickhead:
#rekt
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!
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!
almost finished...thats how my version looks right now :
it will be ready in a few days after i fix some bugs and think of some more stuff to add/change
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)
Topic closed
- Index »
- Games »
- Battlefield Series »
- Battlefield 2 »
- BF2/2142 Hit reg fix