Search found 444 matches
- 14 Apr 2018, 12:14
- Forum: Gaming
- Topic: Auto farming lords mobile
- Replies: 22
- Views: 20597
Re: Auto farming lords mobile
I understand thank you for helping me Neverlevel , I think what your saying is look for a common pixel, for example, the rock color so no matter where I am on the map the pixel for the rock is the same. Is there a way to have it look randomly for just rock for now until I get better at coding? For ...
- 14 Apr 2018, 11:58
- Forum: Gaming
- Topic: Need a simple Macro for my Keyboard.. Topic is solved
- Replies: 9
- Views: 5442
Re: Need a simple Macro for my Keyboard.. Topic is solved
... See I thought this was text based. The ::t:: TTY did not work because you need an end character. So after t you need to press something like enter or space. But I'm still not sure exactly what you want in terms of sequence. Do you want the T to be held down or just clicked once? Try this: T:: S...
- 14 Apr 2018, 03:14
- Forum: Bug Reports
- Topic: Typo in StringTrimLeft / StringTrimRight
- Replies: 3
- Views: 1400
Typo in StringTrimLeft / StringTrimRight
Depreciated is misspelled. It is spelled as 'deprecated'.
- 13 Apr 2018, 11:20
- Forum: Gaming
- Topic: Can't send special characters in-game
- Replies: 6
- Views: 1442
Re: Can't send special characters in-game
How did you do that?Rohwedder wrote:Hallo,
the first part seems to be something like that:Code: Select all
q:: Send {U+0E0F} Loop, 127 Send {U+0E4E} Return

That's awesome dude!

