Key Macros или примитивные читы.
|
|
Проверенный
1685 сообщений
Мужчина
|
Quote (MECT_HET) редко больше полу-секунды на св98 только прицеливание занимает ~150мс. А смена оружия с секунду точно должно быть.
Know your role and shut your mouth
|
|
|
|
|
Модератор
715 сообщений
Мужчина
|
А меня что то макро заебло , начал так задрить )
|
|
|
|
|
Пользователь
145 сообщений
Мужчина
|
Quote (MiNeX) А меня что то макро заебло , начал так задрить ) Ну нет, квиксвитч я должен научить делать рабочий! =) Жать 3-1 как-то уже достало немного.
|
|
|
|
|
Пом. Админа
899 сообщений
Мужчина
|
Создание Макроса с помощью программы AutoHotkey-под мышку или клаву любой модели.
Документация http://www.script-coding.com/AutoHotkeyTranslation.html Скачать http://www.softpedia.com/get/System/OS-Enhancements/AutoHotkey.shtml
Для редактирования Макроса можно пользоваться notepad-ом, или взять Notepad++ тут http://notepad-plus-plus.org/
Примеры готовых макросов:
Code SIMPLE KEYBOARD MACROS Firing Loop
Normally in shooting games when you press Left Mouse button it fires the gun.
Let learn to write a script that will fire 3 rounds of bullet for every mouseclick
Copy paste following Red fonted stuff in the script (using notepad)
Lbutton::
Loop,3
{
Send, Lbutton
Sleep 100
}
Return
Explaination
Loop = how many times repeat the action
Send, = sends that keystroke
Sleep = how many milliseconds to wait before each repetition.
Return = shows the script / part of the script to stop there
For sending a keystroke / mouse click you can use send or sendinput or sendplay whatever works in your case (refer the help file by right clicking on your running script > Help or goto Start > Programs> Autohotkey > Help)
Fire & Reload loop
Suppose your AK-47 got 30 bullets and you want to fire all 30 rounds and then get it reloaded afterwards by only 1 mouseclick (ass-uming that your Reload key is R) Simple fire-reload loop Fire-change weapons
Because reloading takes time
Ass-uming that your next weapon key is '2'
Lbutton::
Loop,30
{
Send, Lbutton
Sleep 100
}
SEND, R
Return Lbutton::
Loop,30
{
Send, Lbutton
Sleep 100
}
SEND, 2
Return
Crouch , Fire reload
In most new games, if you crouch / go prone and then shoot = your accuracy increase and your chances of getting hit by the enemy bullet reduces
Now ass-uming that your toggle-crouch key is 'X' and you want to crouch-fire-reload with only one mouse click Crouch-Fire 3 rounds-stand up Crouch-fire
entire mag & reload
Lbutton::
Send, X
Loop,3
{
Send, Lbutton
Sleep 100
}
SEND, X
Return
Lbutton::
Send, X
Loop,30
{
Send, Lbutton
Sleep 100
}
SEND, R
Return
Bunny-hop
If you constantly jump, while walking , running etc. then less chances of enemy aiming perfectly and killing you. (ass-uming that your jump key is 'spacebar & crouch/prone key is X) Simple bunnyhop Multiple bunnyhop – crouch- standup-bunnyhop
`::
Send `
Sleep 500
return `::
Loop,3
{
Send `
Sleep 500
Send X
}
return
Remark : ` in AHK languge means spacebar
Recoil- Accuracy
When you fire a gun, your aim-cursor slightly goes upwards due to jerk from the gun's fire according to Newton's 3rd Law – that is called Recoil.
That reduces your accuracy while playing those non-productive multiplayer games on internet.
Now we can remove it, by first recording the exact aim-cursor location before firing and then sending the mouse back to that place after firing- using Autohotkey macros , ofcourse
Ass-uming that your firing button is left mouse button Simple anti-recoil Fire 30 rounds- remove recoil each time –reload
Lbutton::
MouseGetPos, xpos, ypos
Send, Lbutton
Mousemove, %xpos%,%ypos%
return Lbutton::
Loop, 30
{
MouseGetPos, xpos, ypos
Send, Lbutton
Sleep 200
Mousemove, %xpos%,%ypos%
Sleep,100
}
Send R
return
Ultimate Wicked script
Now from all that we learned until now- lets combine it and make a macro-script so that when you press Left Mousebutton, it will crouch & Fire 30 rounds from your AK & then instead of wasting time in reloading it'll Then switch to pistol and fire 9 bullets- just like Black-Hawk Down
Ass-ming that your '2' changes weapon, X for crouch When you press spacebar- it'll bunnyhop-crouch-fire 3 round- and repeat it 30 times
Lbutton::
Send, X
Loop,30
{
Send, Lbutton
Sleep 100
}
SEND, 2
Loop, 9
{
Send, Lbutton
Sleep 100
}
Return
`::
Loop,30
{
Send `
Sleep 500
Send, X
Loop,3
{
Send, Lbutton
}
}
return
even more wicked stuff Accurate headshots without even moving mouse!
If you knew the exact number of the pixel color of an enemy's face / head/hat then you can make your mouse move over there and shoot.
First you need to take screenshot of game with enemy visible in it.
Then you find the Pixel color of it using following script
Move your mouse over enemy's head in the screenshot. then press control z
^z::
MouseGetPos, MouseX, MouseY
PixelGetColor, color, %MouseX%, %MouseY%
MsgBox The color at the current cursor position is %color%.
Return
Now you'll get messegebox containing pixelcolor's code
Note it down and then make new autohotkey scriptfile like this
Ass-uming that your screensize is 800X600
And the pixel color you are searching is 0x9d6346 (refer help file for more details, I'm only giving you a broad lay-out)
Lbutton::
PixelSearch, Px, Py,0,600, 800,0, 0x9d6346, 3, Fast
Mousemove, %px%,%py%
Send Lbutton
Return
Using above script you can press Left mousebutton and it'll move your mouse over enemy's head and then shoot.
Tweak –lets combine anti-recoil inside it
Lbutton::
PixelSearch, Px, Py,0,600, 800,0, 0x9d6346, 3, Fast
Mousemove, %px%,%py%
Send Lbutton
Sleep 200
Mousemove, %px%,%py%
Return
Even more Wicked Tweaking
Fire 30 rounds on enemy's head, remove recoil each time and then reload or change weapons and repeat it.
Do it by yourself!!
Now finally
Hardcore Evil Tweaking
You can search the game screen for some specific text or pixel like health amt / health bar getting low and then you can trigger autohotkey to automatically use the health-potions e.g for Diablo etc. RPG games.
With autohotkey – the sky is the limit!
What are you waiting for?start writing scripts right NOW!
And if you get confused or can't make it work
Then come over here
|
|
|
|
|
Пользователь
145 сообщений
Мужчина
|
Не знаю, как насчёт гейгварда, но угнововскими античитами этот кликер вычисляется.
|
|
|
|
|
Проверенный
1685 сообщений
Мужчина
|
Quote (MECT_HET) но угнововскими античитами этот кликер вычисляется. но, обычно, в ла2(и прочих задроммоэрпоге) кликалки и макросы запрещены. А в иджи нет.
Know your role and shut your mouth
|
|
|
|
|
Пользователь
145 сообщений
Мужчина
|
в линейке есть собственная встроенная скриптописалка. К тому же, те радости, которые используют задроты этого форума, никакими античитами не палятся - запрещены они или нет =)
Это, впрочем, не касается вышеупомянутого кликера.
|
|
|
|
|
Проверенный
1685 сообщений
Мужчина
|
Quote (MECT_HET) в линейке есть собственная встроенная скриптописалка. да лана, она через жопу работает. Учитывая, что если по тебе удар нанесут, то макрос остановится. К тому же, с некоторыми макрописалками можно бота простенького заделать. Я как-то ставил у парочки мобов, забиндил на повторы и уходил по своим делам на пару часов. Как раз, к приходу пару лвл апнулось и весь лут собран :3
Know your role and shut your mouth
|
|
|
|
|
Пользователь
113 сообщений
Мужчина
|
А можно ли сделать ключом Ctrl (если ключ "Ctrl" нажат, то перейти к строке № ), и как это сделать ???
PointMan - P-90 Harimau RiflMan - AK-47 Hawkeye, AN-94 Sidewinder Мечта SVD Zebra
|
|
|
|
|
Проверенный
203 сообщений
Мужчина
|
Я вообще не парюсь над макро. Реддот? Я в нём не вижу никакой пользы и прикола. Это пародия на чит. Такими штучками никогда не пользовалься, мои пальцы сами как макрос - закончились патроны, жму Q и сразу же достаю пистолет. Перезарядку делаю тоже сам - когда в обойме меньше 20 патронов и есть где укрыться секунды на 2-3, то фиг делать.Добавлено (13.10.2011, 18:04) --------------------------------------------- И контроль отдачи елементарный - держу мышку в зоне обстрела и всё. Никакого норекоила не надо - он палевный.
|
|
|
|
|
Пользователь
310 сообщений
Мужчина
|
Quote (Petruha-CCCP) А можно ли сделать ключом Ctrl (если ключ "Ctrl" нажат, то перейти к строке № ), и как это сделать ??? Вкладку IF смотри в oscar
|
|
|
|
|
Пом. Админа
899 сообщений
Мужчина
|
Quote (MECT_HET) Не знаю, как насчёт гейгварда, но угнововскими античитами этот кликер вычисляется.
не факт,надо попробовать,у NProtect для разных игр свой Pattern Engine,за то что в л2 банит АВЕ может похер.
|
|
|
|
|
Пользователь
113 сообщений
Мужчина
|
Quote (lopatkin) Вкладку IF смотри в oscar Наверно ты имел ввиду раздел key...
PointMan - P-90 Harimau RiflMan - AK-47 Hawkeye, AN-94 Sidewinder Мечта SVD Zebra
|
|
|
|
|
Пользователь
113 сообщений
Мужчина
|
Тогда у меня такой вопрос, почему в разделе key ключом можно сделать 16 кнопок (см. скрин), когда на мышке их 7 ??? Может другие кнопки это какие-то клавиши с клавиатуры ???
PointMan - P-90 Harimau RiflMan - AK-47 Hawkeye, AN-94 Sidewinder Мечта SVD Zebra
|
|
|
|
|
Проверенный
1685 сообщений
Мужчина
|
Quote (Petruha-CCCP) ключом можно сделать 16 кнопок есть мышки где больше 7 кнопок.
Know your role and shut your mouth
|
|
|
|
|