Search found 32 matches

by axo
06 Dec 2022, 12:12
Forum: Ask for Help (v1)
Topic: Help with GDIP / drawing on screen
Replies: 2
Views: 254

Help with GDIP / drawing on screen

Hello !
How can i made ,ahk to draw diagonal line from pixel to pixel ?
I tried multiple guis, gdip but am lost.
Do you have something simple to show me how to do it ?
image.png
image.png (5.32 KiB) Viewed 254 times
something like this
by axo
04 Dec 2022, 12:06
Forum: Gaming Help (v1)
Topic: gui on game
Replies: 7
Views: 539

Re: gui on game

one more thing ... how can i make it faster ? because this scan it but its kinda slow amma upload video valx := 700 valy := 700 resw := 1920 resh := 1080 xfov1:= (resw//2 -valx) yfov1:= (resh//2 -valy) xfov2:= (resw//2 +valx) yfov2:= (resh//2 +valy) gui, +Owner +AlwaysOnTop -caption Gui, Show, w25 h...
by axo
04 Dec 2022, 12:02
Forum: Gaming Help (v1)
Topic: gui on game
Replies: 7
Views: 539

Re: gui on game

nvm got it
i added "WinActivate, VALORANT"
after the gui,show and it work
by axo
04 Dec 2022, 12:00
Forum: Gaming Help (v1)
Topic: gui on game
Replies: 7
Views: 539

Re: gui on game

Like this valx := 200 valy := 200 resw := 1920 resh := 1080 xfov1:= (resw//2 -valx) yfov1:= (resh//2 -valy) xfov2:= (resw//2 +valx) yfov2:= (resh//2 +valy) gui, +Owner +AlwaysOnTop -caption Gui, Show, w25 h25 NoActivate, gui loop { sleep, 2500 CoordMode, Pixel, Screen PixelSearch, FoundX, FoundY, xf...
by axo
04 Dec 2022, 12:00
Forum: Gaming Help (v1)
Topic: gui on game
Replies: 7
Views: 539

Re: gui on game

Already tried that but then it will stom moving the gui ... it will just stay on one spot
by axo
04 Dec 2022, 11:40
Forum: Gaming Help (v1)
Topic: gui on game
Replies: 7
Views: 539

gui on game

Hello i am working on script that scan square on screen for color of enemy in valorant. If it find the color it will place gui on enemy head. But whenever it place the gui on the head it will place the gui to the fore and then i cant interact with the game i need to click somewhere on the screen to ...
by axo
18 Jul 2022, 10:14
Forum: Ask for Help (v1)
Topic: radio buttons
Replies: 1
Views: 263

radio buttons

Hello i have this code: gui, add ,radio, x10 y10 gradio1, Radio Button 1 gui, add ,radio, x10 y50 gradio2, Radio Button 2 gui,show return radio1: if (GetKeyState("f7")) send {F} return radio2: if (GetKeyState("f7")) send {Q} return but its not working i want it to be : when i select radio button 1 a...
by axo
09 Jul 2022, 15:44
Forum: Ask for Help (v1)
Topic: Help with text replace.
Replies: 4
Views: 651

Re: Help with text replace.

I can make it work right but the "fileappend" will create a .txt file on desktop not in the folder and idk how to recode it so it will create the new .txt in the folder :D
by axo
09 Jul 2022, 15:40
Forum: Ask for Help (v1)
Topic: Help with text replace.
Replies: 4
Views: 651

Re: Help with text replace.

yes but not how i want to, the scipt will just delete the existent file and replace it with new one .. it will not replace just the 1 word
by axo
09 Jul 2022, 14:10
Forum: Ask for Help (v1)
Topic: Help with text replace.
Replies: 4
Views: 651

Help with text replace.

Is there any code to replace text in .txt files? Because am trying to create a script that replace one word from text file placed in folder. For example: we have folder called "folder1" and in the folder we have .txt file called "txtfile1" in the textfile1.txt we have text: "Hi this is text." .. whe...
by axo
07 Jul 2022, 08:41
Forum: Gaming Help (v1)
Topic: Script not working.
Replies: 1
Views: 553

Script not working.

I have this aimbot scipt for csgo. On my pc it works perfectly but when i sent it to my friend its not working. Why ? gui,add,text, c0583FD x25 y1, Select CS:GO recolution Width: Gui, Add, DropDownList,x25 y15 w150 vVar1 , 1920||1440|1280|1080|1152|1024|800 gui,add,text, c0583FD x25 y50, Select CS:G...
by axo
03 Jul 2022, 07:47
Forum: Gaming Help (v1)
Topic: winclose not working
Replies: 5
Views: 785

Re: winclose not working

i have it
by axo
03 Jul 2022, 06:49
Forum: Gaming Help (v1)
Topic: winclose not working
Replies: 5
Views: 785

Re: winclose not working

+when i use this script :

Code: Select all

DetectHiddenWindows, On
WinGet, AHKList, List, ahk_exe Autohotkey.exe
Loop, %AHKList%
	IF (A_ScriptHwnd <> ID := AHKList%A_Index%)
		WinClose, ahk_id %ID%
ExitApp
then it close the script, but it close every script running in background not only head.legit.ahk
by axo
03 Jul 2022, 06:46
Forum: Gaming Help (v1)
Topic: winclose not working
Replies: 5
Views: 785

Re: winclose not working

i added msgbox and yes it appears .... when i remove this from the head.legit.ahk gui,add,text, c0583FD x1 y1, Select CS:GO recolution Width: Gui, Add, DropDownList,x1 y15 w150 vVar1 , 1920||1440|1280|1152|1024|800 gui,add,text, c0583FD x1 y50, Select CS:GO recolution Height: Gui, Add, DropDownList,...
by axo
03 Jul 2022, 06:14
Forum: Gaming Help (v1)
Topic: winclose not working
Replies: 5
Views: 785

winclose not working

i have this code : gui, add, DropDownList, x180 y50 w200 vAB1 , head|chest|legs gui, add, DropDownList, x180 y125 w200 vAB2 , legit|rage gui,add,checkbox,gAB1 vAB c0583FD x180 y165, ab gui, show return AB1: { GuiControlGet, Checked,,Ab If (Checked == 1) { Gui, Submit, nohide run %AB1%.%AB2%.ahk retu...
by axo
02 Jul 2022, 14:26
Forum: Gaming Help (v1)
Topic: help with variables
Replies: 4
Views: 618

Re: help with variables

@boiler
ok i have it "D
by axo
02 Jul 2022, 14:16
Forum: Gaming Help (v1)
Topic: help with variables
Replies: 4
Views: 618

Re: help with variables

but when i removed it it still doesnt work can u show it to me how to do it ?
by axo
02 Jul 2022, 13:46
Forum: Gaming Help (v1)
Topic: help with variables
Replies: 4
Views: 618

Re: help with variables

the whole code : Gui, Add, DropDownList,x1 y1 w150 vVar1 , 1920||1440|1280 Gui, Add, DropDownList,x1 y50 w150 vVar2 , 1080||1024|960 gui,add,button, x1 y80 gselect, select gui, show,, DDLBuzzer return select: Gui, Submit, nohide return Var1 := 1920 Var2 := 1080 #NoEnv #SingleInstance, Force #Persist...

Go to advanced search