Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate

Runescape


  • Please log in to reply
2 replies to this topic
fojo
  • Guests
  • Last active:
  • Joined: --
Hi guys we need some runescape scripts here to perform boring tasks such as alching and things like that. :D

Perduta
  • Members
  • 7 posts
  • Last active: May 02 2012 12:05 AM
  • Joined: 02 May 2012

Hi guys we need some runescape scripts here to perform boring tasks such as alching and things like that. :D


To my second post on thread "prompting the user" in support forum I attached a set of simple routines e.g. cleaning herbs and spam clicking (will high alch if you put the things in same place as the alch spell) and auto typing. Someone said I should get a moderator to move it to the games forum... but meanwhile you can find it there 8)

Gheotic
  • Members
  • 52 posts
  • Last active: Apr 10 2015 09:43 AM
  • Joined: 20 Apr 2012
Here is a Runescape High Alch script.
That high alchs with random delay between 3-4 secounds between each high alch and it logs out when a random event come =P

First move your mouse to a spot on your Runescape screen that wont change color like the fog in the background.
Then press Ctrl-G to chose that spot to detect
Then hold your mouse above the highalch spell and press Ctrl-H to detect that spot
last thing press Ctrl-Shift-S to start script
;Runescape High alch
  ^R:: Reload
Ins:: Suspend
  ^P:: Pause

^G::
MouseGetPos, xpos, ypos
Msgbox, The cursor is at X%xpos% Y%ypos%. 
return

^H::
MouseGetPos, xpos1, ypos1
Msgbox, The cursor is at X%xpos% Y%ypos%. 
return



^+S::
MsgBox, Loop Started
PixelGetColor, StartColor, %Xpos%, %ypos%
;MsgBox, %StartColor%   The cursor is at X%xpos% Y%ypos%
Loop
{
  PixelGetColor, Color, %Xpos%, %ypos%
  ;MsgBox, %Color%  %StartColor%   X%xpos%   Y%ypos%
  If (Color=StartColor) 
  {
    Click, %xpos1%, %ypos1%
    Random, Sleeper, 1513,2014
    Sleep, %Sleeper%
  }
  Else
  {
    Click 1158,66
    sleep, 1000
    Click 1057,696
    MsgBox, Random Event logging out
  } 
}

________________________
Go have fun with scripts!