Search found 236 matches

by Cuadrix
14 May 2019, 23:23
Forum: Ask for Help (v1)
Topic: Expression question?
Replies: 3
Views: 820

Re: Expression question?

With = you can assign a value to your variable, like this: var = hello ..or you can pass one variables value to another like this: var1 = hello var2 = %var1% ; var2 now contains hello With := you can do the same as above, but with quotes: var := "hello" ..and you can also pass on the contents of oth...
by Cuadrix
05 Apr 2019, 01:40
Forum: Ask for Help (v1)
Topic: Can't SendInput using Shift key
Replies: 2
Views: 683

Can't SendInput using Shift key

For some reason this doesn't work:

Code: Select all

Shift::
SendInput {a}
Return
But this works?:

Code: Select all

b::
SendInput {a}
Return
I can remap it like below and it works:

Code: Select all

Shift::a
But that isn't what I want, because I need to use Shift and SendInput to send keystrokes from multiple keys.
Any solutions?
by Cuadrix
23 Feb 2019, 20:35
Forum: Ask for Help (v1)
Topic: Does Autohotkey use Win API for it's GUI?
Replies: 2
Views: 919

Does Autohotkey use Win API for it's GUI?

Does Autohotkey use Win API for it's GUI or does it use a library (such as QT or gtkmm) to do it?
Just wondering.
by Cuadrix
08 Feb 2019, 10:43
Forum: Ask for Help (v1)
Topic: Ternary bug or acceptable syntax? Topic is solved
Replies: 6
Views: 2284

Re: Ternary bug or acceptable syntax? Topic is solved

SOTE wrote:
07 Feb 2019, 22:09
Perhaps a point of confusion is If-Else vs If-Then-Else.

The ternary is better thought of as If-Then-Else,

Code: Select all

(x > 1) ? msgB() : msgB2()

Code: Select all

"If"-> (x > 1) "Then"-> msgB() "Else"-> msgB2()
I don't see how it's confusing, though. Pretty simple stuff
by Cuadrix
07 Feb 2019, 15:04
Forum: Ask for Help (v1)
Topic: Ternary bug or acceptable syntax? Topic is solved
Replies: 6
Views: 2284

Ternary bug or acceptable syntax? Topic is solved

Normally when using ternary you'd use it to assign a value to a variable based on some condition, like this: x := 2 myVar := (x > 1) ? 101 : 404 You can also call functions the same way: x := 2 myVar := (x > 1) ? msgB() : msgB2() msgB(){ msgBox % "True" } msgB2(){ msgBox % "False" } BUT this works t...
by Cuadrix
31 Jan 2019, 21:55
Forum: Ask for Help (v1)
Topic: Need help with pauseing a looping script Topic is solved
Replies: 5
Views: 1257

Re: Need help with pauseing a looping script Topic is solved

Look at this topic.
https://www.autohotkey.com/boards/viewtopic.php?f=76&t=45616&p=206143
I don't think there is any other way to break out of the loop like you want it to.
by Cuadrix
31 Jan 2019, 13:41
Forum: Ask for Help (v1)
Topic: read file line bny line and sendinput on key press
Replies: 2
Views: 1287

Re: read file line bny line and sendinput on key press

This is a better way:

Code: Select all

FileRead, Content, split.txt

i++ := 0

^b::
Loop, Parse, Content, `r,`n
{
	If (A_Index == i) {
		SendInput % A_LoopField
		i++
		Break
	}
}
by Cuadrix
06 Nov 2018, 16:23
Forum: Gaming Scripts (v1)
Topic: Basic Aimbot
Replies: 14
Views: 35031

Re: Basic Aimbot

You could have made a proper aimbot though. All the tools are available, step it up.
Jk, just ignore me.
by Cuadrix
02 Nov 2018, 16:40
Forum: Forum Issues
Topic: Fixing codeboxes
Replies: 106
Views: 38332

Re: Fixing codeboxes

Code: Select all

fgfg
gf
g
g
g
g
g

g
g
g

g

g
g
g
h

h
g
gh

g
g
g

g
g
g
g
g
g
g
g
g

Still can't expand though, so not finished yet.
by Cuadrix
27 Oct 2018, 10:23
Forum: Scripts and Functions (v1)
Topic: LineDelete() - Delete Line Of Text From A Variable / No Loop
Replies: 9
Views: 5465

Re: LineDelete() - Delete Lines Of Text From Variables / No Loop

@DRocks It depends. In my opinion, operations such as deleting lines should be done in the memory as long as you have RAM to spare, which shouldn't be a problem on modern machines today. You could do it with IniWrite/Read too, but that just means that you are making temporary files and discarding t...
by Cuadrix
31 May 2018, 15:12
Forum: Ask for Help (v1)
Topic: Obfuscation
Replies: 8
Views: 2996

Re: Obfuscation

Well we've just mentioned the need not to populate the Ask for help section too much... Plus I do not see your comment bringing much help since this project is NOT OBFUSCATION but encryption. Which if you figure out a single password is done. Also explanations are absolutely not clear for this proj...
by Cuadrix
31 May 2018, 13:22
Forum: Ask for Help (v1)
Topic: AHK Encrypt/Obfuscate Script
Replies: 11
Views: 9298

Re: AHK Encrypt/Obfuscate Script

To obfuscate your Autohotkey code, use AHK source code Encryptor v2.0 By FeiYue:
https://autohotkey.com/boards/viewtopic ... +Encryptor
It works very well.
by Cuadrix
31 May 2018, 13:21
Forum: Ask for Help (v1)
Topic: Help with basic obfuscation...
Replies: 8
Views: 2012

Re: Help with basic obfuscation...

To obfuscate your Autohotkey code, use AHK source code Encryptor v2.0 By FeiYue:
https://autohotkey.com/boards/viewtopic ... +Encryptor
It works very well.
by Cuadrix
31 May 2018, 13:20
Forum: Ask for Help (v1)
Topic: Obfuscation
Replies: 8
Views: 2996

Re: Obfuscation

To obfuscate your Autohotkey code, use AHK source code Encryptor v2.0 By FeiYue:
https://autohotkey.com/boards/viewtopic ... +Encryptor
It works very well and should do the trick.
by Cuadrix
31 May 2018, 13:19
Forum: Ask for Help (v1)
Topic: Code obfuscation
Replies: 8
Views: 3367

Re: Code obfuscation

To obfuscate your Autohotkey code, use AHK source code Encryptor v2.0 By FeiYue:
https://autohotkey.com/boards/viewtopic ... +Encryptor
It works very well.
by Cuadrix
09 May 2018, 13:37
Forum: Gaming Help (v1)
Topic: I need someone to create Scripts for Games (PUBG, Fortnite, CSGO) The person will be paid! Topic is solved
Replies: 6
Views: 3224

Re: I need someone to create Scripts for Games (PUBG, Fortnite, CSGO) The person will be paid! Topic is solved

First off, shouldn't this be in the Gaming section?
Second of all, what kind of scripts are you looking to get? What functions do you want them to have?
by Cuadrix
15 Apr 2018, 13:13
Forum: Ask for Help (v1)
Topic: get <text as input> modify <text> and send it
Replies: 2
Views: 750

Re: get <text as input> modify <text> and send it

Depends on how you want it to be modified.
If you want to replace the whole string, then you can do this:

Code: Select all

InputBox, Input , Title, Write your text:,, 200, 150
Out := StrReplace(Input, Input, "The text was modified!")
	Send % Out

Go to advanced search