End your wow lag. Forever menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 42
  1. #1
    Saint-Pasdoy's Avatar Banned
    Reputation
    219
    Join Date
    Dec 2006
    Posts
    1,172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    End your wow lag. Forever

    Hello

    this is the samething as this thread http://www.mmowned.com/forums/wow-exploits/70880-end-your-wow-lag-forever-1.html

    but its a script doing it you dot have to play in ur reg edit !l

    some of the ppl say it work and other not but for me it worked !

    http://files.racs.com.au/_WOW/SetAckTick.vbs

    Pasdoy
    Last edited by Saint-Pasdoy; 12-12-2007 at 06:38 PM.

    End your wow lag. Forever
  2. #2
    Frissle's Avatar Member The Pope of Darkness CoreCoins Purchaser
    Reputation
    9
    Join Date
    May 2007
    Posts
    110
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LoL? what is this? =P

  3. #3
    The Mars Volta's Avatar Active Member
    Reputation
    51
    Join Date
    Oct 2006
    Posts
    197
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I searched for it on Google and 3 other positive threads came up, I'm too lazy to scan for fivruses.

    So I would wait before trying it out.

    The Mars Volta

  4. #4
    nightprey's Avatar Member
    Reputation
    6
    Join Date
    Nov 2007
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pasdoy View Post
    Hello

    this is the samething as this thread http://www.mmowned.com/forums/wow-ex...-forever-1.htm

    but its a script doing it you dot have to play in ur reg edit !l

    some of the ppl say it work and other not but for me it worked !

    http://files.racs.com.au/_WOW/SetAckTick.vbs

    Pasdoy
    some info plz, is it legal? is it real or a hackers work? other stuff

  5. #5
    Saint-Pasdoy's Avatar Banned
    Reputation
    219
    Join Date
    Dec 2006
    Posts
    1,172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    check his post :P

  6. #6
    dtk's Avatar Member
    Reputation
    14
    Join Date
    Nov 2007
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The vbs file looks clean, +rep.

  7. #7
    Skizzilini's Avatar Member
    Reputation
    10
    Join Date
    Jul 2007
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I cannot access the thread in your post. theres one letter missing at the end, its "html".

  8. #8
    Saint-Pasdoy's Avatar Banned
    Reputation
    219
    Join Date
    Dec 2006
    Posts
    1,172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ Skizz thx corrected it

  9. #9
    Errage's Avatar Contributor Authenticator enabled
    Reputation
    94
    Join Date
    Jan 2007
    Posts
    2,832
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Skizzilini View Post
    I cannot access the thread in your post. theres one letter missing at the end, its "html".
    That made me /facepalm at the pathetic-ness / laziness.
    I used to be a Super Mod. Now I'm just Super, thanks for asking.

  10. #10
    Phygar's Avatar ( ͡° ͜ʖ ͡°)
    Reputation
    443
    Join Date
    Nov 2007
    Posts
    1,591
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's a vbs. I don't know whhat it does exactly


    ' --------------------------------------------------------------------------------
    ' Script: setTcpAck.vbs
    ' Purpose: Simple little script to clear tcpacktick delays for SMB
    ' Author: Hyperus
    ' Notes: No Liability Accepted for use under any circumstances
    ' --------------------------------------------------------------------------------
    '
    Option Explicit
    'Const vbYesNo = 4
    'Const vbYes = 6
    'Const vbNo = 7
    Dim objWMIService,colOperatingSystems,objOperatingSystem
    Dim nResponse,OSVersion
    Dim oShell,sNIC, n
    Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\.\root\cimv2")
    Set colOperatingSystems = objWMIService.ExecQuery ("Select * from Win32_OperatingSystem")
    For Each objOperatingSystem in colOperatingSystems
    OSVersion = Left(objOperatingSystem.Version,3)
    Next
    Set objWMIService = nothing
    Set colOperatingSystems = nothing
    Set objOperatingSystem = nothing
    nResponse = MsgBox("Clear TcpAck Delays on this machine. Is this what you want to do?" & vbCRLF & vbCRLF & "Click Yes to proceed or No to quit.", vbYesNo, "AddIP")
    If nResponse = vbNo Then
    WScript.Echo "*** Script terminated by user ***"
    WScript.Quit 0
    End If
    Set oShell = WScript.CreateObject("WScript.Shell")
    For n = 1 To 20
    sNIC = ""
    On Error Resume Next
    sNIC = oShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\" & CStr(n) & "\ServiceName")
    Err.Clear
    On Error Goto 0

    If sNIC <> "" Then
    WScript.Echo "Found Apapter [" & CStr(n) & "] " & sNIC
    Select Case OSVersion
    Case "5.0"
    oShell.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interface s\" & sNIC & "\TcpDelAckTicks",0,"REG_DWORD"
    wscript.echo "Writing : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces \" & sNIC & "\TcpDelAckTicks=0"
    Case "5.1"
    oShell.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interface s\" & sNIC & "\TcpAckFrequency",1,"REG_DWORD"
    wscript.echo "Writing : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces \" & sNIC & "\TcpAckFrequency=1"
    Case "5.2"
    oShell.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interface s\" & sNIC & "\TcpAckFrequency",1,"REG_DWORD"
    wscript.echo "Writing : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces \" & sNIC & "\TcpAckFrequency=1"
    Case "6.0"
    oShell.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interface s\" & sNIC & "\TcpAckFrequency",1,"REG_DWORD"
    wscript.echo "Writing : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces \" & sNIC & "\TcpAckFrequency=1"
    Case Else
    WScript.Echo "'" & OSVersion & "'" & " Operating System not Suppported for this Reg Hack"
    End Select

    End If
    Next
    Set oShell = Nothing
    WScript.Echo "Done."
    nResponse = MsgBox("The machine must be restarted before these changes will take effect." & vbCRLF & vbCRLF & "You must do this manually.", 0, "AddIP - Done!")
    WScript.Quit 0

  11. #11
    L'Lawliet's Avatar Contributor
    Reputation
    212
    Join Date
    Jun 2007
    Posts
    1,765
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone knwo fi this works?

  12. #12
    TheDipper's Avatar Member
    Reputation
    51
    Join Date
    Sep 2007
    Posts
    411
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks like it messes with the ack, so yeah it should do something.

  13. #13
    tyson's Avatar
    tyson
    Guest
    But what? my computer is shit and i cant play World of warcraft

  14. #14
    Saint-Pasdoy's Avatar Banned
    Reputation
    219
    Join Date
    Dec 2006
    Posts
    1,172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This works. I, and some friends of mine got from 600ms to 10 ms. And i havent had a single lagspike since then

    To get low pings with 2 simple registry hacks do the following. You need to apply both registry changes to get the maximum effect.

    1 - TcpAckFrequency - NOTE if you are running Windows Vista this setting may not have any effect - a hotfix is needed which i'm tracking down. This works fine under Windows XP

    Type "regedit" in windows "run.." dialog to bring up registry menu

    Then find:
    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParametersInterfaces

    There will be multiple NIC interfaces listed in there, find the one you use to connect to the internet, there will be several interfaces listed (they have long names like {7DBA6DCA-FFE8-4002-A28F-4D2B57AE8383}. Click each one, the right one will have lots of settings in it and you will see your machines IP address listed there somewhere. Right-click in the right hand pane and add a new DWORD value, name it TcpAckFrequency, then right click the entry and click Modify and assign a value of 1.

    You can change it back to 2 (default) at a later stage if it affects your other TCP application performance. it tells windows how many TCP packets to wait before sending ACK. if the value is 1, windows will send ACK every time it receives a TCP package.

    2 - TCPNoDelay
    This one is pretty simple

    Discussed here

    Type "regedit" in windows "run.." dialog to bring up registry menu

    Then find:
    HKEY_LOCAL_MACHINESOFTWAREMicrosoftMSMQParameters

    Right-click in the right hand pane and add a new DWORD value, name it TCPNoDelay, then right click the entry and click Modify and assign a value of 1.

    Click Ok and close the registry editor, then reboot your PC.

    I have found the performance to be at least as good as routing via a linux box, possibly better.
    Me its doing the samethign but with only a few click !

  15. #15
    Zenthours's Avatar Contributor
    Reputation
    154
    Join Date
    Jul 2006
    Posts
    157
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seams to work for me, Thanks a bunch
    Last edited by zenthours; 12-12-2007 at 11:24 PM.

Page 1 of 3 123 LastLast

Similar Threads

  1. [Selling] Your WoW Account is Here - Various WoW Characters for Sale -- Rares -- End Game
    By Delirik in forum WoW-US Account Buy Sell Trade
    Replies: 1
    Last Post: 05-27-2014, 02:37 AM
  2. [Selling] Your WoW Account is Here - Various WoW Characters for Sale -- Rares -- End Game
    By Delirik in forum WoW-EU Account Buy Sell Trade
    Replies: 1
    Last Post: 05-27-2014, 02:34 AM
  3. End your wow lag. Forever.
    By IJakobI in forum World of Warcraft Exploits
    Replies: 64
    Last Post: 12-27-2007, 05:19 PM
  4. [Guide] How to lag your WoW
    By Cursed in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 10-22-2007, 07:56 PM
  5. lag your wow
    By Toofy in forum World of Warcraft Exploits
    Replies: 46
    Last Post: 10-14-2007, 04:36 PM
All times are GMT -5. The time now is 06:50 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search