├── .gitignore ├── README.md ├── copying.txt ├── core ├── boxDrawer.ahk ├── class__Pixel.ahk ├── cursor.ahk ├── delays.ahk ├── guiInfo.ahk ├── guiLicence.ahk ├── inventory.ahk ├── links.ahk ├── regionMaker.ahk ├── rockModel.ahk └── runelite.ahk ├── docs ├── config.ini ├── copying.txt ├── info.txt └── info_es_ES.txt ├── img ├── discord_logo_48.png ├── fiverr_logo_48.png └── git_logo_48.png ├── miningv1.4 - thinkRand.ahk └── resources ├── displaySettings.png └── miningClay.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/README.md -------------------------------------------------------------------------------- /copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/copying.txt -------------------------------------------------------------------------------- /core/boxDrawer.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/boxDrawer.ahk -------------------------------------------------------------------------------- /core/class__Pixel.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/class__Pixel.ahk -------------------------------------------------------------------------------- /core/cursor.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/cursor.ahk -------------------------------------------------------------------------------- /core/delays.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/delays.ahk -------------------------------------------------------------------------------- /core/guiInfo.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/guiInfo.ahk -------------------------------------------------------------------------------- /core/guiLicence.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/guiLicence.ahk -------------------------------------------------------------------------------- /core/inventory.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/inventory.ahk -------------------------------------------------------------------------------- /core/links.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/links.ahk -------------------------------------------------------------------------------- /core/regionMaker.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/regionMaker.ahk -------------------------------------------------------------------------------- /core/rockModel.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/rockModel.ahk -------------------------------------------------------------------------------- /core/runelite.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/core/runelite.ahk -------------------------------------------------------------------------------- /docs/config.ini: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /docs/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/docs/copying.txt -------------------------------------------------------------------------------- /docs/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/docs/info.txt -------------------------------------------------------------------------------- /docs/info_es_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/docs/info_es_ES.txt -------------------------------------------------------------------------------- /img/discord_logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/img/discord_logo_48.png -------------------------------------------------------------------------------- /img/fiverr_logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/img/fiverr_logo_48.png -------------------------------------------------------------------------------- /img/git_logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/img/git_logo_48.png -------------------------------------------------------------------------------- /miningv1.4 - thinkRand.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/miningv1.4 - thinkRand.ahk -------------------------------------------------------------------------------- /resources/displaySettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/resources/displaySettings.png -------------------------------------------------------------------------------- /resources/miningClay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinkRand/Script-for-automatic-mining-on-old-school-runescape-OSRS/HEAD/resources/miningClay.png --------------------------------------------------------------------------------