Search found 30 matches

by luciga
18 Feb 2019, 09:15
Forum: Scripts and Functions (v1)
Topic: Pixel Predator - PixelSearch Script
Replies: 61
Views: 46989

Re: Pixel Predator - Pixel Search Script

Aaah.. How can I use the *10 command (send)? For the most part you use it the same way you would use "Sendinput," in a script So if you want to send F1 you would type {F1} if you want to type in a edit, you would do something like this. 1. Before you run the script, get the coords for the edit, you...
by luciga
01 Feb 2019, 14:44
Forum: Scripts and Functions (v1)
Topic: Pixel Predator - PixelSearch Script
Replies: 61
Views: 46989

Re: Pixel Predator - Pixel Search Script

Aaah.. How can I use the *10 command (send)? I have 2 bars, 1 is red, the other is blue (life/mana) If those bars are no longer red or blue, I need to press for example f1 to one and f2 to the other one with 1000 ms Is it possible to do both bars in the same Pixel predator? How do I add keyboard but...
by luciga
31 Jan 2019, 17:38
Forum: Gaming Help (v1)
Topic: Color change and search image
Replies: 2
Views: 1116

Re: Color change and search image

It depends on whether the images are stationary. For example I tried this on runescape to find green frogs around the player, kind of similar situation of yours, and it didn't work consistently. Well, I was thinking to only use when it was down of my character, so it would be always in the same pla...
by luciga
31 Jan 2019, 15:52
Forum: Gaming Help (v1)
Topic: Color change and search image
Replies: 2
Views: 1116

Color change and search image

Hi there.
I'm wondering if it's possible to make a simple ahk for 2 things.

1 - When color red or blue turn black, press some button (lifebar/manabar)

2- When some image shows up on screen, press Rclick mouse on it - Those four-leaf clover around me

Spoiler
Thanks !!
by luciga
28 Jan 2018, 16:41
Forum: Ask for Help (v1)
Topic: Struggling with infinite loop
Replies: 6
Views: 1452

Re: Struggling with infinite loop

I've made a video about that in my channel in youtube: search in youtube for: "Autohotkey stop and restart a loop(loop toggle)" nadjibSoft, thanks very much for your support man, but in my case, I can't do a global loop, because in the same script I have many loops and hotkeys, also it does not fix...
by luciga
28 Jan 2018, 16:15
Forum: Ask for Help (v1)
Topic: Struggling with infinite loop
Replies: 6
Views: 1452

Re: Struggling with infinite loop

Hi. As you use sleep ... your script freeze and you cannot act nearly immediately as you want. In this thread there are timer-solutions for a similar problem . Look and try to modify. I am sorry, but how can I modify that? Is it pressing a and b to send the number 1 and 2? Like a double infinite lo...
by luciga
28 Jan 2018, 15:59
Forum: Ask for Help (v1)
Topic: Struggling with infinite loop
Replies: 6
Views: 1452

Re: Struggling with infinite loop

Hum, I don't know why, but when I put on and off, everything works, but If I try to do again (press 2 to active one more time the loop) it doesn't works and nothing happens.

Edited: Btw, I am the spytfire =)
by luciga
23 Jan 2017, 09:32
Forum: Gaming Help (v1)
Topic: auto disable/enable when chatting
Replies: 1
Views: 1070

Re: auto disable/enable when chatting

Hi there, I think this is impossible. But here is some few ideas: Press esc to stop everything, type what you want and press esc again to active: Esc:: Suspend Return If you have to use "Enter" to open chat, typing your message and press enter again to send the message, you can try this one, basical...
by luciga
12 Jan 2017, 18:48
Forum: Gaming Help (v1)
Topic: [Req]Looking for a press shift button to repeat when held down script
Replies: 2
Views: 1037

Re: [Req]Looking for a press shift button to repeat when held down script

This one will send the shift + 5, wait 0,3 seconds and start again if you keep press shift + 5 There is many options for you here. If you want, you could just change de "Sleep time" or just put another key to send the command. +5:: Send +{5} Sleep 300 Return This one will loop the command. If you pr...
by luciga
12 Jan 2017, 18:34
Forum: Gaming Help (v1)
Topic: [Req]Looking for a press shift button to repeat when held down script
Replies: 2
Views: 1037

Re: [Req]Looking for a press shift button to repeat when held down script

Hi there.
I'm a little bit confuse, you want to holding down the shift and 5 keys? If you press shift + 5, the script will run the same command in game.

