 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
Wicked - Guest Guest
|
Posted: Mon Nov 17, 2008 9:59 pm Post subject: |
|
|
Nice, nice. If you want to see an example of an awsome highscores look-up, PM me or add my messenger. I coded one with tons of features.
PleaseMommyNotHimAgain@Hotmail.Com (Yes... That is actually my e-mail...) |
|
| Back to top |
|
 |
da macro Guest
|
Posted: Sun Nov 23, 2008 8:38 am Post subject: power cutter |
|
|
how do i use power woodcutter and power miner? plz reply soon  |
|
| Back to top |
|
 |
Anon-O-Mouse Guest
|
Posted: Wed Dec 17, 2008 7:52 am Post subject: Suggestion |
|
|
I have to say, I really like AIO v0.6. I'm very curious about future features.
Currently, I use it just so I don't automatically log out when doing repetitive tasks, like fishing. However, I'd like to suggest an imporvement to the logout prevention mechanism. Currently, it will turn the screen left or right every 3 to 15 seconds. I'd like that to be user configurable. The time range is good, I think, but the options I'd like control over are:
* Option 1 - Move 2 directions (like you have: left/right, or up/down, or up/left, or down/right, etc.)
* Option 2 - Move 1 direction (only up, only down, only left, etc.)
This would help me. I've seen times when I want the Logout Prevention feature on, even on while I'm actively engaged. But there are times when I want it to be more specific in it's application.
Thank you,
Anon-O-Mouse |
|
| Back to top |
|
 |
Holy Macro
Joined: 09 Jan 2009 Posts: 11
|
Posted: Fri Jan 09, 2009 9:04 pm Post subject: |
|
|
| Huh, well i just have a hotkey that enables the mouse to move up on the screen then after 15 sec, down on the screen then another 15 seconds and its back to the first. Its looped. Incredibly wonderful, i can leave the game and go eat and not have to worry about logging out AND having to log back in which i might lose some info or pming that just happened. I also created a hotkey for logging in. Takes like 2 seconds. No more typing my username and pass! Yay. |
|
| Back to top |
|
 |
lukey177
Joined: 09 Oct 2008 Posts: 3
|
Posted: Mon Jan 12, 2009 9:13 am Post subject: |
|
|
I dont get it.
How do i get this to work? Copy and paste the code into a new AHK script file? Then compile to a EXE and run? |
|
| Back to top |
|
 |
Holy Macro
Joined: 09 Jan 2009 Posts: 11
|
Posted: Mon Jan 12, 2009 2:06 pm Post subject: |
|
|
| Well, just copy the entire code into an .ahk file of your own. Then save and reload the script or compile it and then use the hotkey or command to open it up unless it opens automatically and there ya go. |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Feb 17, 2009 1:24 am Post subject: |
|
|
i'm sorry to be such a green nub, but where do i put this code:?:  |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Feb 17, 2009 1:27 am Post subject: |
|
|
| Holy Macro wrote: | | Well, just copy the entire code into an .ahk file of your own. Then save and reload the script or compile it and then use the hotkey or command to open it up unless it opens automatically and there ya go. |
hi its me :mrgreen:greennub:mrgreen: and i have more questions, where do i create an .ahk ? then what hotkey/command:?:  |
|
| Back to top |
|
 |
DaveNate Guest
|
Posted: Tue Feb 17, 2009 2:08 pm Post subject: Got Banned |
|
|
I am not sure how it happened, but I got banned using a macro. I am not afk but rather use a macro because of a disability in my shoulder, which kind of stinks because it doesn't matter to Jagex.
I think what they check for is very fast screen position changes and clicks, clicking repeatedly in the same area(with no effect, i.e. the screen moved), not responding to random events quick enough. They may also use timed pattern checks(do you wait exactly 1.0 seconds between clicks), and they may also use a did your mouse move directly from point A to point B or did it go in a line. Regardless, Jagex tells you that the system flags you and then records data. So even if you are being very careful, if you are grinding for 2 hours that may set off a flag too. |
|
| Back to top |
|
 |
SpiderGames
Joined: 09 Jun 2008 Posts: 936 Location: Canada
|
Posted: Tue Feb 17, 2009 11:37 pm Post subject: |
|
|
what thats doing is this.
Java reads
MouseClicked, "Were u clicked"
Waited, 0.000003
MouseClicked, "Other side of Screen"
Thats what sets of the flags. _________________
I know i have 6 legs. It's cuz I'm special. |
|
| Back to top |
|
 |
tiberiu_m1
Joined: 19 Jul 2007 Posts: 12 Location: Sydney
|
Posted: Wed Jan 27, 2010 12:32 am Post subject: |
|
|
i use this function in my Eveonline macro to move the mouse around my screen in between specified coords and during xx seconds.
| Code: |
SetKeyDelay, 200
SetDefaultMouseSpeed, 15
InteliSleep(sec)
{
cnt := 0
mvtime := 0
Random, mvtime, 10, 30
Loop, %sec%
{
cnt := cnt + 1
if cnt >= %mvtime%
{
Random, randx, 200, 600 ; here you can change these coords x,y and create a smaller/bigger moving area
Random, randy, 200, 600 ; here you can change these coords and create a smaller/bigger moving area
MouseMove, %randx%, %randy%
Random, mvtime, 10, 30
cnt := 0
}
Sleep, 1000
}
}
|
Usage:
| Code: | InteliSleep(xx) ;change xx to how many seconds you need to wait in seconds
|
Hope this will be useful.
Cheers |
|
| Back to top |
|
 |
TO THE CREATER OF THESE Guest
|
Posted: Wed Jun 09, 2010 10:24 pm Post subject: HELP!!! |
|
|
LINE EIGHTEEN OF OF THE GUI MACRO ISNT WORKING FOR ME PLEASE HELP [/b] |
|
| Back to top |
|
 |
Guest
|
Posted: Wed Jun 09, 2010 10:55 pm Post subject: |
|
|
They detect macros by many different things:
Mouse Movements: Your mouse moving in a perfect line from one pixel to the next.
Same Pixel: You moving it to the same exact same pixel each time.
Click Time: Time between clicks and mouse moves.
A few other things, just cant think of them right now. |
|
| Back to top |
|
 |
=/ Guest
|
Posted: Sat Jun 12, 2010 7:54 pm Post subject: |
|
|
I downloaded the 0.6 verson of the all in one macro
but when i try to configure it, it keeps saying it cant find the runescape window....
hELP!!!!! PLEASE |
|
| Back to top |
|
 |
Guest
|
Posted: Thu Jun 17, 2010 12:38 am Post subject: |
|
|
| =/ wrote: | I downloaded the 0.6 verson of the all in one macro
but when i try to configure it, it keeps saying it cant find the runescape window....
hELP!!!!! PLEASE |
Well, you have to download a program that disassembles ahk files. Then change the runescape - jagex something something something thing to runescape - the number 1 free multiplayer game |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|