HP-Clicker: секунды и интервалы в MU online

Автор ladd, 2008 Фев. 26, 13:37

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

-SpikeyWikey-

#40
Цитата: bespredeL от 2012 Нояб. 16, 16:04  Ребят, забудьте за кликеры ! ))

Ловите отцовскую вспомогалку)

Установка : Запустить Install и перезагрузить Пк)
После этого заходите в му и смотрите на скорость пития банок))

позже сделаю мега тему по поводу игры в му.
как только будет время.)

Хватит мучится



Лично мне это помогает, 10 человек не могут убить)

Добавил новый линк:

Скачать)
Качать не стал, что то подсказывает. Что после перезагрузки, будет голая попа на весь экран(ну или еще какая блокировка):D  :trollface:
п.с. ссылка мертвая )

SanneA

#41
Install.vbs
Спойлер
' Leatrix Latency Fix 1.23 (Install Script)
' To use, simply run this script and restart your computer.
' To run from within batch files, use 'cscript Install.vbs"

logo = "Leatrix Latency Fix"
Leatrix_Version = "1.23"

Const HKEY_LOCAL_MACHINE = &H80000002

Set oReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\.rootdefault:StdRegProv")
Set oZap = GetObject("winmgmts:{impersonationLevel=impersonate,(Shutdown)}!\.rootcimv2")

Set colOperatingSystems = oZap.ExecQuery("Select * from Win32_OperatingSystem")

Set shell = CreateObject("Shell.Application")
set wsnet = WScript.CreateObject("WScript.Network")
computername = ucase(wsnet.computername)

strKeyPath = "SYSTEMCurrentControlSetServicesTcpipParametersInterfaces"
oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys

if Wscript.Arguments.Count => 1 then
if (WScript.Arguments.Item(0) = "uac") then Leatrix_Uac = 1 else Leatrix_Uac = 0
end if

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

' Show logo for script users
if Leatrix_Script = 1 and Leatrix_Uac = 0 then
wscript.echo "Leatrix Latency Fix " & Leatrix_Version & " Batch Mode."
wscript.echo ""
end if

' Latency fix has already been applied
if CheckFix = true then
msg = "Leatrix Latency Fix is already installed on this computer."
if Leatrix_Script = 0 then
msg = msgbox (msg,48,logo)
else
wscript.echo msg
end if
wscript.quit
end if

' Show title for first run
If Leatrix_Uac = 0 then
if Leatrix_Script = 0 then
msg = logo & " " & Leatrix_Version & chr(13) & chr(13) & "This script will reduce your online gaming latency significantly by increasing the frequency of TCP acknowledgements sent to the game server.  It is designed for Windows XP (SP2 or higher), Windows Vista (SP1 or higher) and Windows 7 only." _
& 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) & "Leatrix Latency Fix is hosted at www.leatrix.com." _
& chr(13) & chr(13) & "Click Ok to begin."
else
msg = "Installing..."
end if

if Leatrix_Script = 0 then
msg = msgbox (msg,65,logo)

' Does user want to quit
if msg = 2 then
wscript.quit
end if
else
wscript.echo msg
end if
end if

' Attempt to apply latency fix
For Each subkey In arrSubKeys
err = oReg.SetDwordValue (HKEY_LOCAL_MACHINE,strKeyPath & subkey,"TcpAckFrequency","1")
Next

' If fix completed successfully
if CheckFix = true then
Success
wscript.quit
end if

' If fix did not complete successfully, run it again with UAC prompt
if CheckFix = false and Leatrix_Uac = 0 then
if Leatrix_Script = 0 then
msg = "Either your Windows account does not have Administrator privileges, or you are using Windows Vista or Windows 7 with User Account Control enabled."
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)

' Does user want to quit
if msg = 2 then
wscript.quit
end if

' Rerun script with UAC prompt
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 in order to use batch mode."
wscript.quit
end if
end if

' Check if script completed successfully with UAC prompt
if Leatrix_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 Leatrix_Script = 0 then
msg = msgbox (msg,48,logo)
end if
else
Success
end if
end if

wscript.quit

Function CheckFix()
' Checks to see if any of the settings have been applied
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 Leatrix_Script = 0 then
msg = "Leatrix Latency Fix 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
For Each objOperatingSystem in colOperatingSystems
objOperatingSystem.Reboot()
Next
end if
else
wscript.echo "Leatrix Latency Fix has been installed successfully."
wscript.echo "You need to restart your computer for the changes to take effect."
end if
end function
[свернуть]

NZK

Цитата: pavlusha от 2012 Нояб. 16, 17:51  Качать не стал, что то подсказывает. Что после перезагрузки, будет голая попа на весь экран(ну или еще какая блокировка):D  :trollface:
что то мне подсказивает что ты запуганый школяр.

такими делами я не занимаюсь..

-SpikeyWikey-

Цитата: bespredeL от 2012 Нояб. 17, 13:41  что то мне подсказивает что ты запуганый школяр.

такими делами я не занимаюсь..
Просто, есть печальный опыт еще похуже, чем я писал)

NZK

посмотри сколько у меня сообщений, какая группа и мои темы.
ни в одной теме нет ничего плохого!

я даже и не думаю о таких вещах как закинуть вирус либо бекдор.



Вот Саша скачал и показал из чего состоит скрипт.

sergej112

вопрос такой-работает ли на ноуте без нумпада?если да-как включать-выключать?

uckpa

Цитата: Everybody от 2008 Фев. 29, 11:31  HP-clicker v2.0 (New) - Новая версия, кликер для неРесетников (noob), пополняет жизни персонажу и ещё отлично подойдёт для ресетников благодаря тому что была добавлена еще одна фишка, HP пополняет каждую секунду, а это значит что в дуеле ваш character не умрёт.
В архиве два файла, hp clicker for Windows 32bit и hp clicker for Windows 64bit
Этот кликер содержит функции:
В этой версии теперь показывает сообщение (мелкое вверху экрана) о том что в данный момент включено в кликере, удобно вообщем теперь ненадо будет гадать что включилось =)
Вклучите Numpad (на клавиатуре должна лампочка загореться)
и потом справо клавиши которые включают:
/ - left clicker
* - right clicker
Pause - hp clicker pauza
0 - HP kazdie 1 [специально для дуели в PvP]
1 - HP kazdie 5 sekund
2 - HP kazdie 10 sekund
3 - HP kazdie 15 sekund
4 - HP kazdie 20 sekund
5 - HP kazdie 25 sekund
6 - HP kazdie 30 sekund
7 - HP kazdie 40 sekund
8 - HP kazdie 1 minutu
9 - HP kazdie 2 minuti
работает на: Windows 98/ME/2000/XP/Vista и на Windows 64bit platform

Скачать с


А можно сылку ? или она уже не актуально ?

Похожие темы (5)