Could you please be more expecific?
by luciga
23 Dec 2016, 07:17
Forum: Gaming Help (v1)
Topic: Make me a hotkey
Replies: 2
Views: 800

Re: Make me a hotkey

Hi there. The function of pressing some key x times is out of my knoledge, but you could use this: z:: Send, {z 150} q:: Send {q 11} z and q will be the key to start the function. 150 and 11 is the number that will be repeat. You could adjust the number of (z) till 10 seconds that you want. Hope it ...
by luciga
17 Dec 2016, 06:30
Forum: Gaming Help (v1)
Topic: Path of EXILE SEND TRADE CHAT TO INACTIVE WINDOW
Replies: 5
Views: 2408

Re: Path of EXILE SEND TRADE CHAT TO INACTIVE WINDOW

I like this loop that evilC shows me a few days ago:
r::
LoopRunning := 1
while (LoopRunning)
{
Send {Click 822 330}
Sleep 300
}
Space::
LoopRunning := 0
Return

This is a infinite loop. If you press space, loop stop.
Just put your script inside the { } and change de keys as you wish.
by luciga
16 Dec 2016, 09:55
Forum: Gaming Help (v1)
Topic: Path of EXILE SEND TRADE CHAT TO INACTIVE WINDOW
Replies: 5
Views: 2408

Re: Path of EXILE SEND TRADE CHAT TO INACTIVE WINDOW

F6:: LoopRunning := 1 while (LoopRunning) { Controlsend, ,{Enter} Controlsend, ,/trade %A_Index% Controlsend, ,{Enter} Controlsend, ,{Enter} Controlsend, ,{Up} Controlsend, ,{Up} Sleep 1200 Controlsend, ,{Enter} If A_Index = 8 Break else Sleep, 1200 } Another key:: LoopRunning := 0 Return I'm not t...
by luciga
16 Dec 2016, 07:05
Forum: Gaming Help (v1)
Topic: How to make autohotkey recognise 1Joy1 for an autoclicker? Topic is solved
Replies: 4
Views: 1871

Re: How to make autohotkey recognise 1Joy1 for an autoclicker? Topic is solved

Hi there, This is a simple script for giving you an example to how it works: F1:: Send {Some button} I don't know what kind of game are you playing, but should info in your post. When this message shows up ("This line does not contain a recognised action."), normally there is a arrow that appoint to...
by luciga
15 Dec 2016, 15:46
Forum: Gaming Help (v1)
Topic: "Twerk Script"
Replies: 3
Views: 2457

Re: "Twerk Script"

Hello dude, I don't know how to make the script more fast than it is, but here is the normal speed. SetKeyDelay, 0 RControl:: Send {LShift} If it doesn't work, try some of this others: ; all the keys you want to accelarate keys = a,s,d,f,%A_Tab%,%A_BS% t_init = 0.15 ; init delay (seconds) t_min = 0....
by luciga
09 Dec 2016, 12:46
Forum: Gaming Help (v1)
Topic: Trying to use controlsend
Replies: 1
Views: 1385

Re: Trying to use controlsend

Well... I figure it out.
ControlSend, ,{Control down}{right}{Control up}, Tibia - Sra Hand
Sleep 1000
ControlSend, ,{Control down}{left}{Control up}, Tibia - Sra Hand
Sleep 2000

Now it works.
by luciga
09 Dec 2016, 11:45
Forum: Gaming Help (v1)
Topic: Trying to use controlsend
Replies: 1
Views: 1385

Trying to use controlsend

Hello, I'm trying to make this script works for 3 days and still doesn't works. =:: LoopRunning := 1 while (LoopRunning) { ControlSend, ,^{Right}, Tibia - Sra Hand Sleep 1000 ControlSend, ,^{Up}, Tibia - Sra Hand Sleep 1000 ControlSend, ,^{Down, Tibia - Sra Hand Sleep 1000 ControlSend, ,^{Left}, Tib...
by luciga
09 Dec 2016, 08:31
Forum: Gaming Help (v1)
Topic: 1 Mouse click sent to two different locations?
Replies: 1
Views: 1163

Re: 1 Mouse click sent to two different locations?

Hello, You could try turn on/off the script and use in both situation. Script on = right click will left click some position Script off = normal right click and left mouse click. Script turn on/off pressing esc: Esc:: Suspend Return There is two possibilities here. Will you click when your game is o...

Go to advanced search