- 13 Apr 2018, 11:18
- Forum: Gaming
- Topic: Can someone make me a simple script? Topic is solved
- Replies: 5
- Views: 1269
Re: Can someone make me a simple script? Topic is solved
Huh? If I am not right, only modifiers should interfere with hotkey triggers. And there's nothing about this behavior in the documentation either. Technically the wildcard * is to make it so that the hotkey launches even when extra modifiers are held. But pressing C should trigger regardless of oth...
- 13 Apr 2018, 05:19
- Forum: Ask For Help
- Topic: Why does the following variable name containt illegal character?
- Replies: 6
- Views: 1223
Re: Why does the following variable name containt illegal character?
Possibilities: repeated StrReplace, or RegExReplace, or for the start/ends of a string, Trim/LTrim/RTrim. AutoTrim only removes tabs/spaces from the start/end of a string. q:: vText := " abc def " MsgBox, % "[" vText "]" MsgBox, % "[" Trim(vText, " `t`r`n") "]" MsgBox, % "[" RegExReplace(vText, "i)...
- 13 Apr 2018, 04:49
- Forum: Gaming
- Topic: Need a simple Macro for my Keyboard.. Topic is solved
- Replies: 9
- Views: 5442
Re: Need a simple Macro for my Keyboard.. Topic is solved
... See I thought this was text based. The ::t:: TTY did not work because you need an end character. So after t you need to press something like enter or space. But I'm still not sure exactly what you want in terms of sequence. Do you want the T to be held down or just clicked once? Try this: T:: S...
- 13 Apr 2018, 02:39
- Forum: Gaming
- Topic: Can't send special characters in-game
- Replies: 6
- Views: 1442
Re: Can't send special characters in-game
Hey bud, Sending and, pasting from clipboard are two different things. In the send command, every key is stroked manually, whereas while pasting, whatever is in the clipboard is pasted to the field which supports pasting. So it is understandable that autohotkey was confused when you gave it the comm...
- 13 Apr 2018, 02:29
- Forum: Gaming
- Topic: Can someone make me a simple script? Topic is solved
- Replies: 5
- Views: 1269
Re: Can someone make me a simple script? Topic is solved
Cheers! F9:: Suspend, Toggle C:: Send, 1 Send, x Sleep 295 click, down Sleep 175 click, up return Hi Nwb, script works while holding down C,, but it also stops when i also press WASD movement keys while holding C. Thanks. Also, can the script repeat itself faster? Thanks I tried adding *C:: on the ...
- 13 Apr 2018, 02:24
- Forum: Gaming
- Topic: Problem About Pause Topic is solved
- Replies: 5
- Views: 1127
Re: Problem About Pause Topic is solved
My bad but you're right Pause toggles by default. But that's not the case with suspend.neverlevel wrote:F1::pause ;will toggle between pause and unpause without a modifier...i dont know about suspend
- 13 Apr 2018, 00:38
- Forum: Ask For Help
- Topic: Why does the following variable name containt illegal character?
- Replies: 6
- Views: 1223
Re: Why does the following variable name containt illegal character?
- Look at the double quotes in the error message, the second one is on the line underneath, so, there is a probably a linefeed or carriage return in your string. - See also: 'LIST EVERY CHARACTER THAT APPEARS IN A STRING', here: jeeswg's characters tutorial - AutoHotkey Community https://autohotkey...
- 12 Apr 2018, 13:12
- Forum: Ask For Help
- Topic: Modifying this script with ip detection
- Replies: 4
- Views: 613
Re: Modifying this script with ip detection
Hey bud, I presume you want to make sure the vpn is disabled. Write this in the area of code where you want to check your IP address: Originalip := "" UrlDownloadToFile, http://myip.dnsdynamic.com/, myip.txt FileRead, myip, myip.txt FileDelete, myip.txt If (myip = Originalip) { } ; whatever else { M...
Re: Gaming
F1 is the button. Cheers! 

Code: Select all
F1::
Send, {F1}
Click
Sleep 100 ; more = slower, less = faster
return
- 12 Apr 2018, 12:49
- Forum: Gaming
- Topic: Problem About Pause Topic is solved
- Replies: 5
- Views: 1127
Re: Problem About Pause Topic is solved
im new to this but i know if you put in ~?::Suspend ? being what ever key you want it to be pressing said key will stop the script from running untill you press it again ~?:: Suspend, Toggle Without the ", Toggle" parameter the hotkey will only suspend keys. The ~ prevents the native function from ...
- 12 Apr 2018, 12:46
- Forum: Gaming
- Topic: Problem About Pause Topic is solved
- Replies: 5
- Views: 1127
Re: Problem About Pause Topic is solved
I can resume but cant pause this script at all. What wrong with it? u:: Loop { Send{S}{E} Send{x 10} } Home:: pause Try: u:: Loop { Send{S}{E} Send{x 10} } Home:: pause, toggle I presume you meant that you could pause but not resume. That is because pause only stops the current thread unless you wr...
- 12 Apr 2018, 12:44
- Forum: Gaming
- Topic: Can someone make me a simple script? Topic is solved
- Replies: 5
- Views: 1269
Re: Can someone make me a simple script? Topic is solved
Cheers!
Code: Select all
F9:: Suspend, Toggle
C::
Send, 1
Send, x
Sleep 295
click, down
Sleep 175
click, up
return
- 12 Apr 2018, 12:27
- Forum: Gaming
- Topic: Need a simple Macro for my Keyboard.. Topic is solved
- Replies: 9
- Views: 5442
Re: Need a simple Macro for my Keyboard.. Topic is solved
hi im new too, i think you just need a hotstring, something simple like ::T::TTY but dont quote me on it, i'm trying to learn this coding too, its an headache...but fun Ahh you are very close! :D 1) The difference between a hotstring is that it replaces the hotstring with the text. (so T gets "repl...
- 12 Apr 2018, 12:19
- Forum: Gaming
- Topic: Detecting a certain color, move the mouse color and click it. How do I do that?
- Replies: 1
- Views: 4830
Re: Detecting a certain color, move the mouse color and click it. How do I do that?
Hey buddy! I'll set you up, and if you do exactly as instructed it should work. But tell me if it doesn't or there's something you want to change or add to the script itself. Firstly: F1:: KeyWait, LButton, down MouseGetPos, CurrentX, CurrentY PixelGetColor, Color, %CurrentX%, %CurrentY% Gui, add, e...
- 12 Apr 2018, 10:16
- Forum: Ask For Help
- Topic: Why does the following variable name containt illegal character?
- Replies: 6
- Views: 1223
Re: Why does the following variable name containt illegal character?
if this isnt the perfect example of why generating variables using this method is a bad idea, i dont know what is "all the characters are letters", to you maybe, to a computer? who knows. who knows what kind of additional crap might be present, especially if...
- 12 Apr 2018, 09:55
- Forum: Ask For Help
- Topic: Ughm help
- Replies: 17
- Views: 2866
Re: Ughm help
TestTexti = ( Name1 Status - (10/10) Name2 Status - (4/10) Name3 Status - (6/10) ) splitArray := StrSplit(TestTexti, "`n") People := {} Loop, % splitArray.MaxIndex() { if (Mod(A_Index, 2) == 0) { continue } person := {} person.name := splitArray[A_Index] person.status := splitArray[A_Index + 1] Reg...