<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; SAMP: Счётчик с прерыванием]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12963&amp;type=atom" />
	<updated>2017-09-07T19:08:18Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12963</id>
		<entry>
			<title type="html"><![CDATA[Re: SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=119164#p119164" />
			<content type="html"><![CDATA[<p>Спасибо, работают</p>]]></content>
			<author>
				<name><![CDATA[VechnoMolodoy]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38687</uri>
			</author>
			<updated>2017-09-07T19:08:18Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=119164#p119164</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=119062#p119062" />
			<content type="html"><![CDATA[<p>Я бы так сделал:<br /></p><div class="codebox"><pre><code>
i := -1

Numpad1::
Label:
	If Pause
		Return
	Send, % &quot;{F6}/tp &quot; ++i &quot;{Enter}&quot;
	If (i &lt; 1000 || !(i := -1))
		SetTimer, Label, -900
	Return
	
Numpad2:: 
	SetTimer, Label, Off
	If (i != -1) &amp;&amp; !(Pause := !Pause)
		GoTo Label
	Return
</code></pre></div><p>Цикл с паузой в другой скрипт не засунешь.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2017-09-01T15:51:34Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=119062#p119062</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=119042#p119042" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Loop 1001 {
var := A_Index - 1
send, {F6}/tp %var%{Enter}
sleep 900
}
return

Numpad2:: Pause, toggle</code></pre></div>]]></content>
			<author>
				<name><![CDATA[belyankin12]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34408</uri>
			</author>
			<updated>2017-09-01T07:08:46Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=119042#p119042</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=119041#p119041" />
			<content type="html"><![CDATA[<p><strong>belyankin12</strong><br />Да</p>]]></content>
			<author>
				<name><![CDATA[VechnoMolodoy]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38687</uri>
			</author>
			<updated>2017-09-01T04:10:43Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=119041#p119041</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118997#p118997" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>VechnoMolodoy</strong>, дайте теме осмысленный заголовок.</span></p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2017-08-31T14:13:07Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118997#p118997</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118973#p118973" />
			<content type="html"><![CDATA[<p>Он должен по очереди вводить 1 2 3 4 5 6 верно? И когда нужно, например он ввел 6, вы останавливаете скрипт а потом когда нажимаете кнопку продолжения он дальше пошел вводить 7 8 9 10... Так?</p>]]></content>
			<author>
				<name><![CDATA[belyankin12]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34408</uri>
			</author>
			<updated>2017-08-31T06:50:41Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118973#p118973</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[SAMP: Счётчик с прерыванием]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118962#p118962" />
			<content type="html"><![CDATA[<p>У меня есть код. <br /></p><div class="codebox"><pre><code>Numpad1::
send, {F6}/tp {тут число}{enter}
sleep 900
return
numpad2::pause</code></pre></div><p> и где {тут число} надо что бы вводил от 0 до 1000, и если надо будет то можно было остановить и возобновить с того же места на котором остановилось</p>]]></content>
			<author>
				<name><![CDATA[VechnoMolodoy]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38687</uri>
			</author>
			<updated>2017-08-31T00:15:22Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118962#p118962</id>
		</entry>
</feed>
