Advertisement
Guest User

Invisible Mode for LoL made by Hotpockets for Reddit

a guest
Nov 28th, 2011
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. @ECHO OFF
  2. title Invisible Mode
  3. color 0a
  4. CLS
  5. :MAIN
  6. ECHO.
  7. ECHO.
  8. ECHO Invisible Mode for League of Legends made by Hotpockets
  9. ECHO.
  10. ECHO.
  11. ECHO 1 - Enable Invisible Mode
  12. ECHO 2 - Disable Invisible Mode
  13. ECHO 3 - EXIT
  14. ECHO.
  15. ECHO.
  16. SET /P M=Pick a number:
  17. IF %M%==1 GOTO DISABLE
  18. IF %M%==2 GOTO ENABLE
  19. IF %M%==3 GOTO BAI
  20. :DISABLE
  21. netsh advfirewall firewall add rule name="lolchatna" dir=out remoteip=216.133.234.21 protocol=TCP action=block
  22. netsh advfirewall firewall add rule name="lolchateast" dir=out remoteip=66.150.148.21 protocol=TCP action=block
  23. netsh advfirewall firewall add rule name="lolchatwest" dir=out remoteip=64.7.194.112 protocol=TCP action=block
  24. GOTO MAIN
  25. :ENABLE
  26. netsh advfirewall firewall delete rule name="lolchatna"
  27. netsh advfirewall firewall delete rule name="lolchateast"
  28. netsh advfirewall firewall delete rule name="lolchatwest"
  29. GOTO MAIN
  30. :BAI
  31. exit
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement