AutoHotkey Community

It is currently May 26th, 2012, 11:41 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 35 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject:
PostPosted: November 17th, 2008, 10:59 pm 
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...)


Report this post
Top
  
Reply with quote  
 Post subject: power cutter
PostPosted: November 23rd, 2008, 9:38 am 
how do i use power woodcutter and power miner? plz reply soon :?:


Report this post
Top
  
Reply with quote  
 Post subject: Suggestion
PostPosted: December 17th, 2008, 8:52 am 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 9th, 2009, 10:04 pm 
Offline

Joined: January 9th, 2009, 9:25 pm
Posts: 11
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 12th, 2009, 10:13 am 
Offline

Joined: October 9th, 2008, 9:29 am
Posts: 3
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 12th, 2009, 3:06 pm 
Offline

Joined: January 9th, 2009, 9:25 pm
Posts: 11
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 17th, 2009, 2:24 am 
i'm sorry to be such a :mrgreen: green :mrgreen: nub, but where do i put this code:?: :?: :?: :?: :?: :?:


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 17th, 2009, 2:27 am 
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:?::?::?:


Report this post
Top
  
Reply with quote  
 Post subject: Got Banned
PostPosted: February 17th, 2009, 3:08 pm 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 18th, 2009, 12:37 am 
Offline

Joined: June 9th, 2008, 2:32 am
Posts: 936
Location: Canada
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.

_________________
Image
I know i have 6 legs. It's cuz I'm special.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2010, 1:32 am 
Offline

Joined: July 19th, 2007, 1:13 am
Posts: 12
Location: Sydney
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject: HELP!!!
PostPosted: June 9th, 2010, 11:24 pm 
LINE EIGHTEEN OF OF THE GUI MACRO ISNT WORKING FOR ME PLEASE HELP :!: [/b]


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 9th, 2010, 11:55 pm 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 12th, 2010, 8:54 pm 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 17th, 2010, 1:38 am 
=/ 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


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 35 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: oldbrother, Rajat and 61 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group