Search found 96 matches

by TygerByte
19 Jul 2018, 17:58
Forum: Gaming Help (v1)
Topic: [Path of Exile] Updating Gurud's AutoPot + AutoChicken
Replies: 2
Views: 3036

Re: [Path of Exile] Updating Gurud's AutoPot + AutoChicken

This kind of cheating is frowned upon. Please seek help elsewhere as this forum is not a dedicated cheating forum.
by TygerByte
19 Jul 2018, 17:53
Forum: Gaming Scripts (v1)
Topic: Basic Warframe Auto Login
Replies: 15
Views: 12232

Re: Basic Warframe Auto Login

Can anyone help me as it isn't typing my password in after launching the game to the login screen? My code is below - Should check to make sure the Cursor is blinking in the Password input box and then you can push Enter. If it's not blinking you need to click in the input box to move the cursor th...
by TygerByte
31 Mar 2018, 21:50
Forum: Gaming Help (v1)
Topic: Is it possible for AHK to scan the screen faster than its frame rate?
Replies: 3
Views: 1482

Re: Is it possible for AHK to scan the screen faster than its frame rate?

I've only ever been able to get my pixel scan as low as about 30ms give or take a few ms. This was for use in trigger bots and just general constant scanning of the screen where a new scan has to be done frequently. Maybe someone else can help you out.
by TygerByte
04 Jan 2018, 19:02
Forum: Gaming Help (v1)
Topic: Button Holding Script Topic is solved
Replies: 8
Views: 2505

Re: Button Holding Script Topic is solved

F1:: Toggle := !Toggle Return #if Toggle = 1 ; You can just use Toggle, but I put the = 1 so I know. ~*w:: ~*s:: ~*a:: ~*d:: PressShift() Return ~*w up:: ~*s up:: ~*a up:: ~*d up:: ReleaseShift() Return #if PressShift() { if !GetKeyState("Shift") Send {Shift down} } ReleaseShift() { if GetKeyState(...
by TygerByte
04 Jan 2018, 18:51
Forum: Gaming Help (v1)
Topic: ImageSeach not working?
Replies: 2
Views: 1014

Re: ImageSeach not working?

Is the image a perfect match? You might consider adding the variation parameter to your image search if it's slightly off.
by TygerByte
04 Jan 2018, 02:19
Forum: Gaming Help (v1)
Topic: Button Holding Script Topic is solved
Replies: 8
Views: 2505

Re: Button Holding Script Topic is solved

I have a sprint macro you can look at it and see if you can get some inspiration. Basically does what you are doing, but I have some extra checks I put in and toggle on and off with other hotkeys not shown. I think my code is long and could use improvement, but it works. As for why I have the extra ...
by TygerByte
03 Jan 2018, 22:31
Forum: Gaming Help (v1)
Topic: "SOCD cleaning" (blocking directional input on conditions)
Replies: 1
Views: 1963

Re: "SOCD cleaning" (blocking directional input on conditions)

I have a sprint macro you can look at it and see if you can get some inspiration. You would likely just need to check every time the while loop runs if the key you need checked is pressed or not and do stuff the way you want. GL. I need sleep on my while loop because my system runs at a higher timer...
by TygerByte
02 Jan 2018, 05:59
Forum: Gaming Help (v1)
Topic: Fortnite Scirpts Topic is solved
Replies: 1
Views: 4268

Re: Fortnite Scirpts Topic is solved

You should verify what color PixelGetColor is seeing if it is seeing anything at all. Also go if you check the documentation on PixelGetColor you'll see your request will never work because 0xFEFEEFE doesn't exist. The format is wrong please see https://autohotkey.com/docs/commands/PixelGetColor.htm...
by TygerByte
01 Jan 2018, 16:00
Forum: Ask for Help (v1)
Topic: Recording from mic - what are the new methods?
Replies: 19
Views: 7732

Re: Recording from mic - what are the new methods?

Thought I would post this other way to show an audio meter for reference. Code was taken from this post https://autohotkey.com/boards/viewtopic.php?t=19078 #SingleInstance, Force #include VA.ahk MeterLength = 20 audiomic := VA_GetDevice("capture") audioMeter := VA_GetAudioMeter(audiomic) VA_IAudioMe...
by TygerByte
01 Jan 2018, 12:53
Forum: Gaming Help (v1)
Topic: Need a little(I guess) help with triggerbot script Topic is solved
Replies: 19
Views: 5077

Re: Need a little(I guess) help with triggerbot script Topic is solved

