Jump to content

[Share][Tool]Warden TCK module timer and AKP timer delay for packet scans


Recommended Posts

Posted

Your computer will treat this as a virus the moment you download it. Please note, I do not upload viruses, as well as everything before it can be run is able to be inspected using Notepad. The files are a .vbs, to prevent memory imprints, and to execute top down. These settings will apply a registry hack. This will not prevent warden from scanning you, however it will cause a bit of the packets not to work from warden.

 

Current Version:v1.21

Download link: http://go-guildies.com/mmowned/WPKv121.rar

Patch notes:

August 28-2010 v1.21

+Added remover

+Added checker

+Fixed Minor Installer bug

+Users can no longer escape Admin Login by doing a ./ command.

 

July 1 2010 v1.1

+Initial release

 

 

 

 

 

Boys and girls,

 

Enjoy. Adjusting the QoS of your packets as well as your relay packet grouping will disable the ability for Warden to scan your packets. This will protect your 0x05 base packet group from being scanned. IT DOES NOT PROTECT YOU FROM WARDEN, however its a good step towards preventing Warden from scanning you.

 

How it works:

 

Blizzard groups packet relays and responses together. Warden then scans them. Since this script will adjust your actions, when you get a packet you immediately fire a response before it routes through the current loaded Warden Module.

 

The downside?

You may experience some lag time some times. What happens is it sometimes fires your packet to fast and doesn't grab an encryption key on the way out because the module hasn't generated one for the next set of packets.

 

It will improve your LAT rate. You will show 100 if your at 200, and 90-150 if your at 340 usually. This is not your real latency. Its what warden is set to look for, however since your packets come at the same rate, its looking for the wrong thing.

 

 

SOURCE CODE:

logo = "Skuddle Packet Timer"

  WPK_Version = "1.02"

  Const HKEY_LOCAL_MACHINE = &H80000002

  Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")

  Set shell = CreateObject("Shell.Application")

  set wsnet = WScript.CreateObject("WScript.Network")

  computername = ucase(wsnet.computername)

  strKeyPath = "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\"

  oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys

  if Wscript.Arguments.Count => 1 then

    if (WScript.Arguments.Item(0) = "uac") then WPK_Uac = 1 else WPK_Uac = 0

  end if

    If Instr(1, WScript.FullName, "cscript", vbTextCompare) > 1 Then

    WPK_Script = 1

  End If

  if WPK_Script = 1 and WPK_Uac = 0 then

    wscript.echo "Warden Packet Timer " & WPK_Version & " Batch Mode."

    wscript.echo ""

  end if

  if CheckFix = true then

    msg = "Warden Packet Timer already enabled"

    if WPK_Script = 0 then

      msg = msgbox (msg,48,logo)

    else

      wscript.echo msg

    end if

    wscript.quit

  end if

  If WPK_Uac = 0 then

    if WPK_Script = 0 then

      msg = logo & " " & WPK_Version & chr(13) & chr(13) & "This regedit will auto adjust the poll rate for your LAT timer and reduce the chances of Warden Scans on module based inclusions. It has been updated for 3.3.5a. You must have Windows XP SP2 or greater." _

                      & chr(13) & chr(13) & "If you are not logged into your computer with an account which has Administrator privileges, or you are using Windows Vista or Windows 7 with User Account Control enabled, you will be prompted to enter the username and password of an account which has Administrator privileges." _

                      & chr(13) & chr(13) & "Enjoy the protection. Skuddle of http://mmowned.com" _

                      & chr(13) & chr(13) & "Install"

    else

      msg = "Adjusting..."

    end if

 

    if WPK_Script = 0 then

      msg = msgbox (msg,65,logo)

        if msg = 2 then

          wscript.quit

        end if

    else

        wscript.echo msg

    end if 

  end if

  For Each subkey In arrSubKeys

    err = oReg.SetDwordValue (HKEY_LOCAL_MACHINE,strKeyPath & subkey,"TcpAckFrequency","1")

  Next

  if CheckFix = true then

    Success

    wscript.quit

  end if

  if CheckFix = false and WPK_Uac = 0 then

    if WPK_Script = 0 then

      msg = "You are not running this script as ADMIN. You must be an admin."

      msg = msg + chr(13) + chr(13) & "User Account Control forces programs to run under regular user privileges, even if you are logged into your computer with an account which has Administrator privileges.  It's enabled by default on computers running Windows Vista and Windows 7."

      msg = msg + chr(13) + chr(13) & "To get around this, you will be prompted to enter your Windows logon details.  In the next window, check the radio button for 'The following user' and enter the username and password of a Windows account which has Administrator privileges.  The username must be in the format '" & computername & "\username'."

      msg = msg + chr(13) + chr(13) & "Click Ok to continue"

      msg = msgbox (msg,49,logo)

    if msg = 2 then

      wscript.quit

    end if

    shell.ShellExecute "wscript.exe", Chr(34) & _

    WScript.ScriptFullName & Chr(34) & " uac", "", "runas", 1

  else

    wscript.echo "Logon failure.  You must be logged in with Administrator privileges."

    wscript.quit

  end if

  end if

  if WPK_Uac = 1 then

    if CheckFix = false then

      msg = "There was an error (" & err.number & ")." & chr(13) & chr(13) & "Ensure that you entered a valid username and password.  The username must have Administrator privileges on this computer." & chr(13) & chr(13) & "Click Ok to close the script."

        if WPK_Script = 0 then

          msg = msgbox (msg,48,logo)

        end if

    else

      Success

    end if

  end if

  wscript.quit

  Function CheckFix()

    StopCheck = 0

    For Each subkey In arrSubKeys

      oReg.GetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath & subkey,"TcpAckFrequency",CheckFix

      if CheckFix = 1 then

      else StopCheck = 1

      end if

    Next

    if StopCheck = 1 then CheckFix = false else CheckFix = true

  end function

  Function Success()

    if WPK_Script = 0 then

      set shell = wscript.CreateObject("wscript.shell")

      msg = "Warden Packet Timer has been installed successfully."

      msg = msg & chr(13) & "You need to restart your computer for the changes to take effect." & chr(13)

      msg = msg & chr(13) & "Do you want to restart your computer now?"

      msg = msgbox (msg,68,logo)

      if msg = 6 then

        shell.Run "shutdown.exe /r /t 00"

      end if

    else

      wscript.echo "Warden Packet Timer has been installed."

      wscript.echo "You need to restart your computer for the changes to take effect."

    end if

  end function

