Search found 46 matches

by 0sync0
23 Jun 2019, 21:36
Forum: Forum Issues
Topic: Phishing attempt sent to AHK email address
Replies: 3
Views: 1712

Phishing attempt sent to AHK email address

I use a unique email address for each web site that requires registration. Today I received a phishing attempt sent to the email address that is used exclusively for this forum.
by 0sync0
15 Apr 2017, 18:27
Forum: Gaming Help (v1)
Topic: Text in Diablo 3 is blurry when using Winmove
Replies: 0
Views: 686

Text in Diablo 3 is blurry when using Winmove

The text is fine when resizing manually but blurry with Winmove. I found a thread from several years ago about Winmove causing this issue with some programs. I tried a fix mentioned but it didn't work.
by 0sync0
02 Mar 2017, 10:49
Forum: Gaming Help (v1)
Topic: [Path of Exile] Auto Potion
Replies: 37
Views: 26160

Re: [Path of Exile] Auto Potion

LemonHaze_ wrote:I'm just trying to slow down the program.
Use sleep between sends for control.
by 0sync0
01 Mar 2017, 17:19
Forum: Gaming Help (v1)
Topic: [Path of Exile] Auto Potion
Replies: 37
Views: 26160

Re: [Path of Exile] Auto Potion

Send, {e 1}
What is the idea behind the way you are formating your sends? When I test this in Notepad it sends "e". So it seems to be identical to "Send, e".
by 0sync0
28 Feb 2017, 23:31
Forum: Gaming Help (v1)
Topic: [Path of Exile] Auto Potion
Replies: 37
Views: 26160

Re: [Path of Exile] Auto Potion

Thanks RHCP.
LemonHaze_ wrote:But now how do I use this getProcessBaseAddress functions you posted for the sake of learning?
RHCP shows how to use it in his example.

I don't understand why your code works without it unless perhaps PoE's base address is always 0.
by 0sync0
27 Feb 2017, 16:59
Forum: Gaming Help (v1)
Topic: [Path of Exile] Auto Potion
Replies: 37
Views: 26160

Re: [Path of Exile] Auto Potion

@LemonHaze Is the code you posted the full version? When I read the base address of my first pointer I don't get the expected value. I think it might be because there is no code for getting the base address of the game.
by 0sync0
25 Feb 2017, 13:42
Forum: Gaming Help (v1)
Topic: [Path of Exile] Auto Potion
Replies: 37
Views: 26160

Re: [Path of Exile] Auto Potion

What needs to be modified in the ReadMemory function to make it work with float values?
by 0sync0
24 Feb 2017, 11:38
Forum: Gaming Help (v1)
Topic: Anyone pixel reading in Elder Scrolls Online?
Replies: 4
Views: 3034

Re: Anyone pixel reading in Elder Scrolls Online?

The addon I'm using lets you specify the color and the opacity of the health bar. When the character is still the color is constant. When I move the character to another spot the color changes but stays constant until moved again. That gives me the impression the addon code is buggy and doesn't make...
by 0sync0
23 Feb 2017, 23:44
Forum: Gaming Help (v1)
Topic: Anyone pixel reading in Elder Scrolls Online?
Replies: 4
Views: 3034

Anyone pixel reading in Elder Scrolls Online?

Has anyone found a reliable way to pixel read the ESO health bar? The default health bar seems impossible to pixel read. But I'm also having problems with addons that create a custom health bar. None of them provide a consistent color.
by 0sync0
26 Nov 2016, 12:00
Forum: Ask for Help (v1)
Topic: How do you handle GUI development?
Replies: 2
Views: 872

How do you handle GUI development?

Do you use a GUI creation tool?

If not, do you have any tips for control positioning and repositioning?

If so, what do you use and how do you edit the GUI after the first cut?
by 0sync0
24 Nov 2016, 17:09
Forum: Ask for Help (v1)
Topic: Tool for modifying GUI control positions?
Replies: 0
Views: 596

Tool for modifying GUI control positions?

Is there a tool that can update control positions without changing the rest of the code in a script?
by 0sync0
24 Nov 2016, 13:36
Forum: Ask for Help (v1)
Topic: GUI won't activate sometimes
Replies: 0
Views: 617

GUI won't activate sometimes

I have buttons in the GUI that have the user select a window. The final step is to activate the GUI. Most of the time it activates but sometimes it doesn't. When it doesn't activate you have to click twice on the task bar to bring it up again. What does it mean when a window requires two clicks on t...
by 0sync0
23 Nov 2016, 11:04
Forum: Ask for Help (v1)
Topic: ControlSend modifiers
Replies: 3
Views: 1411

Re: ControlSend modifiers

lexikos wrote:Try increasing the key delay (SetKeyDelay).
I tried increasing it in increments up to 200. It works when the window is active but not if the window is inactive.
by 0sync0
22 Nov 2016, 19:25
Forum: Ask for Help (v1)
Topic: Get user to select window after clicking on GUI button?
Replies: 5
Views: 1791

Re: Get user to select window after clicking on GUI button?

I thought On was the default option for Hotkey, but I see that isn't so.

Looks good. Thanks.
by 0sync0
22 Nov 2016, 18:21
Forum: Ask for Help (v1)
Topic: Get user to select window after clicking on GUI button?
Replies: 5
Views: 1791

Re: Get user to select window after clicking on GUI button?

I need the GUI to stay up. I deleted the line to destroy the GUI. I went through the select process. But when you click the button a second time, then the hotkey doesn't work.
by 0sync0
22 Nov 2016, 17:37
Forum: Ask for Help (v1)
Topic: Get user to select window after clicking on GUI button?
Replies: 5
Views: 1791

Re: Get user to select window after clicking on GUI button?

I like it. Thanks.

Hopefully it will work just as well once I add it to my GUI.
by 0sync0
22 Nov 2016, 16:51
Forum: Ask for Help (v1)
Topic: Get user to select window after clicking on GUI button?
Replies: 5
Views: 1791

Get user to select window after clicking on GUI button?

After clicking a GUI button the user needs to select a window so the script can do a Winget. I've tried different ways of doing this and each one seems to have issues.

How would you do this?
by 0sync0
21 Nov 2016, 17:23
Forum: Ask for Help (v1)
Topic: ControlSend modifiers
Replies: 3
Views: 1411

ControlSend modifiers

The docs say By default, modifier keystrokes (Control, Alt, Shift, and Win) are sent as they normally would be by the Send command I can use "send !^r" and it works. If I use "controlsend,, !^r" it doesn't work. I have to use "ControlSend,, {ctrl down}{alt down}r{ctrl up}{alt up}". Is there some way...
by 0sync0
21 Nov 2016, 11:42
Forum: Ask for Help (v1)
Topic: Progress window stops working when I switch to another window
Replies: 0
Views: 677

Progress window stops working when I switch to another window

Code: Select all

F5::
	Progress, A zh0 fs18, Test window.
	sleep 3000
	Progress, Off
return
Press F5. Wait for the window to close. Press F5 again. It works.

If I press F5 and switch to another window before it closes, then it stops working.

Go to advanced search