<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; Бесконечная комбинация лкм+пкм.]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=11662&amp;type=atom" />
	<updated>2016-06-04T03:26:41Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=11662</id>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104666#p104666" />
			<content type="html"><![CDATA[<p>Пошарился по форуму, нашел вот что, http://script-coding.com/forum/viewtopic.php?id=7472. Возможно ли с помощью данного скрипта, скрыть нужный мне скрипт, если да, то расскажите как это сделать.</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-04T03:26:41Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104666#p104666</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104643#p104643" />
			<content type="html"><![CDATA[<p>Если кто знает способ обхода фроста, просьба отписаться. Всем спасибо за скрипты, все работают, но злой фрост все блочит.</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T11:01:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104643#p104643</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104641#p104641" />
			<content type="html"><![CDATA[<p><strong>Nikva</strong><br />Нет, тоже не воспринимает!</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T09:18:46Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104641#p104641</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104639#p104639" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>KostyaDominator пишет:</cite><blockquote><p>Получилось написать еденичное повторени при нажатии заданной клавиши.</p></blockquote></div><p>Игра воспринимала одиночное нажатие?</p>]]></content>
			<author>
				<name><![CDATA[Nikva]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27416</uri>
			</author>
			<updated>2016-06-03T09:01:00Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104639#p104639</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104637#p104637" />
			<content type="html"><![CDATA[<p>Нет, бесполезно, фрост блочит ахк вне зависимости от типа скрипта!</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T08:54:41Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104637#p104637</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104636#p104636" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>KostyaDominator пишет:</cite><blockquote><p>Переназначение не помогло, а насчет виртуального кода не в курсе, если можно то поподробнее.</p></blockquote></div><p>Хоткей &quot;3&quot; в моем предыдущем посте использует VK коды.<br />Еще способ, воспользоваться <a href="http://www.script-coding.com/AutoHotkey/DllCall.html">DllCall</a>, функцией <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms646260(v=vs.85).aspx">mouse_event</a>:<br /></p><div class="codebox"><pre><code>1::
While GetKeyState(&quot;1&quot;,&quot;P&quot;) {
MouseGetPos, dx0, dy0
DllCall(&quot;mouse_event&quot;,uint,0x0002,int,dx0,int,dy0,uint,0,int,0) ;MOUSEEVENTF_LEFTDOWN
Sleep 150
MouseGetPos, dx0, dy0
DllCall(&quot;mouse_event&quot;,uint,0x0004,int,dx0,int,dy0,uint,0,int,0) ; MOUSEEVENTF_LEFTUP
Sleep 150
MouseGetPos, dx0, dy0
DllCall(&quot;mouse_event&quot;,uint,0x0008,int,dx0,int,dy0,uint,0,int,0) ; MOUSEEVENTF_RIGHTDOWN
Sleep 150
MouseGetPos, dx0, dy0
DllCall(&quot;mouse_event&quot;,uint,0x0010,int,dx0,int,dy0,uint,0,int,0) ; MOUSEEVENTF_RIGHTUP
Sleep 150
}
Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Nikva]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27416</uri>
			</author>
			<updated>2016-06-03T08:17:20Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104636#p104636</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104635#p104635" />
			<content type="html"><![CDATA[<p>Переназначение не помогло, а насчет виртуального кода не в курсе, если можно то поподробнее.</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T07:56:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104635#p104635</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104634#p104634" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>KostyaDominator пишет:</cite><blockquote><p>Не а, все равно не работает в игре, на рабочем столе все работают!</p></blockquote></div><p>Тут несколько вариантов:<br />- Изменить хоткей, дабы не совпадал с хоткеем в игре.<br />- Использовать виртуальный код.</p>]]></content>
			<author>
				<name><![CDATA[SeaVodikendu]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33752</uri>
			</author>
			<updated>2016-06-03T07:52:10Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104634#p104634</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104633#p104633" />
			<content type="html"><![CDATA[<p>Выяснилось что Frost блочит AHK, есть ли способ обхода этого?</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T07:50:03Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104633#p104633</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104632#p104632" />
			<content type="html"><![CDATA[<p>Не а, все равно не работает в игре, на рабочем столе все работают!</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T07:19:35Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104632#p104632</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104628#p104628" />
			<content type="html"><![CDATA[<p>Обычно клиенты игр не блокируют нажатия, а просто не воспринимают их. <br /><a href="http://www.script-coding.com/AutoHotkey/Send.html">SendInput</a> работает без задержки и посылает нажатия почти мгновенно, можно попробовать через команду <a href="http://www.script-coding.com/AutoHotkey/Send.html">Send</a> или <a href="http://www.script-coding.com/AutoHotkey/Click.html">Click</a>. <a href="http://www.script-coding.com/AutoHotkey/SetKeyDelay.html">SetKeyDelay</a> и <a href="http://www.script-coding.com/AutoHotkey/SetMouseDelay.html">SetMouseDelay</a> настраивают длительность нажатия и задержку между ними, можно попытаться поменять их.<br />И еще как вариант воспользоваться VK кодами.<br /></p><div class="codebox"><pre><code>1::
SetMouseDelay, 50
While GetKeyState(&quot;1&quot;,&quot;P&quot;) {
Click
Sleep 250
Click R
Sleep 250
}
Return

2::
SetKeyDelay, 50, 50
While GetKeyState(&quot;2&quot;,&quot;P&quot;) {
Send, {LButton}
sleep, 250
Send, {RButton}
sleep, 250
}
Return

3::
While GetKeyState(&quot;3&quot;,&quot;P&quot;) {
SendInput, {VK1} ; LButton
sleep, 300
SendInput, {VK2} ; RButton
sleep, 300
}
Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Nikva]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27416</uri>
			</author>
			<updated>2016-06-03T05:58:17Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104628#p104628</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104627#p104627" />
			<content type="html"><![CDATA[<p>Не подскажешь что делать, если игра блочит ахк, тупо не работает в игре, хотя свернув ее, скрипт работает!</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T04:34:07Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104627#p104627</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104626#p104626" />
			<content type="html"><![CDATA[<p>Доброго.<br />Все просто:<br /></p><div class="codebox"><pre><code>1::
loop
{
KeyWait, 1, D ; Ждет нажатия хоткея &quot;1&quot;
sendinput, {LButton}
sleep, 300
sendinput, {RButton}
sleep, 300
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[SeaVodikendu]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33752</uri>
			</author>
			<updated>2016-06-03T03:25:18Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104626#p104626</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Бесконечная комбинация лкм+пкм.]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=104625#p104625" />
			<content type="html"><![CDATA[<p>Доброго времени суток. Столкнулся с нуждой в постоянном спаме лкм+пкм, но что бы сберечь мышку решил написать скрипт. Получилось написать еденичное повторени при нажатии заданной клавиши. Суть вопроса в том, как зациклить спам лкм+пкм с задержкой( Например лкм+ задержка 0.3 сек + пкм + задержка 0.3 сек и так далее) при ЗАЖаТИИ нужной кнопки, после отжатия спам прекращается. Надеюсь я понятно донес свои мысли и буду благодарен помощи.</p>]]></content>
			<author>
				<name><![CDATA[KostyaDominator]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33937</uri>
			</author>
			<updated>2016-06-03T00:12:20Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=104625#p104625</id>
		</entry>
</feed>
