Search found 216 matches

by neomulemi6
01 Aug 2017, 03:37
Forum: Ask for Help (v1)
Topic: When a button is pressed, it makes a sound.
Replies: 2
Views: 631

Re: When a button is pressed, it makes a sound.

Hallo,
try:

Code: Select all

F1::
Toggle := !Toggle
If (Toggle) {
SoundBeep, 500, 500
} Else {
SoundBeep, 250, 500
}
Return
by neomulemi6
31 Jul 2017, 11:51
Forum: Gaming Help (v1)
Topic: Kinda like copy/paste but a little harder Topic is solved
Replies: 1
Views: 536

Re: Kinda like copy/paste but a little harder Topic is solved

Easier to just give you an example, and you can deconstruct it and figure out how it works. I commented it for you. F1:: ; hotkey to execute the script Type("Your sentence goes here.") ; call the function Return Type(line) ; the function { Loop, Parse, line ; Loop through the line, retrieving each c...
by neomulemi6
31 Jul 2017, 11:44
Forum: Ask for Help (v1)
Topic: Active screens?
Replies: 4
Views: 1150

Re: Active screens?

Hallo,
try:

Code: Select all

#t::
Click
Sleep 100
Send ^+p
Sleep 100
Click
Return
by neomulemi6
30 Jul 2017, 16:01
Forum: Ask for Help (v1)
Topic: Hotkey If Not Working Topic is solved
Replies: 15
Views: 2799

Re: Hotkey If Not Working Topic is solved

Yeah, honestly I can't figure out the problem either. Very strange. Never had this problem using #If before.
by neomulemi6
30 Jul 2017, 13:32
Forum: Ask for Help (v1)
Topic: Hotkey If Not Working Topic is solved
Replies: 15
Views: 2799

Re: Hotkey If Not Working Topic is solved

Like this?

Code: Select all

#SingleInstance force

Key = a

#If GetKeyState("b", "p")
Hotkey, %Key%, Label
Return

Label:
MsgBox Hello
Return
or this

Code: Select all

#SingleInstance, Force
Key = a
Hotkey, %Key%, Label

Label:
If GetKeyState("b", "p")
{
	MsgBox Hello
}
Return
by neomulemi6
30 Jul 2017, 03:18
Forum: Ask for Help (v1)
Topic: Hotkey If Not Working Topic is solved
Replies: 15
Views: 2799

Re: Hotkey If Not Working Topic is solved

What are you trying to do? Get a message box when you press the letter A?

Code: Select all

a::MsgBox Hello
by neomulemi6
27 Jul 2017, 12:10
Forum: Ask for Help (v1)
Topic: One right click to hold itself, another to release (hold ADS into toggle ADS)
Replies: 3
Views: 4652

Re: One right click to hold itself, another to release (hold ADS into toggle ADS)

Hallo,
try:

Code: Select all

toggle=0
return

rbutton::
toggle:=!toggle
if toggle=1
click ,right ,down
else
click, right, up
return
by neomulemi6
27 Jul 2017, 11:46
Forum: Gaming Help (v1)
Topic: [HELP] Auto Strafe for SAMP Topic is solved
Replies: 4
Views: 1459

Re: [HELP] Auto Strafe for SAMP Topic is solved

Can you explain what you mean by "auto strafe"? I'd be happy to help you. We aren't all snobs.
by neomulemi6
26 Jul 2017, 23:56
Forum: Ask for Help (v1)
Topic: How to detect Windows Screenshot tool?
Replies: 3
Views: 786

Re: How to detect Windows Screenshot tool?

Weird, I don't have this tool. Win+Shift+S does nothing. Using Windows 10.
by neomulemi6
26 Jul 2017, 00:58
Forum: Gaming Help (v1)
Topic: Spam T when holding Left Mouse Click
Replies: 4
Views: 1001

Re: Spam T when holding Left Mouse Click

Rohwedder wrote:Hallo,
try:

Code: Select all

~LButton::
	While, GetKeyState("LButton","P")
	{
		Send, t
		Sleep, 500
	}
Return
by neomulemi6
26 Jul 2017, 00:09
Forum: Gaming Help (v1)
Topic: Spam T when holding Left Mouse Click
Replies: 4
Views: 1001

Re: Spam T when holding Left Mouse Click

Rottweiler's script won't work.
This should work. You can toggle it on/off with the F1 key.

Code: Select all

F1::
Toggle := !Toggle
Return

#If (Toggle)

LButton::
SetTimer, LMouse, 500
KeyWait, LButton
SetTimer, LMouse, Off
Return

#If

LMouse:
Send t
Return
by neomulemi6
17 Jul 2017, 23:03
Forum: Gaming Help (v1)
Topic: need help using imagesearch Topic is solved
Replies: 3
Views: 899

Re: need help using imagesearch Topic is solved

From the documentation: *n (variation): Specify for n a number between 0 and 255 (inclusive) to indicate the allowed number of shades of variation in either direction for the intensity of the red, green, and blue components of each pixel's color. For example, *2 would allow two shades of variation. ...
by neomulemi6
16 Jul 2017, 19:13
Forum: Gaming Help (v1)
Topic: Loop Works, Key Press does not
Replies: 1
Views: 645

Re: Loop Works, Key Press does not

You could try removing the brackets. I doubt they're causing your problem, but they're also serving no purpose. Also, you can use SetKeyDelay to make your script a little neater. This does the same thing as your script: Numpad1:: SetKeyDelay, 0, 2000 Send k SetKeyDelay, 0, 50 Send {LShift}{RButton} ...
by neomulemi6
16 Jul 2017, 19:06
Forum: Gaming Help (v1)
Topic: need help using imagesearch Topic is solved
Replies: 3
Views: 899

Re: need help using imagesearch Topic is solved

You can try adding a variation to the ImageSearch. Should increase its dependability.

Change ImageSearch, FoundX, FoundY, 637, 487, 1000, 641, DragonRuins.png

to something like

ImageSearch, FoundX, FoundY, 637, 487, 1000, 641, *12 DragonRuins.png
by neomulemi6
16 Jul 2017, 19:02
Forum: Ask for Help (v1)
Topic: **Enter, Paste, Enter** Help please
Replies: 1
Views: 8632

Re: **Enter, Paste, Enter** Help please

Code: Select all

j::
SendInput {Enter}^v{Enter}
Return
If you want to loop it:

Code: Select all

#MaxThreadsPerHotkey, 2

j::
Toggle := !Toggle
While (Toggle)
{
	SendInput {Enter}^v{Enter}
	Sleep 100 ; Change this to whatever you want.  1000 = 1 second.
}
Return
by neomulemi6
14 Jul 2017, 16:36
Forum: Gaming Help (v1)
Topic: AHK and Cheating
Replies: 3
Views: 2346

Re: AHK and Cheating

Personally, I couldn't care less what people use AutoHotkey for. This forum is here to help people with their scripting problems... pure and simple. I'm not here to judge or make assumptions.
by neomulemi6
13 Jul 2017, 16:29
Forum: Gaming Help (v1)
Topic: Help me please
Replies: 1
Views: 945

Re: Help me please

PixelGetColor doesn't work in fullscreen mode in most games.
by neomulemi6
09 Jul 2017, 18:18
Forum: Ask for Help (v1)
Topic: Toggle between mouseclick at different coordinates with an assigned key
Replies: 2
Views: 690

Re: Toggle between mouseclick at different coordinates with an assigned key

Code: Select all

F1::
Toggle := !Toggle
If (Toggle) {
	Click 394, 221
} Else {
	Click 765, 234
}
Return

Go to advanced search