Search found 141 matches

by mast4rwang
22 Mar 2019, 09:13
Forum: Gaming Help (v1)
Topic: WOW Spam key script
Replies: 9
Views: 5434

Re: WOW Spam key script

Close this thread already, the guy is trying to get a professional level program for free :D
by mast4rwang
10 Feb 2019, 10:48
Forum: Ask for Help (v1)
Topic: ActiveX Memory consumption
Replies: 13
Views: 3056

Re: ActiveX Memory consumption

Hellbent wrote:
10 Feb 2019, 10:28
if destroying the gui does solve this, then you can perhaps just put the activeX control in a child window within a parent and just destroy the child.
You monster...
by mast4rwang
10 Feb 2019, 06:32
Forum: Ask for Help (v1)
Topic: find if user has password set Topic is solved
Replies: 4
Views: 1238

Re: find if user has password set Topic is solved

Mister AHK_hackerman_student xD
by mast4rwang
09 Feb 2019, 05:02
Forum: Ask for Help (v1)
Topic: Compose a short .ahk script for me.
Replies: 7
Views: 1634

Re: Compose a short .ahk script for me.

You can also rename files in script itself and rename them with your specific rules, the easiest way being to enumerate files using a_index in a loop.

renaming:
https://autohotkey.com/docs/commands/FileMove.htm
by mast4rwang
05 Feb 2019, 06:12
Forum: Gaming Help (v1)
Topic: [vermntide 2] melee animation cancel loop
Replies: 2
Views: 1195

Re: [vermntide 2] melee animation cancel loop

Send me PM, easy fix.
by mast4rwang
31 Jan 2019, 16:21
Forum: Gaming Help (v1)
Topic: Color change and search image
Replies: 2
Views: 1111

Re: Color change and search image

It depends on whether the images are stationary. For example I tried this on runescape to find green frogs around the player, kind of similar situation of yours, and it didn't work consistently.
by mast4rwang
26 Jan 2019, 02:27
Forum: Gaming Help (v1)
Topic: Code for less recoil
Replies: 6
Views: 2518

Re: Code for less recoil

BitBot wrote:
25 Jan 2019, 18:04
How can I add pause and unpause while in program?
do some tests with Suspend, On and Suspend, Off commands
by mast4rwang
25 Jan 2019, 11:00
Forum: Gaming Help (v1)
Topic: Code for less recoil
Replies: 6
Views: 2518

Re: Code for less recoil

sleep commands
by mast4rwang
25 Jan 2019, 10:59
Forum: Ask for Help (v1)
Topic: How to block a key's native function for only part of the code
Replies: 4
Views: 1837

Re: How to block a key's native function while using ~ prefix

if !toggle send {Click} ;d also remove ~, add * because you will send click in your code. Thanks for the help. At first I tried not using the ~ prefix and adding Send {Click}, but this would change the output of both single clicks AND holding down clicks into single clicks, which is not what I want...
by mast4rwang
24 Jan 2019, 14:48
Forum: Ask for Help (v1)
Topic: How to block a key's native function for only part of the code
Replies: 4
Views: 1837

Re: How to block a key's native function while using ~ prefix

if !toggle send {Click} ;d
also remove ~, add * because you will send click in your code.
by mast4rwang
24 Jan 2019, 14:44
Forum: Gaming Help (v1)
Topic: Code for less recoil
Replies: 6
Views: 2518

Re: Code for less recoil

All you need to know about mouse_event to be able to send clicks, drag mouse rel/abs and so on:
https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-mouse_event
by mast4rwang
24 Jan 2019, 14:38
Forum: Ask for Help (v1)
Topic: I am baffled... How do you make it so while you hold down a key it presses itself until you let go? Topic is solved
Replies: 10
Views: 2670

Re: I am baffled... How do you make it so while you hold down a key it presses itself until you let go? Topic is solved

So timers do not interfere with each other? There is only one timer in this example, but the point is that a while(GetKeyState()) loop locks up the current thread. If, for example, you have a loop running, and you hit a hotkey with a GetKeyState loop in it, the loop in your main thread is suspended...
by mast4rwang
24 Jan 2019, 09:23
Forum: Ask for Help (v1)
Topic: I am baffled... How do you make it so while you hold down a key it presses itself until you let go? Topic is solved
Replies: 10
Views: 2670

Re: I am baffled... How do you make it so while you hold down a key it presses itself until you let go? Topic is solved

Y'all are forgetting your $ prefix And putting SetKeyDelay in a loop like that is pointless, it only needs to be used once, at the beginning of the script Plus getkeystate loops are just the wrong way to do this - It's all fair and well when there is only one hotkey, but if you try and do this with...
by mast4rwang
24 Jan 2019, 07:24
Forum: Gaming Help (v1)
Topic: AHK Triggerbot Script
Replies: 1
Views: 1722

Re: AHK Triggerbot Script

if you wanted to make a triggerbot you wouldn't ask for a trigger bot.... you just want a finished script in which case you can send a private message.
by mast4rwang
21 Jan 2019, 18:04
Forum: Ask for Help (v1)
Topic: Suspend Copy and Paste Script with Key-hold Topic is solved
Replies: 3
Views: 1370

Re: Suspend Copy and Paste Script with Key-hold Topic is solved

#NoEnv #MaxHotkeysPerInterval 99000000 #HotkeyInterval 99000000 ;#NoTrayIcon #KeyHistory 0 ListLines Off Process, Priority, , A SetBatchLines, -1 SetKeyDelay, -1, -1 SetMouseDelay, -1 SetDefaultMouseSpeed, 0 SetWinDelay, -1 SetControlDelay, -1 SendMode Input CoordMode, Mouse, Screen *WheelUp:: if(G...
by mast4rwang
21 Jan 2019, 17:48
Forum: Gaming Help (v1)
Topic: copying unselectable text
Replies: 3
Views: 1128

Re: copying unselectable text

cheat engine comes to mind, but don't put much faith into it because you need a powerful PC and good understanding of searching the memory with it.
by mast4rwang
21 Jan 2019, 13:14
Forum: Gaming Help (v1)
Topic: copying unselectable text
Replies: 3
Views: 1128

Re: copying unselectable text

print screen + OCR
or
read memory address of that text

Go to advanced search