Search found 372 matches

by YoucefHam
24 Mar 2016, 18:50
Forum: Gaming Help (v1)
Topic: Autoclicker: Need help on User input & loop command
Replies: 4
Views: 1663

Re: Autoclicker: Need help on User input & loop command

Alright everyone, I just need some help on finishing the autoclicker. Here is my code so far: toggle = 0 #MaxThreadsPerHotkey 2 F12:: Toggle := !Toggle While Toggle{ Random, rand2, 2843, 3045 Random, rand1, 53, 113 Random, xpos1, 505, 529 Random, ypos1, 568, 578 Random, xpos2, 505, 529 Random, ypos...
by YoucefHam
21 Mar 2016, 14:00
Forum: Ask for Help (v1)
Topic: Is there a way to open folder with partial information?
Replies: 9
Views: 2621

Re: Is there a way to open folder with partial information?

As an example, I have a structure like this: C:\Projects\16-100 C:\Projects\16-101 C:\Projects\16-102 ... Except that there is also descriptive information after the number: C:\Projects\16-100-FirstProject-OtherDescriptiveStuff C:\Projects\16-101-SecondProject-Canceled C:\Projects\16-102-OtherStuff...
by YoucefHam
21 Mar 2016, 07:00
Forum: Ask for Help (v1)
Topic: Copy data from drawing to drawing
Replies: 2
Views: 824

Re: Copy data from drawing to drawing

can you upload or send one file to me : youcef_0665@hotmail.fr
and give me the first program name.
by YoucefHam
21 Mar 2016, 06:42
Forum: Ask for Help (v1)
Topic: Mapping "Pause/Break" key to "Mute" possible?
Replies: 4
Views: 1755

Re: Mapping "Pause/Break" key to "Mute" possible?

try this:

Code: Select all

Pause::Volume_Mute
return
by YoucefHam
11 Dec 2015, 13:41
Forum: Gaming Help (v1)
Topic: Asking for help with CS:GO 180 degrees turn script!
Replies: 12
Views: 15361

Re: Asking for help with CS:GO 180 degrees turn script!

try to compile it then run as admin.
by YoucefHam
08 Dec 2015, 19:16
Forum: Gaming Help (v1)
Topic: ControlClick Coordinates Ignored Topic is solved
Replies: 2
Views: 7253

Re: ControlClick Coordinates Ignored Topic is solved

Hi there, Currently using ControlClick to send clicks in the background window of a game. The clicks are successfully being sent in the background but they're ignoring the coordinates specified, so if I move my mouse it will click whereever my mouse is. CoordMode, Mouse, Screen SetControlDelay -1 C...
by YoucefHam
08 Dec 2015, 18:47
Forum: Gaming Help (v1)
Topic: controlclick inactive window not working properly
Replies: 4
Views: 3372

Re: controlclick inactive window not working properly

do you mean like this? Click: If (!Toggle) Return Controlsend,,g, %wintitle% ControlFocus, x860 y700, %wintitle% ControlClick, x860 y700, %wintitle% Return Hi, Try This, I didn't test it b.c I don't have the Game, Try it and tell me If there is a problem wintitle = Dungeon Defenders 2 SetTitleMatch...
by YoucefHam
08 Dec 2015, 18:40
Forum: Gaming Help (v1)
Topic: Different Keyspam dependant on modifier
Replies: 3
Views: 1656

Re: Different Keyspam dependant on modifier

Hi! I am very new to AHK and was working on the following script for Wildstar. $~*XButton2:: While getkeystate("xbutton2","P")=1 { if getkeystate("xbutton2","P")=1 && getkeystate("shift","P")=1{ Send {6 down} Send {6 up} sleep 10 } else if getkeystate("xbutton2","P")=1 && getkeystate("shift","P")=0...
by YoucefHam
08 Dec 2015, 18:35
Forum: Gaming Help (v1)
Topic: Asking for help with CS:GO 180 degrees turn script!
Replies: 12
Views: 15361

Re: Asking for help with CS:GO 180 degrees turn script!

Hey everybody! I am new to AHK and don't know anything about it. I was trying to create a 180 degrees turn script for CS:GO, but it didn't work at all. Can someone help me with it? A short explanation would be also appreciated! Hi, Try this, But Change the values to turn 180° LOOP_TIMES := 2 SPEED ...
by YoucefHam
16 Sep 2015, 10:52
Forum: Ask for Help (v1)
Topic: Delete a field of text
Replies: 2
Views: 1244

Re: Delete a field of text

try this

Code: Select all

PGDN::
ControlGetText, ctext, Edit1, Untitled - Notepad
if ctext = 
   ControlSetText, Edit1, hello`, this is the new text, Untitled - Notepad
else
   ControlSetText, Edit1, , Untitled - Notepad
return
by YoucefHam
14 Sep 2015, 18:20
Forum: Gaming Help (v1)
Topic: Would like to turn off/on my script
Replies: 6
Views: 3326

Re: Would like to turn off/on my script

try this

Code: Select all

~Enter::
toggle := !toggle
Sleep, 300
return

#If toggle

$space::
Sendinput {3}
Sendinput {4}
Sendinput {5}
Return

#If
by YoucefHam
14 Sep 2015, 18:12
Forum: Gaming Help (v1)
Topic: I want a hotkey to only work if Numlock is on
Replies: 6
Views: 2507

Re: I want a hotkey to only work if Numlock is on

try this

Code: Select all

#If GetKeyState("NumLock","T")
$a::x
#If

#if !GetKeyState("NumLock","T")
$a::c
#If

Go to advanced search