 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
trik
Joined: 15 Jul 2007 Posts: 1320
|
Posted: Thu Aug 02, 2007 2:48 am Post subject: Request RS Scripts Here |
|
|
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 Sun Aug 12, 2007 9:53 pm; edited 3 times in total |
|
| Back to top |
|
 |
BoBoĻ Guest
|
Posted: Thu Aug 02, 2007 7:21 am Post subject: |
|
|
@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.  |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 8255 Location: Maywood, IL
|
Posted: Thu Aug 02, 2007 4:16 pm Post subject: |
|
|
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? _________________
(Common Answers) |
|
| Back to top |
|
 |
Nival
Joined: 21 Jun 2007 Posts: 9
|
Posted: Sat Aug 04, 2007 9:35 am Post subject: |
|
|
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
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! |
|
| Back to top |
|
 |
trik
Joined: 15 Jul 2007 Posts: 1320
|
Posted: Sun Aug 12, 2007 9:37 pm Post subject: |
|
|
| 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. >_> |
|
| Back to top |
|
 |
l0n3lyr0bot
Joined: 15 Apr 2008 Posts: 3 Location: Falling through time
|
Posted: Fri Apr 18, 2008 8:25 am Post subject: Power miner |
|
|
if you want to make a power miner, then here is the code I used with my Runescape all-in-one GUI.
| 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:
 _________________ -------------------------------------------------------
I am a squid. |
|
| Back to top |
|
 |
dartht33bagger
Joined: 16 Apr 2008 Posts: 4 Location: Oregon
|
Posted: Sat Apr 19, 2008 3:17 am Post subject: |
|
|
| An auto cutter would be cool, considering all i do is wc. |
|
| Back to top |
|
 |
~Squid~ Guest
|
Posted: Sat Apr 19, 2008 4:01 pm Post subject: |
|
|
0mg c00l 5ig l0n3lyr0bot!!!!!!!!!!!!
_________________
-------------------------------------------------------
u aint squid you aint squat!!!
http://www.news.wisc.edu |
|
| 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
|