AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

RuneScape All-in-One Macro
Goto page Previous  1, 2
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Wicked - Guest
Guest





PostPosted: Mon Nov 17, 2008 10:59 pm    Post subject: Reply with quote

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





PostPosted: Sun Nov 23, 2008 9:38 am    Post subject: power cutter Reply with quote

how do i use power woodcutter and power miner? plz reply soon Question
Back to top
Anon-O-Mouse
Guest





PostPosted: Wed Dec 17, 2008 8:52 am    Post subject: Suggestion Reply with quote

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

PostPosted: Fri Jan 09, 2009 10:04 pm    Post subject: Reply with quote

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
View user's profile Send private message
lukey177



Joined: 09 Oct 2008
Posts: 3

PostPosted: Mon Jan 12, 2009 10:13 am    Post subject: Reply with quote

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
View user's profile Send private message
Holy Macro



Joined: 09 Jan 2009
Posts: 11

PostPosted: Mon Jan 12, 2009 3:06 pm    Post subject: Reply with quote

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
View user's profile Send private message
Guest






PostPosted: Tue Feb 17, 2009 2:24 am    Post subject: Reply with quote

i'm sorry to be such a Mr. Green green Mr. Green nub, but where do i put this code:?: Question Question Question Question Question
Back to top
Guest






PostPosted: Tue Feb 17, 2009 2:27 am    Post subject: Reply with quote

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:?:QuestionQuestion
Back to top
DaveNate
Guest





PostPosted: Tue Feb 17, 2009 3:08 pm    Post subject: Got Banned Reply with quote

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: 925
Location: Canada

PostPosted: Wed Feb 18, 2009 12:37 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
tiberiu_m1



Joined: 19 Jul 2007
Posts: 12
Location: Sydney

PostPosted: Wed Jan 27, 2010 1:32 am    Post subject: Reply with quote

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
View user's profile Send private message Yahoo Messenger
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group