Search found 266 matches

by SvenBent
16 Aug 2016, 10:33
Forum: Ask for Help (v1)
Topic: Accessing PerfMon counters
Replies: 6
Views: 1623

Re: Accessing PerfMon counters

lol thank you i haven't even had time to sit down and read up on it yet.
by SvenBent
16 Aug 2016, 09:30
Forum: Ask for Help (v1)
Topic: [Request] Auto-Clicker with Randomized Delay
Replies: 2
Views: 1819

Re: [Request] Auto-Clicker with Randomized Delay

I'm new to the forums and was looking for someone who could make a quick macro script for me This is an ask for HELP section. If you are to lazy to read the tutorial and make it yourself or at lest TRY to make it yourself for YOUR benefit. Do you think other are going to be less lazy and spend thei...
by SvenBent
13 Aug 2016, 22:44
Forum: Ask for Help (v1)
Topic: Winmm\timeBeginPeriod decimals possible ?
Replies: 0
Views: 782

Winmm\timeBeginPeriod decimals possible ?

I'm curremlty using to set the system timer DllCall("Winmm\timeBeginPeriod", "UInt", VarSysTimer) It works perfectly except i can only do this in hole MS. and i wish to be able to define decimals. like 0.5 or 1.25 ive thne tried to messe with DllCall("ntdll.dll\NtSetTimerResolution", UInt, 90000) Bu...
by SvenBent
13 Aug 2016, 22:06
Forum: Ask for Help (v1)
Topic: Format GUI text or GUI edit possible ?
Replies: 3
Views: 2184

Re: Format GUI text or GUI edit possible ?

Thankyou for the feedback
I should have been more precise. i wish to format parts of the text not the entire text.
by SvenBent
13 Aug 2016, 20:41
Forum: Ask for Help (v1)
Topic: Format GUI text or GUI edit possible ?
Replies: 3
Views: 2184

Format GUI text or GUI edit possible ?

Is it possible to format text placed in a GUI with GUI Add Text or GUI Add Edit ?
Something along the line of making Bold or Italic text ?
by SvenBent
12 Aug 2016, 18:24
Forum: Ask for Help (v1)
Topic: ow to simulate mouse movements every 5 minutes (without actually moving them)?
Replies: 8
Views: 4541

Re: ow to simulate mouse movements every 5 minutes (without actually moving them)?

Then yes the above DllCall is much better to use than simulating fake mouse movements or key presses. it uses way less cpu usage and fewer lines to put in the ahk script
by SvenBent
12 Aug 2016, 18:16
Forum: Ask for Help (v1)
Topic: Accessing PerfMon counters
Replies: 6
Views: 1623

Re: Accessing PerfMon counters

Thank you. going to red up on comobjget and wmi
by SvenBent
12 Aug 2016, 18:11
Forum: Ask for Help (v1)
Topic: ow to simulate mouse movements every 5 minutes (without actually moving them)?
Replies: 8
Views: 4541

Re: ow to simulate mouse movements every 5 minutes (without actually moving them)?

When you said: prevent my computer from lockout"
Did you mean standby ? or something else ?
by SvenBent
12 Aug 2016, 14:55
Forum: Ask for Help (v1)
Topic: Pixel change color
Replies: 1
Views: 677

Re: Pixel change color

I'm not aware of any command that only activates when a pixels is being changed. What would the command do?

However there is a command to see what a given pixel's colors is
https://autohotkey.com/docs/commands/PixelGetColor.htm
by SvenBent
12 Aug 2016, 12:51
Forum: Ask for Help (v1)
Topic: Accessing PerfMon counters
Replies: 6
Views: 1623

Accessing PerfMon counters

I'm looking for a guide or tutorial or hints to access the counters in E.G. PerfMon with AHK.
What I'm mostly interested in, is to get threads CPU utilization of a giving process (PID).
by SvenBent
12 Aug 2016, 12:38
Forum: Ask for Help (v1)
Topic: ow to simulate mouse movements every 5 minutes (without actually moving them)?
Replies: 8
Views: 4541

Re: ow to simulate mouse movements every 5 minutes (without actually moving them)?

The solution to "move" the mouse to avoid suspend or other idle timeouts is bad. You can adresse the solutions dirctly by a DllCall DllCall("Kernel32\SetThreadExecutionState" , "UInt", 0x80000001) ;prevents system but not monitor to go standby DllCall("Kernel32\SetThreadExecutionState" , "UInt", 0x8...
by SvenBent
07 Aug 2016, 16:11
Forum: Gaming Help (v1)
Topic: SIDESTP SHOOTING Topic is solved
Replies: 1
Views: 795

Re: SIDESTP SHOOTING Topic is solved

1: what with the all caps ?

2: this should get you on the right way https://www.autohotkey.com/docs/Tutorial.htm
by SvenBent
07 Aug 2016, 00:04
Forum: Ask for Help (v1)
Topic: Script not working since W10
Replies: 2
Views: 685

Re: Script not working since W10

under windows 10 you need AHK to run with admin right to be able to work with software running with admin rights
by SvenBent
26 Jul 2016, 09:22
Forum: Ask for Help (v1)
Topic: Is there a way to recognize the color of a point without lag?
Replies: 3
Views: 926

Re: Is there a way to recognize the color of a point without lag?

What do you mean lag ? there will always be some lag since the program has to detect the change and THEN send the key.
by SvenBent
26 Jul 2016, 09:12
Forum: Ask for Help (v1)
Topic: Triggering a subroutine from another script
Replies: 9
Views: 3489

Re: Triggering a subroutine from another script

Can use a run command too i you want to
by SvenBent
26 Jul 2016, 08:55
Forum: Ask for Help (v1)
Topic: Help me improve my script
Replies: 3
Views: 976

Re: Help me improve my script

What are all your # for ? ask yourself this... are you sure you know what those are doing if not just dont dump them in there it seems like you just tossed in a lot of random ones also put those setkeydelay and setmousedleay outside of the loop no need to repeat those command over and over. use SetB...
by SvenBent
26 Jul 2016, 08:31
Forum: Ask for Help (v1)
Topic: Advice on Fastest autoclicker?
Replies: 4
Views: 2010

Re: Advice on Fastest autoclicker?

{ if (ErrorLevel = 0) continue } Why is this in brackets ? There is no if or loop near it not sure this would help but I would change the LOOPs to a WHILEs and avoid using CONTINUE. You code seem unnecessary complex https://autohotkey.com/docs/commands/While.htm a WHILE is used when you want someth...
by SvenBent
22 Jul 2016, 23:21
Forum: Gaming Help (v1)
Topic: Auto Use Rune
Replies: 15
Views: 6313

Re: Auto Use Rune

if you character is is always n the same palce it always have the same cordinates.
use autohotkey spy to get it

Go to advanced search