<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK:  Saints Row The Third (готовый скрипт)]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=9773&amp;type=atom" />
	<updated>2014-07-10T04:47:48Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=9773</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK:  Saints Row The Third (готовый скрипт)]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84660#p84660" />
			<content type="html"><![CDATA[<p>Да ещё...</p><p><strong>1. </strong>Подпрограмма <strong>lCorrectorYaw</strong> используется автоматически при нажатии стрелок/клавиш <strong>Left</strong> или <strong>Right</strong>, значит код </p><div class="codebox"><pre><code>Hotkey, %keyHome%,           lCorrectorYaw,    On
и
Hotkey, %keyHome%,           lCorrectorYaw,    Off  </code></pre></div><p> не нужен, т.е. не нужно задействовать клавишу.<br />Я отказался от корректора поворотов из за его сложности, но компенсатор поворотов всё же есть. </p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Код компенсатора</div><div class="fancy_spoiler"><div class="codebox"><pre><code>lLeft:
    ;fUDLR:=true
  Send, {Left Down}
    fnTurnLR(vGearSpdTimer, 5, 1, &quot;Left&quot;)
  Send, {Left Up}
    ;fUDLR:=false    
return

lRight:
    ;fUDLR:=true
  Send, {Right Down}
    fnTurnLR(vGearSpdTimer, 5, 1, &quot;Right&quot;)
  Send, {Right Up}
    ;fUDLR:=false
return

;The function of soft turn, provides input in the steep turn at high speed.  
fnTurnLR(iTimer, iDec, iInc, iKey)
{
  global ;------

  local vSpdTimer
  local cTimer, cDec, cInc, cKey
  local fReEnter:=false

      if (fReEnter)     ;Protection from of recursion
                return
      fReEnter := true
      cTimer := iTimer, cDec:=iDec, cInc:=iInc, cKey:=iKey
  
      vGearSpdTimer := cTimer
      while (GetKeyState(cKey, &quot;P&quot;))
        {
          vSpdTimer := vGearSpdTimer
          sleep %td50_Sleep%
          while ((GetKeyState(cKey, &quot;P&quot;)) &amp;&amp; (vGearSpdTimer&gt;0))
            {
              vGearSpdTimer -= cDec
              ;sleep %td50_Sleep%
            }
          while ((GetKeyState(cKey, &quot;P&quot;)) &amp;&amp; (vGearSpdTimer&lt;vSpdTimer))
            {
              vGearSpdTimer += cInc
              ;sleep %td50_Sleep%
            }      
        }
      fReEnter := false
  return
} </code></pre></div></div></div><p> Сама подпрограмма только выдаёт звук и всё, т.е. нет таймера для обработки(не помню когда отказался)</p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;lCorrectorYaw</div><div class="fancy_spoiler"><div class="codebox"><pre><code>;Enable/disable the car turn corrections depending on its speed.
lCorrectorYaw:
  if (fScepl)
        return
    if (fCarTurn)                     
      {
             fCarTurn:=false
             fnPlaySoundTHQ(iSoundCorrectorYawOFF)
            }
        else
            {
                fCarTurn:=true
                fnPlaySoundTHQ(iSoundCorrectorYawON)                        
            }                    
return</code></pre></div></div></div><p> Но расчёт ведётся, так что осталось написать код в подпрограмме </p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;fnGearSpdBrk(vParam0, vSpdBrk)</div><div class="fancy_spoiler"><div class="codebox"><pre><code>;---
;Main function to dynamically calculate the speed, braking and turning angle corrector, as well as set the flags for timers speed and braking
;---Beginning of function fnGearSpdBrk
fnGearSpdBrk(vParam0, vSpdBrk) ;The values for vSpdBrk (0 - no matter, 1 - speed of the timer, 2 - braking of the timer, 3 and higher - the other subprogramme)
{
;The constants function fnGearSpdBrk and all the subprogrammes who is calling, they are defined above under subprogramme &quot;lVarGameTHQ&quot;.
;cFnSB_Learn||cFnSB_Speed||cFnSB_Brake||cFnSB_GT||cFnSB_Boost||cFnSB_Sharp||cFnSB_Turn||cFnSB_Above||
;          1            2            3         4            5            6           7            8

global ;All variables in the function will be global, it is necessary to comment to engage the directive &quot;global&quot; - should not be an empty string.
local fSpdBrk, vMComp, sLabel, vRetFn, vRetResult
static arSpdBrk := [&quot;lFnSB_Learn&quot;,&quot;lFnSB_Speed&quot;,&quot;lFnSB_Brake&quot;,&quot;lFnSB_GT&quot;,&quot;lFnSB_Boost&quot;,&quot;lFnSB_Sharp&quot;,&quot;lFnSB_Turn&quot;,&quot;lFnSB_Above&quot;] 
static cErFun := &quot;Error in the function `&quot; fnGearSpdBrk `&quot;. `n&quot; 
static fRetDone := 0, fRetErr := -1 
  
  sLabel := arSpdBrk[vSpdBrk]
  if (!IsLabel(sLabel))
   {
         msgbox, % vMsgOptionsEr 
                            ,Saints Row: The Third
              , %cErFun% Dynamic label with name = &quot;%sLabel%&quot; does not exist.`n`n %сErrOfExit%
              ,30
     ExitApp
    }
  ;a  := arSpdBrk[vSpdBrk]
  ;tooltip %a% = %vSpdBrk%
  vRetFn := fRetDone
  gosub, % arSpdBrk[vSpdBrk]
  if (vRetFn = fRetErr)
    {
         sbLabel := SubStr(sLabel, 2)
     msgbox, % vMsgOptionsEr 
                            ,Saints Row: The Third
              , %cErFun% Semantic error in the sub-function = &quot;%sbLabel%&quot; `n`n %сErrOfExit%
              ,30
     ExitApp
    }  

return vRetResult
;----------------------------------------
;-----Остальные обработчики
;----------------------------------------
;The block checks the flags and the initial values for the correction of the rotation.
lFnSB_Turn:
;----------------------------------Тут код для обработчика таймера
  return 
      
rern vRetFn:=fRetErrtu

;----------------------------------------
;-----Остальные обработчики
;----------------------------------------

;While not using - stopgap
; cFnSB_Above := 6
lFnSB_Above: 
return vRetFn:=fRetErr
}
;---End of function fnGearSpdBrk
;---
</code></pre></div></div></div><p> Далее дополнить </p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Секцию таймеров(там только Up и Dn) </div><div class="fancy_spoiler"><div class="codebox"><pre><code>;--------------------------------------------------------------------------
;The three basic routines speed, braking and rotation to them all is based.

;********** Begin section **********

;Subprogramme the timer speed/acceleration.
lMoveUp:
  fnGearSpdBrk(cNoneParam, cFnSB_GT)
  if (fnGearSpdBrk(cNoneParam, cFnSB_Speed))
        return
  if (vGearSpdTimer&lt;=0)
       vGearSpdTimer := 1
  Send, {UP Down}
  sleep %vGearSpdTimer%
  Send, {UP Up}
return

;Subprogramme the timer braking.
lMoveBrk:
  fnGearSpdBrk(cNoneParam, cFnSB_GT)
  if (fnGearSpdBrk(cNoneParam, cFnSB_Brake))
       return
  if (vGearBrkTimer&lt;=0)
       vGearBrkTimer := 1       
  Send, {Down Down}
  sleep %vGearBrkTimer%
  Send, {Down Up}
return

;********** End of section **********
;--------------------------------------------------------------------------</code></pre></div></div></div><p> Дополнить секцию ON/OFF таймеров </p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header" data-lang-open="открыть спойлер" data-lang-close="скрыть спойлер"><strong>+</strong>&nbsp;открыть спойлер</div><div class="fancy_spoiler"><div class="codebox"><pre><code>;----------Секция ON
lSetTimerOn:
  SetTimer lMoveUp,     %cTimerSpd%
  SetTimer lMoveBrk,    %cTimerBrk%
  ;SetTimer lKeyUpTimer, %сKeyUpTimer%
  ;SetTimer lKeyDnTimer, %cKeyDnTimer%
  return

lMainTHQon1:
    vRSh     :=1
    vRShX         := true
    ;fnGearSpdBrk(false, cFnSB_Turn) ;vSlew      := false
    fUDLR       := false
  fKeyUpTimer := false
  fKeyDnTimer := false  
  vSharpBrake := 0
  vBoostSpeed := 0
  fnGearSpdBrk(cNoneParam, cFnSB_Learn)    
return
;----------Секция OFF
lSetTimerOff:
    SetTimer lMoveUp,     Off
  SetTimer lMoveBrk,    Off
  ;SetTimer lMoveSlew,   Off
  ;SetTimer lKeyUpTimer, Off
  ;SetTimer lKeyDnTimer, Off  
return

lMainTHQoff1:
    vRSh     := 0
    vRShX         := true 
  fScepl      := false
    ;fnGearSpdBrk(false, cFnSB_Turn) ;vSlew      := false
    fUDLR       := false
  fKeyUpTimer := false
  fKeyDnTimer := false  
  vSharpBrake := 0
  vBoostSpeed := 0
    fnGearSpdBrk(cNoneParam, cFnSB_Learn)    
return
</code></pre></div></div></div><p> </p><p><strong>2.</strong> При старте скрипта передачи стоят <em>&quot;на ручнике&quot;</em>, что при старте это поменять достаточно изменить флаг на ИСТИНА <strong>fGearBox&nbsp; &nbsp; := true</strong> в подпрограмме <strong>lVarGameTHQ</strong></p><p><strong>3.</strong> Оптимальные значения, просто решил подобрать </p><div class="codebox"><pre><code>  arGear   := [1,   25,   50,   75, 125, 160, 300, 400, 625, 625]
  arGearIn := [1,    1,    2,    2,   3,   2,   4,   4,   5,   5]
  cTimerMin := 100
  cTimerSpd := 127</code></pre></div><p>Вроде всё <img src="//forum.script-coding.com/img/smilies/big_smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2014-07-10T04:47:48Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84660#p84660</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK:  Saints Row The Third (готовый скрипт)]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84641#p84641" />
			<content type="html"><![CDATA[<p>Дополнения - правки </p><p><strong>1.</strong> В подпрограмме <strong>lMainTHQoff2</strong> допущена ошибка, вот правильный вариант </p><div class="codebox"><pre><code>lMainTHQoff2:
  gosub lSetTimerOff
;When you turn off enough to indicate Cycled key, but clearer and less chance go wrong.
         Hotkey, WheelUp,                   lGearInc,              Off
         Hotkey, WheelDown,                 lGearDec,            Off
       Hotkey, Up,                           lUp,                         Off
       Hotkey, Down,                          lDown,                     Off
     Hotkey, Left,                            lLeft,                     Off
     Hotkey, Right,                        lRight,                 Off
         Hotkey, %keyPgUp%,           lMaxGear,         Off         
     Hotkey, %keyPgDn%,           lMinGear,           Off         
       Hotkey, %keyEnd%,            lToggleGearBox,    Off
       Hotkey, %keyHome%,           lCorrectorYaw,    Off    
       Hotkey, %keyRCtrl%,          lSwitchEngine,    Off
     
if (!fSoundPlay)
         {    
          fnPlaySoundTHQ(iSoundStop)
            fSoundPlay := true
         }
return</code></pre></div><p><strong>2.</strong> У кого проблемы с разгоном торможением, то фрагмент подпрограммы <strong>lVarGameTHQ</strong> </p><div class="codebox"><pre><code>;An array of speeds, the higher the value the longer the key is held &quot;Up&quot;, &quot;Down&quot;, &quot;Left&quot; and &quot;Right&quot;.
;The last element of the array is the value of the timer that you want to calculate the constants of the script. 
  arGear   := [1, 25,  75, 125, 175, 250, 600, 600]
 ;An array increment rate and is used to shift the algorithm is simple - arGear[iGear]/arGearIn[iGear]?12
  arGearIn := [1,  1,   2,   2,   3,   4,   5,   5]
 
 gosub lChkArrDef ;The variable/constant cMaxGear defined and tested in routine lChkArrDef.
 cMaxGear--
 iGear      := 1
 iGearTrc := iGear 
 vGearSpd :=  arGear[1]
 vGearBrk :=  arGear[1] 
 
;The minimum value of the timer in the arGear[cMaxGear]=500
 cTimerMin := 100

;Optimum value for cTimerSpd between 105 and 125 milliseconds (with a default period of 250). 
 cTimerSpd := Round(arGear[cMaxGear]/5) 
 
;Multiplier-factor to calculate the remaining constants, do not use integer division &quot;//&quot;, and use the standard &quot;/&quot; !
 cTimerFactor := Round(cTimerMin/cTimerSpd,2)  

;Calculation of constant values for timers braking and rotation correction.
 cTimerBrk := Round(cTimerSpd*cTimerFactor*25) 
 ;cTimerSlew := Round(cTimerSpd*cTimerFactor*5)</code></pre></div><p> замените на </p><div class="codebox"><pre><code>;An array of speeds, the higher the value the longer the key is held &quot;Up&quot;, &quot;Down&quot;, &quot;Left&quot; and &quot;Right&quot;.
;The last element of the array is the value of the timer that you want to calculate the constants of the script. 
  arGear   := [1,   30,   90, 150,  200, 300,  400, 625, 625]
 ;An array increment rate and is used to shift the algorithm is simple - arGear[iGear]/arGearIn[iGear]?12
  arGearIn := [1,    2,    2,   2,    3,   3,    4,   5,   5] 

 gosub lChkArrDef ;The variable/constant cMaxGear defined and tested in routine lChkArrDef.
 cMaxGear--
 iGear      := 1
 iGearTrc := iGear 
 vGearSpd :=  arGear[1]
 vGearBrk :=  arGear[1] 
 
;The minimum value of the timer in the arGear[cMaxGear]=500
 cTimerMin := 100

;Optimum value for cTimerSpd between 105 and 125 milliseconds (with a default period of 250). 
 ;cTimerSpd := Round(arGear[cMaxGear]/5) 
cTimerSpd := 135</code></pre></div><p> так будут более плавные повороты и не такой быстрый разгон на низких передачах</p>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2014-07-09T01:59:46Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84641#p84641</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK:  Saints Row The Third (готовый скрипт)]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84587#p84587" />
			<content type="html"><![CDATA[<p>И так, я внёс нужные корректировки.</p><p>Вот фрагмент определяющий клавиши, правда стрелки я не стал менять, но их тоже можно поправить по такоможу принципу.<br /></p><div class="codebox"><pre><code>;-----Инициализация
; Скрипт не выгружается
#Persistent
; Запрет повторного запуска
#SingleInstance

cSoundPath := &quot;e:\Sound Forge\THQ\&quot;
fNumLock := false
vNumLock := false
fLockRShift := false 
vDebugTHQ := false ;(true/false)  ;If debugging is enabled, then output your data to control the correct operation (scope of - all script).

;The keys program control, that can be modified.
keyRShift := &quot;F11&quot;
keyPgUp   := &quot;PgUp&quot;
keyPgDn   := &quot;PgDn&quot;
keyEnd    := &quot;End&quot;
keyHome   := &quot;Home&quot;
keyRCtrl  := &quot;F12&quot;

gosub lVarGameTHQ
Return</code></pre></div><p><span class="bbu">В аттаче: </span><br /><strong>1.</strong> Откомпилированный EXE (x64)<br /><strong>2.</strong> Звуки, которые должны располагаться в <strong>e:\Sound Forge\THQ\</strong> (уровень звука не зависит от игры, надо просто его настроить через Микшер громкости)<br /><strong>3.</strong> Иконка игры<br /><strong>4.</strong> Сам исходник (скрипт немного сложный, так что его правка будет тоже сложной).</p>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2014-07-07T05:47:24Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84587#p84587</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK:  Saints Row The Third (готовый скрипт)]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=84544#p84544" />
			<content type="html"><![CDATA[<p>Не большая автоматизация для игры <strong>Saints Row The Third</strong></p><p>По сути она касается управления машиной и другими средствами передвижения. В игре есть конечно круиз-режим, но он обладает недостатками и я постарался всё исправить.</p><p><span style="color: #ff0000"><strong>Осторожно, т.е. аккуратно.</strong></span><br /><strong>1.</strong> В игре намертво прописаны некоторые клавиши, можно было их вынести в блок инициализации, но я не стал.<br />Просто достаточно поправить два блока</p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Включение перехвата</div><div class="fancy_spoiler"><div class="codebox"><pre><code>lMainTHQon2:
;Hotkey - creates, modifies, enables, or disables a hotkey while the script is running.
;Here is a general rule records - Hotkey, KeyName [, Label, Options]
;Hotkey command syntax rules are described in the programming language AutoHotkey.
         Hotkey, WheelUp,                   lGearInc,              On
         Hotkey, WheelDown,                 lGearDec,            On
         Hotkey, PgUp,                lMaxGear,         On         
     Hotkey, PgDn,                lMinGear,           On         
       Hotkey, Up,                           lUp,                         On
       Hotkey, Down,                          lDown,                     On
     Hotkey, Left,                            lLeft,                     On
     Hotkey, Right,                        lRight,                 On
       Hotkey, End,                 lToggleGearBox,    On
       Hotkey, Home,                lCorrectorYaw,    On    
       Hotkey, RCtrl,               lSwitchEngine,    On     
 fnPlaySoundTHQ(iSoundStart)
 fSoundPlay := false
 gosub lSetTimerOn
return</code></pre></div></div></div><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Выключение перехвата</div><div class="fancy_spoiler"><div class="codebox"><pre><code>lMainTHQoff2:
  gosub lSetTimerOff
;When you turn off enough to indicate Cycled key, but clearer and less chance go wrong.
         Hotkey, WheelUp,                   lGearInc,              Off
         Hotkey, WheelDown,                 lGearDec,            Off
         Hotkey, PgUp,                lMaxGear,         Off         
     Hotkey, PgDn,                lMinGear,           Off         
       Hotkey, Up,                           lUp,                         Off
       Hotkey, Down,                          lDown,                     Off
     Hotkey, Left,                            lLeft,                     Off
     Hotkey, Right,                        lRight,                 Off
       Hotkey, End,                 lToggleGearBox,    Off
       Hotkey, Home,                lCorrectorYaw,    Off    
       Hotkey, RCtrl,               lSwitchEngine,    Off         
if (!fSoundPlay)
         {    
          fnPlaySoundTHQ(iSoundStop)
            fSoundPlay := true
         }
return</code></pre></div></div></div><p> <strong>2.</strong> Клавиши <strong>LShift&nbsp; RShift TAB ESC Enter / и стрелки</strong> так же прописаны &quot;намертво&quot;, но всё исправляется. <br />Клавиша <strong>/</strong> связана с перезарядкой оружия, т.е. она переделана, а клавиша <strong>Enter</strong> позволяет мгновенно выпрыгнуть из машины в независимости от её текущей скорости.<br /></p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Вот общий блок</div><div class="fancy_spoiler"><div class="codebox"><pre><code>;The script is paired directives - #UseHook, On|Off this means that the ON/OFF hook the keyboard and key within directives may call itself.
#UseHook, On

;Correction reloading weapons, ie &quot;/&quot; key (scan code of the key, it is the 8th, it&#039;s not a mouse problem or a system)
sc35:: 
 Send, {sc35 Down}
 KeyWait, % A_ThisHotkey
 Send, {sc35 Up}
return

;These keys access the game menu and we disable functions the main part the script.

Enter::
 if ((vRSh) &amp;&amp; (iGear&gt;=1)) ;When leaving the car do fast and smooth braking, almost on the spot, at any speed.
      {
        iGearTmp := iGear 
        gosub lMinGear
        Send, {Down Down}
         loop  %iGearTmp%
          Sleep %td30_Sleep%
        Send, {Down Up} 
      }
  Send, {Enter Down}
  KeyWait, % A_ThisHotkey
  Send, {Enter Up}
  
#UseHook, Off

~Esc::    
~Tab::
 fSoundPlay := true
 if (vRSh)
   {
    gosub lMainTHQoff2
        vRShX         := false
        vRSh          :=0
     }
return</code></pre></div></div></div><p> </p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Блок прямого указания стрелок</div><div class="fancy_spoiler"><div class="codebox"><pre><code>;--------------------------------------------------------------------------
;Handling routines the main operation keys - gas, brake, and turns (left and right).

;********** Begin section **********

lUp:
    fUDLR := true
    Send, {Up Down}
   vBoostSpeed := 0
     while (GetKeyState(&quot;UP&quot;, &quot;P&quot;))
    {
      fKeyUpTimer:=true
      sleep %td20_Sleep%
        fnGearSpdBrk(cNoneParam, cFnSB_GT)
      if (fnGearSpdBrk(cNoneParam, cFnSB_Boost))
                continue
          else
            sleep %td20_Sleep% ; 10 ms
        }
     Send, {Up UP}
   fKeyUpTimer:=false
     fUDLR:=false
return

lDown:
    fUDLR:=true
  Send, {Down Down}
   vSharpBrake := 0
     while (GetKeyState(&quot;Down&quot;, &quot;P&quot;))
    {
      fKeyDnTimer:=true
      sleep %td20_Sleep%
      fnGearSpdBrk(cNoneParam, cFnSB_GT)
      if (fnGearSpdBrk(cNoneParam, cFnSB_Sharp))
                continue
           else
            sleep %td20_Sleep% ; 50 ms               
        }    
    Send, {Down Up}
  fKeyDnTimer:=false  
    fUDLR:=false
return

lLeft:
    ;fUDLR:=true
  Send, {Left Down}
    fnTurnLR(vGearSpdTimer, 5, 1, &quot;Left&quot;)
  Send, {Left Up}
    ;fUDLR:=false    
return

lRight:
    ;fUDLR:=true
  Send, {Right Down}
    fnTurnLR(vGearSpdTimer, 5, 1, &quot;Right&quot;)
  Send, {Right Up}
    ;fUDLR:=false
return</code></pre></div></div></div><p>Всё остальное параметризовано, и легко меняется. Колёсико мыши используется т.к. масштабирование и скролл не работает в машине. </p><p><strong>3.</strong> Скрипт использует большое число таймеров, которые могут сами запускать другие таймеры, но при минимизации игры, остаётся только дежурный таймер, который снижает общую нагрузку.</p><p><strong>4.</strong> Звуки к скрипту не прилагаются</p><p><strong>5.</strong> Конфликты с игрой устранены, кодировка исходника на UTF-8, версия AHK - 1.1.15.01, OS Win7 SP1 x64 Ult.</p><p><strong>6.</strong> При переделке скрипта на другие игры, я не гарантирую его работоспособность.</p><p><strong>7.</strong> Если что то не понятно или работает не так как вам хочется - спрашивайте тут.</p><p>P.S.&nbsp; Комментариев много - разобраться не составит проблемы.</p><p><strong><span style="color: #3366ff">Аттач в сл. посте.</span></strong></p>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2014-07-05T04:09:23Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=84544#p84544</id>
		</entry>
</feed>