Credits:Skuddle

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • The server has been online and stable for over 2 months now, and we’re still going strong! No wipes, no shortcuts ~ just continuous work, daily fixes, events, and improvements to ensure the best possible experience.   Great News! 🔥 CHAPTER II IS COMING — GRACIA FINAL 🔥 On February 16, L2Elixir enters a new era. The server will be officially updated to Gracia Final, opening Chapter II of our journey. Expect new content, improvements, and surprises that will refresh the gameplay while keeping the classic Gracia Final spirit alive.   More challenges, more competition, and more reasons to log in.   📅 Update Date: February 16 ⚔️ Chapter II: Gracia Final This is not a reset. This is evolution.   Prepare yourselves — Chapter II begins soon.   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs    
    • Server owners, Top.MaxCheaters.com is now live and accepting Lineage 2 server listings. There is no voting, no rankings manipulation, and no paid advantages. Visibility is clean and equal, and early listings naturally appear at the top while the platform grows. If your server is active, it should already be listed. Submit here 👉https://Top.MaxCheaters.com This platform is part of the MaxCheaters.com network and is being built as a long-term reference point for the Lineage 2 community. — MaxCheaters.com Team
    • Hello! We are Genesis, small team that works on new Lineage 2 project. Our goal with this project is to create a fresh new place to play — built around real community feedback, with no aggressive pay-to-win donations and with carefully thought-out quality-of-life improvements, balance changes etc. We believe that even tho we all love this game, everyone has at least one or two things they would like to change in the game to make it more enjoyable. Thats why we want the comunity feedback to shape our server. Main information about the server: • Interlude Classic version • Rates: EXP x4 SP x2 Loot x2, Spoil x2 (not set in stone, might be changed) • Local & Server-Side Dualbox Protection • Complete, Clear Website with Integrated Account Panel (Game account creation, direct communication with support, bug reporting, voting and reward system) • Launcher – External Game Login System: manage all your accounts inside the launcher, “Play” button logs you directly into the game server Here are list of few changes we already added/decided to add to the server: • Reworked Client to fit interlude Era with upgraded Classic Ui • Custom Antibot system • Custom AntiDualBox System • Offline shops • Offline shop with buffs (available only in towns) • Mass Sweeper added to the game • Newbie buffs available all the way to lvl 76 (nothing crazy, but its free) • Slight balance change to Destroyer damage with Polearm and Cancel spell from SPS • PvP zones on every Epic spawn spot • Overbuffing blocked • And more! Since we put big focus on community feedback and suggestions, we are looking for people for our internal tests, that will discuss whether current changes „fit” into the game and maybe suggest some changes themselves. If what you’ve just read sounds interesting to you, if you want to help creating server fitted for you, join our server Discord. Help us to understand what Lineage 2 players in 2026 actually expect and need — so we can meet those expectations and avoid becoming just another server that dies a natural death.     Even if you’re not interested in playing right now, but you are a long-time Lineage 2 player, feel free to join our community. We would greatly appreciate your experience and feedback to help us improve and develop our project. Join the growing L2Genesis community: https://discord.gg/mcuHsQzNCm Also check our website: https://l2genesis.com/
    • I messaged you privately. If you want me to help, message me privately.  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..