LightbulbSoftware Lag Switch

Posts 1–15 of 36 · Page 1 of 3
Software Lag Switch
Hello.

This release is a software lag switch. It is used to exploit the game by interrupting your internet connection. This causes everyone else to freeze on your screen, and causes you to appear to teleport to them. I quit playing the game due to overuse of hacks and abuse. This hack can be used along side any hack. It runs on your toolbar hidden.

This is an autoit script that uses built in windows firewall to act as a lag switch. The reaction time is almost instant from the time you press the hotkey.

Requirements: If you don't understand the requirements, you should leave this alone.

Windows XP or Higher
Administrator Privileges
Autoit
Windows Firewall Active

How it works:

This creates an advanced firewall rule and toggles it on and off while playing to function as a lag switch.

This is an open source script modify as you wish.

 
Source
The first line creates the firewall exception. You can run a shortcut or copy to a command prompt window.
Code:
C:\Windows\System32\netsh.exe advfirewall firewall add rule name="blocknet" dir="out" action="block" enable="no"
This next code is the autoit script that toggles the firewall on and off. This is the bread and butter. Change the hotkey txt to change the toggle key.
Code:
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


How to use.
1. Run the shortcut included or in command prompt type the command included in line 1.
2. Run the autoit script included.
3. In game push caps lock or hotkey you set in the script to start lag. Push again to stop within 13-15 seconds max.(Currently configured to caps lock so if you have the lag off caps lock key light is on, when lagging the light is off. A simple lag light. can change in script if you use the caps key already.

Won't be updating this as it should always work. Feel free to redistribute as a program. There are people selling programs that do this exact thing. If you have problems getting it to work, it runs off simple command line scripts so you can ask for help here or anywhere that helps with firewalls or autoit.

Scanned the script inside. The other included file is a shortcut to add the firewall rule for you. Only uses default windows program.


If you get security warnings, turn down your security settings when in use(popups usually have a blue hyperlink that allows you to modify this). It does have to modify firewall settings to be used.
Desktop_mpgh.net.rar1 KB · 6,188 downloads 3/58 malicious
Looks clean,

Approved.
You were supposed to scan the .rar..But okay.
//Approved
it works in other games?
Which bit of the script do i change to inverse the function? so it only lags when capslock is on?

Also the rule appears to be getting turned on and off but its not lagging everyone else out ingame, even leaving it on for extended periods of time does nothing
Quote Originally Posted by megapillar View Post
Which bit of the script do i change to inverse the function? so it only lags when capslock is on?
This part:
Code:
HotKeySet("{CAPSLOCK}", "Lag")
When CapsLock is pressed, it calls the "Lag" function which checks if Var_1 equals 1 so you should increase the default value of the var and then it starts or stops the lag accordingly.
Quote Originally Posted by Lovroman View Post
When CapsLock is pressed, it calls the "Lag" function which checks if Var_1 equals 1 so you should increase the default value of the var and then it starts or stops the lag accordingly.
Correct change the value at the start of the script to 2 instead of 1.
@megapillar
It should only lag you. It should be lagging you and making everyone else freeze in place on your screen. This can be used to freeze them out of cover for easy headshots or used so you can "teleport" behind them on their screen. Has many more uses, but you must be creative.
@Disgrassa
This will work to lag any game. Each game the effects of lag are different though. Ghost recon allows you to freeze enemies for easy shots or teleport with lag. The coders of the game did a terrible job.
This just isn't working for me, the rule is being turned off and on, i can press it and a twitch stream will start lagging/buffering for me but as soon as i go into gro i can leave it on the entire game and nothing happens, i checked and the rule is still being toggled when i hit the button ingame so maybe its not powerful enough or something?
Quote Originally Posted by megapillar View Post
This just isn't working for me, the rule is being turned off and on, i can press it and a twitch stream will start lagging/buffering for me but as soon as i go into gro i can leave it on the entire game and nothing happens, i checked and the rule is still being toggled when i hit the button ingame so maybe its not powerful enough or something?
Try alt tabbing out of the game and starting it during the game. The game may be taking over the caps key when you launch it. I always run the script in my ghost recon main menu.
I have checked its being toggled ingame, i go in game, hit caps, tab out and check on cmd by doing 'show rule name="blocknet"' in the right place, and it says its enabled and disabled properly. Just not having an effect
So, how it works? i opened the exe.file with administrator and after opening it the disappeared.
Ps: Using win8.1 here
Quote Originally Posted by Disgrassa View Post
So, how it works? i opened the exe.file with administrator and after opening it the disappeared.
Ps: Using win8.1 here
I didn't include an exe, but you should check your task bar at the bottom right. If autoit isn't running, consult your autoit manual.
How would you set a multi-key hotkey, such as Shift+Caps Lock?
Doesn't work for me. It kills the internet connection, I can no longer browse or stream, but the game still plays and there is no lag. Tried running it before I start the game, in the menu after start and in the game and nothing happens.
Quote Originally Posted by Huaojozu View Post
Doesn't work for me. It kills the internet connection, I can no longer browse or stream, but the game still plays and there is no lag. Tried running it before I start the game, in the menu after start and in the game and nothing happens.
Then you must have given your game special privileges in the firewall. You will have to take those away in the firewall advanced settings.
Posts 1–15 of 36 · Page 1 of 3

Post a Reply

Similar Threads

Tags for this Thread

Need help?