Search found 96 matches

by TygerByte
17 Jun 2017, 04:23
Forum: Gaming Help (v1)
Topic: Pixelsearch for FFXIV Topic is solved
Replies: 1
Views: 784

Re: Pixelsearch for FFXIV Topic is solved

You would grab the color and location of the pixel you want to search for and implement pixelsearch. The best way would be to restrict location/area you are telling pixelsearch to look at and pick a unique color. Its usage is in the documentation https://autohotkey.com/docs/commands/PixelSearch.htm
by TygerByte
17 Jun 2017, 04:11
Forum: Gaming Help (v1)
Topic: Macro not working while shift is pressed
Replies: 1
Views: 1087

Re: Macro not working while shift is pressed

You need the wildcard modifier symbol. You can learn more in the documentation here at https://autohotkey.com/docs/Hotkeys.htm
Also you could make a separate hotkey that includes shift. A few alternatives out there for you.
by TygerByte
14 Jun 2017, 23:03
Forum: Gaming Help (v1)
Topic: Dragon's Dogma Online Script Help
Replies: 4
Views: 1975

Re: Dragon's Dogma Online Script Help

As I mentioned previously in the last post "Also you can use something like ahk_exe instead if you can't find the title." You should also look into https://autohotkey.com/docs/commands/WinActive.htm where it remarks about hidden windows. Usage can also be found there if you want to use alternative m...
by TygerByte
14 Jun 2017, 02:11
Forum: Ask for Help (v1)
Topic: Can`t update AutoHotkey - Access denied ?
Replies: 4
Views: 1536

Re: Can`t update AutoHotkey - Access denied ?

Uninstall it first or make sure you don't have scripts running. You could also try restarting your computer.
by TygerByte
14 Jun 2017, 01:36
Forum: Gaming Help (v1)
Topic: Dragon's Dogma Online Script Help
Replies: 4
Views: 1975

Re: Dragon's Dogma Online Script Help

You can try using this script to pull the info you need. Also you can use something like ahk_exe instead if you can't find the title. https://autohotkey.com/joe_df/autohotke ... %201.7.ahk
by TygerByte
13 Jun 2017, 06:33
Forum: Ask for Help (v1)
Topic: Auto unmute mic
Replies: 2
Views: 1067

Re: Auto unmute mic

You can combine that with https://autohotkey.com/docs/commands/SoundGet.htm
In the Examples you can see the following code which can be thrown in a simple loop.

Code: Select all

SoundGet, microphone_mute, Microphone, mute
if microphone_mute = Off
    MsgBox, The microphone is not muted.
by TygerByte
13 Jun 2017, 06:08
Forum: Gaming Help (v1)
Topic: Right Click + Mouse Movement
Replies: 4
Views: 1296

Re: Right Click + Mouse Movement

After looking over the sample 2 again I made the changes and came up with the following. Removed the Y axis stuff and set X axis to A and D while throwing in evilC's previous suggestion. It works for me. You still need to make/grab the library file from evilC's thread for this to work. As for your g...
by TygerByte
12 Jun 2017, 06:35
Forum: Gaming Help (v1)
Topic: Fakeish aimbot sorta thing
Replies: 1
Views: 666

Re: Fakeish aimbot sorta thing

I think you can find what you need in the following https://autohotkey.com/docs/commands/Random.htm https://autohotkey.com/docs/Variables.htm https://autohotkey.com/docs/commands/MouseMove.htm You would MouseMove to Random Variables which you can constrain to a set range in Random. Should be a good ...
by TygerByte
12 Jun 2017, 06:30
Forum: Gaming Help (v1)
Topic: Right Click + Mouse Movement
Replies: 4
Views: 1296

Re: Right Click + Mouse Movement

I'm not 100% certain but evilC has a library here https://autohotkey.com/boards/viewtopic.php?t=10159 you may be interested. Take a look at sample 2.
by TygerByte
12 Jun 2017, 06:21
Forum: Gaming Help (v1)
Topic: HELP MEEEEEE Topic is solved
Replies: 2
Views: 770

Re: HELP MEEEEEE Topic is solved

Looks like you are trying to do a rapidfire setup. Have a read through https://autohotkey.com/board/topic/6457 ... re-thread/ and it should provide you with the answer you need.
by TygerByte
09 Jun 2017, 02:59
Forum: Gaming Scripts (v1)
Topic: [Outdated] Creativerse OSD of Coordinates
Replies: 2
Views: 2933

[Outdated] Creativerse OSD of Coordinates

Outdated and no longer functions. Since the change to 64bit on Creativerse and the my general loss in interest to the game I've decided to stop updating the script.I will leave the script here as a reference. On Screen Display of your XYZ Coordinates in game at the top left corner with CTRL+F8 Hotk...
by TygerByte
24 Sep 2016, 07:17
Forum: Ask for Help (v1)
Topic: Wake up all devices?
Replies: 10
Views: 2190

Re: Wake up all devices?

I've never thought about if ahk inputs would keep a computer awake, but you can try https://support.microsoft.com/en-us/kb/930312 first to see if that works for you. I assume your wireless keyboard is a usb based dongle of some kind.
by TygerByte
24 Sep 2016, 06:46
Forum: Scripts and Functions (v1)
Topic: [AutoHotkey Programming Tools] + Featured Scripts
Replies: 113
Views: 226523

Re: [AutoHotkey Programming Tools]

toralf's "AHK Window Info 1.7" which I still use because I haven't found an alternative. Plus it's in ahk. Source can be found reposted by lblb @ https://autohotkey.com/board/topic/8204 ... ntry654680
by TygerByte
24 Sep 2016, 06:22
Forum: Ask for Help (v1)
Topic: TextSearch
Replies: 5
Views: 2774

Re: TextSearch

I've used the following before as it had some AHK code, but the reliability of it to read game text for me was not amazing unless I did my own preprocessing of the image captured. I never finished the script, but I had planned to use Imagemagick's commandline image processing on the text.. something...
by TygerByte
23 Sep 2016, 20:17
Forum: Gaming Scripts (v1)
Topic: [Function] Timer
Replies: 7
Views: 17713

Re: [Function] Timer

Hi thought I'd contribute some examples of my usage here. Thanks FanaticGuru for this great library. Arwen2.0 script I write and named after my buddy Arwen. I believe it was set to 800x600 in a VM setup. It would do pixelsearch on the target's HP or MP then cast spells. #Include Timer.ahk #ifWinActi...

Go to advanced search