AutoHotkey Community

It is currently May 25th, 2012, 1:44 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 8 posts ] 
Author Message
 Post subject: Request RS Scripts Here
PostPosted: August 2nd, 2007, 3:48 am 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
I am sick and tired of people posting threads like "I need a rs auto!" Etc, whatever! So I am making this one for all of you to request them here. I will work my knowledge to the fullest to keep these forums spam free. Also any help in this would be appreciated.

I will do things such as:

auto miner, woodcutter, fisher etc..

Heres one I've already made.
Code:
Gui, Add, Edit, x26 y140 w40 h20 , 0
Gui, Add, UpDown, x66 y140 w20 h20 vXPos Range0-1000 , UpDown
Gui, Add, Edit, x156 y140 w40 h20 , 0
Gui, Add, UpDown, x196 y140 w20 h20 vYPos Range0-1000 , UpDown
Gui, Add, Text, x6 y110 w100 h20 +Center, Rock X Posotion
Gui, Add, Text, x136 y110 w100 h20 +Center, Rock Y Posotion
Gui, Add, Text, x6 y10 w230 h20 +Center, Dieoms RuneScape AutoMiner
Gui, Add, Text, x6 y40 w230 h50 +Center, Note: To find the X posotion of the rock, hover over it and press Ctrl + X and Ctrl + Y for the Y posotion.
Gui, Add, Button, x88 y180 w70 h30 , Begin
Gui, Show, x131 y91 h262 w248, AutoMiner ~dieom
Return

^x::
MouseGetPos, MouseX, MouseY
MsgBox, The X coord is: %MouseY%
Return

^y::
MouseGetPos, MousX, MousY
MsgBox, The Y coord is: %MousY%


ButtonBegin:
Gui, Submit, NpHide
Loop, 28
{
MouseClick, Left, %XPos%, %YPos%
Sleep, 10000
}

GuiClose:
ExitApp


keywords:
runescape, auto miner, auto cooker, auto woodcutter, autofisher


also

_________________
Religion is false. >_>


Last edited by trik on August 12th, 2007, 10:53 pm, edited 3 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 2nd, 2007, 8:21 am 
@dieom
Quote:
I will work my knowledge to the fullest to keep these forums spam free
Me, myself & I (+ guess others too) really appreciate that attitude. Nevertheless I think that your current subjetc line will create the opposite effect.

"Request RS Scripts Here" burries the risk to redirect those geeks to a section of the forum which isn't meant for requests. It might make sense to remove "Request" from the subject line (you will be requested anyway, promised). OTOH, it might make sense to add some more RS specific (googlestyle) keywords/terms so this thread can be easily found by its fans - to request whatever they like.

Thx for listening and your support. 8)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 2nd, 2007, 5:16 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8649
Location: Salem, MA
Also, I think there was another AHK user who started a thread like this before. Maybe you can take over that thread or post a link to this thread there?

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2007, 10:35 am 
Offline

Joined: June 21st, 2007, 5:54 pm
Posts: 9
Well, I think: Well done, but it still can't handle all the anti-bot-systems (or something like that).
Simple design, love it, but an autoclicker does the same :cry:
without the help of coordinate input

_________________
I know we'll never invent a time-machine!
Why I know this?
Well, I haven't seen anyone from the future yet!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 12th, 2007, 10:37 pm 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
Nival wrote:
Well, I think: Well done, but it still can't handle all the anti-bot-systems (or something like that).


Yes, that is a big problem with using auto clickers. But trying to use a pixel search laggs you. However using a simple color search is much more simple. And it will not lagg.

_________________
Religion is false. >_>


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Power miner
PostPosted: April 18th, 2008, 9:25 am 
Offline

Joined: April 15th, 2008, 9:29 pm
Posts: 3
Location: Falling through time
if you want to make a power miner, then here is the code I used with my Runescape all-in-one GUI. :D

Code:
msgbox, 4160, Important!, Before beginning power miner`, make sure that your inventory is empty. this is important`, as otherwise Power Miner will drop all of your stuff. when you have emptied your inventory, press F12 to begin calibration.
Keywait, F12, D
msgbox, 4160, Power miner, Hover the mouse cursor over the rock that you want to mine`, and press F12.
Keywait, F12, D
Mousegetpos, pmx, pmy
msgbox, 4160, Power Miner, Now hover the mouse cursor over the first slot in your inventory.
Keywait, F12, D
Mousegetpos, pmx2, pmy2
msgbox, 4160, Power Miner, Calibration complete. Power miner will now Power Mine the specified rock , at %pmx% %pmy%. until F3 is pressed.
loop
{
getkeystate, closestate3, F3, P
if closestate3 =D
break
else
loop, 2
{
getkeystate, closestate3, F3, P
if closestate3 =D
{
break
msgbox, Power miner has closed down
}
else
click %pmx%, %pmy%
{
sleep 5000
}
}
loop, 7
{
loop, 4
{
getkeystate, closestate3, F4, P
if closestate3 =D
break
else
mouseclick, R, %pmx2%, %pmy2%
{
sleep, 500
}
pmy2 +=38
click, %pmx2%, %pmy2%
pmx2 +=42
pmy2 -=38
}
pmx2 -=168
pmy2 +=36
}
pmy2 -=252
}

return


here's the thread:
http://www.autohotkey.com/forum/viewtopic.php?t=30829

screenshot:
Image

_________________
-------------------------------------------------------
Image

I am a squid.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 19th, 2008, 4:17 am 
Offline

Joined: April 16th, 2008, 3:54 am
Posts: 4
Location: Oregon
An auto cutter would be cool, considering all i do is wc.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 19th, 2008, 5:01 pm 
0mg c00l 5ig l0n3lyr0bot!!!!!!!!!!!!

_________________
-------------------------------------------------------
u aint squid you aint squat!!!
Image

http://www.news.wisc.edu


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 8 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: DataLife and 22 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