Yes you're not the only one whose has had such problems. I haven't encountered it, but a long time a go on another forum there was such talks of such. https://autohotkey.com/board/topic/93246-ingame-scripts-howto/?p=591730 and the main keyword here is low level driver. It's a long read if you want. ...
by TygerByte
01 Jan 2018, 12:41
Forum: Gaming Help (v1)
Topic: Memory search "string"
Replies: 3
Views: 1164

Re: Memory search "string"

Because what Reloaded suggested is the common go to when you need to get values from games. AHK is a programming language and doesn't have built in functions to do what you want. You have to write those yourself or find a some code that someone has written already. One does not simply Memory search ...
by TygerByte
31 Dec 2017, 18:41
Forum: Ask for Help (v1)
Topic: Sleep -1 Topic is solved
Replies: 12
Views: 2481

Re: Sleep -1 Topic is solved

Actually Thread 2 can interrupt the loop of Thread 1. You just need to alternate priority of the timers somewhere.

Edit: I'm not entirely sure about this after trying to increase the priority.
by TygerByte
31 Dec 2017, 18:25
Forum: Ask for Help (v1)
Topic: Sleep -1 Topic is solved
Replies: 12
Views: 2481

Re: Sleep -1 Topic is solved

The previous thread can't interrupt the current thread because you're in a loop. sleep -1 isn't a way out of the loop as far as I'm aware.
by TygerByte
30 Dec 2017, 18:14
Forum: Gaming Help (v1)
Topic: Need a little(I guess) help with triggerbot script Topic is solved
Replies: 19
Views: 5077

Re: Need a little(I guess) help with triggerbot script Topic is solved

Umm you can try running this script https://autohotkey.com/board/topic/9565 ... -tool-v41/

I goes through a bunch of ways to send keys. I found it a little hard to use, but eventually got it to work. GL
by TygerByte
30 Dec 2017, 15:04
Forum: Gaming Help (v1)
Topic: Need a little(I guess) help with triggerbot script Topic is solved
Replies: 19
Views: 5077

Re: Need a little(I guess) help with triggerbot script Topic is solved

You probably misread the tutorial when it meant delaying the press. This example is taken from the tutorial post https://autohotkey.com/boards/viewtopic.php?f=7&t=11084 Send, {a down} Sleep 20 Send, {a up} also you don't have to keep the variables inside the loop Salmon1 := 0x8A97A7 Salmon2 := 0x758...
by TygerByte
29 Dec 2017, 21:32
Forum: Gaming Help (v1)
Topic: Need help with A+D button spam [ dead by daylight ] Topic is solved
Replies: 1
Views: 1062

Re: Need help with A+D button spam [ dead by daylight ] Topic is solved

You may be sending the down and up too fast try placing a sleep in it. Something like the following. With this setup you can just change the Sleep time once at the beginning of the script if you're still experimenting. GL SleepDelay := 30 *LCtrl:: Loop { Send, {a Down} Sleep, %SleepDelay% Send, {a U...
by TygerByte
29 Dec 2017, 21:12
Forum: Gaming Help (v1)
Topic: NEED HELP WITH A SMALL AHK BOT
Replies: 5
Views: 1532

Re: NEED HELP WITH A SMALL AHK BOT

Here's a thread on the old forum that basically has everything you need. Read through it and put the actions you want in it. https://autohotkey.com/board/topic/6457 ... re-thread/ It shows multiple examples where you can pick what you want.
by TygerByte
29 Dec 2017, 21:08
Forum: Gaming Help (v1)
Topic: GW2 personal DPS meter?
Replies: 1
Views: 1008

Re: GW2 personal DPS meter?

The overlay alone is not enough. You would need to know how to get the data and parse it accordingly. That's also if it's not against the ToS.
by TygerByte
29 Dec 2017, 19:37
Forum: Gaming Help (v1)
Topic: Need a little(I guess) help with triggerbot script Topic is solved
Replies: 19
Views: 5077

Re: Need a little(I guess) help with triggerbot script Topic is solved

GreatGazoo wrote:cant you just search pixel color in the center and if not send click, or you want to just wave around and if you ever mouse over the enemy it shoots

You make it sound so easy. OP's problem is finding the best way to determine when to hit Right or Left and I know nothing about their game lol.
by TygerByte
29 Dec 2017, 18:29
Forum: Gaming Help (v1)
Topic: Need a little(I guess) help with triggerbot script Topic is solved
Replies: 19
Views: 5077

Re: Need a little(I guess) help with triggerbot script Topic is solved

Yea for getting the right pixel color and coordinates I usually resort to a hotkey with a msgbox or just a printscreen script that outputs into a PNG file where I can grab them later on paint or something. As for why your key doesn't work you can try some of the suggestions on our tutorial forum. ht...

Go to advanced search