Howl2000's Software Lag Switch
This release is a universal software lag switch. Similar software sells for $7.00+ abroad. Get free today as a forum member! This lag doesn't use udp flooding, so only your pc lags. Others on your lan won't lag.
WARNING! Use of lag switches may result in teleporting, invisibility, invulnerability, 100%accuracy, multikills, or in rare instances rage quits from entire enemy team.
Description
This is a simple script that edits your advanced firewall rules to temporarily block your internet connection to games etc. Different games have different results(sample video shows one example).
Requirements
1. Windows xp or higher.
2. Autoit(macro program).
3. Windows Firewall(enabled).
4. Administrator Privileges
Instructions
1. Run the included shortcut(this makes the advanced rules).
2. Run the Autoit script(this enables hotkey toggle).
3. Push hotkey(CAPSLOCK by default) to start lag.
4. Push same hotkey to stop lag.
Customizing/Troublshooting
Change Hotkey - To change the hotkey change HotKeySet("{CAPSLOCK}", "Lag") to HotKeySet("{YOURHOTKEY}", "Lag")
To inverse the toggle - Change Global $Var_1 = "1" to Global $Var_1 = "2"
If you get windows security notifications when toggling - Lower your security settings while using the hack. Usually this can be accomplished by clicking the blue hyperlink on the security popup.
Sample Video
Open Source(use how you want) make sure to leave a small credit in final product if you base your hack off my script. Feel free to write a program based off this.
Source Script
HotKeySet("{CAPSLOCK}", "Lag")
Global $Var_1 = "1"
While 1
Sleep(100)
WEnd
Func Lag()
If $Var_1 = 1 then
Run('C:\Windows\System32\netsh.exe advfirewall firewall set rule name="blocknet" new enable="no"', "", @SW_HIDE)
$Var_1 = "2"
Else
Run('C:\Windows\System32\netsh.exe advfirewall firewall set rule name="blocknet" new enable="yes"', "", @SW_HIDE)
$Var_1 = "1"
EndIf
EndFunc
Func note()
EndFunc
Virus Scans
https://www.virustotal.com/en/file/a...b482/analysis/
http://virusscan.jotti.org/en/scanre...9fcf24edb514d6
Enjoy. I may update with more features/options when I get time. If you want to implement this into your own hack, feel free to pm me questions or reply to this thread.