Zkuste otestovat:)
This was taken from the wessex website by someone i know
Have altered the macros so people cant use them
unless you know how to just thought I'd expose the cheating fuckers
I have taken the liberty to create some easy macros for you in a simple .exe format.
If you do not wish to use the exe and prefer to use your own macro program the source is included with each to understand the logic. The program i used is called AutoHotKey and can be freely downloaded from there website
When you load the exe file it will go into your system tray as a little orange circle.
The control are as follows unless stated otherwise under the descriptions
Ctrl - Alt - I : start
Ctrl - Alt - O : stop
Ctrl - Alt - P : pause
-----------------------------------------
By Carnifax
Hey guys, I fixed up the Herbalism Macro so it works normally again since the last patch.
*Important: Stand in front of a herb plant with your sickle unsheathed and your mouse aiming as it would as you stand up from resting, it will cycle 50 times and then rest for 4 minutes.*
Link:
http://www.carnifex.info/secret/herbing.exeUser: wsx
Pass: duchydance
Ctrl-Alt-I to start
Ctrl-Alt-O to stop
Ctrl-Alt-P to pause
Enjoy !
*new version up, resting time was too long
----------------------------------------------------------------------
The Mana Missle v2.3 - Download link
Description: This will fire off enough bolts to leave little mana, sit down for 3 minutes to refill then start again.
Must have:
Mana Missle spell in hotkey 1
Rest in hotkey 0
have a staff equipped and sheathed.
source
Code:
;::: ::: :::::::::: :::::::: :::::::: :::::::::: ::: :::
;:+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
;+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
;+#+ +:+ +#+ +#++:++# +#++:++#++ +#++:++#++ +#++:++# +#++:+
;+#+ +#+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
; #+#+# #+#+# #+# #+# #+# #+# #+# #+# #+# #+#
; ### ### ########## ######## ######## ########## ### ###
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; Whats a mana with you.
; ctrl-alt-x key starts clicking loop
^!x::
Start:
StopIt := 0
Loop
{
IfEqual, StopIt, 1, break
Send, R
sleep, 3000
Sleep, 3000
MouseClick, left, 663, 705
loop 40
{
IfEqual, StopIt, 1, break
Click
Sleep, 4000
}
Send, r
Sleep, 3000
send, 0
Click
Sleep, 1800
send, w
Sleep, 30
MouseClick, left, 663, 705
Goto, Start
; ctrl-alt-y key breaks it
^!y::
StopIt := 1
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.
----------------------------------------------------------------------
The Gathering Macro - With Rest v1.4 - Download link
Description: This will hit the tree/rock/shrub until stamina runs out then rest until your ready to go again.
source
Must have:
Rest in hotkey 0
have a Pick Axe/Wood Axe/Sickle equipped and sheathed.
Source
Code:
;::: ::: :::::::::: :::::::: :::::::: :::::::::: ::: :::
;:+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
;+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
;+#+ +:+ +#+ +#++:++# +#++:++#++ +#++:++#++ +#++:++# +#++:+
;+#+ +#+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
; #+#+# #+#+# #+# #+# #+# #+# #+# #+# #+# #+#
; ### ### ########## ######## ######## ########## ### ###
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; We dig dig dig dig dig dig dig in our mine the whole day through
; To dig dig dig dig dig dig dig is what we really like to do
; It ain't no trick to get rich quick
; If you dig dig dig with a shovel or a pick
; In a mine! In a mine! In a mine! In a mine!
; Where a million diamonds shine!
; ctrl-alt-i key starts clicking loop
^!p::
Return,
^!i::
Start:
StopIt := 0
Send, R
sleep, 3000
loop 40
{
IfEqual, StopIt, 1, Exit
Sleep, 4000
}
Send, r
Sleep, 3000
send, 0
Sleep, 2000
Click
Sleep, 180000
send, w
Sleep, 3000
Goto, Start
; ctrl-alt-y key breaks it
^!o::
StopIt := 1
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.
----------------------------------------------------------------------
You Rest When Your Dead v1.1 - Download link
Description: Some people dont want to sit around doing nothing when they could be hitting things, this will just hit and gather everything infront of you until your either dead or not playing. In theory when you have no stam left there should be only a couple of seconds not doing anything before it hits and refills the bar.
Must have:
Have a Axe/Sickle/Chopper equipped and unsheathed.
source
Code:
;::: ::: :::::::::: :::::::: :::::::: :::::::::: ::: :::
;:+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
;+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
;+#+ +:+ +#+ +#++:++# +#++:++#++ +#++:++#++ +#++:++# +#++:+
;+#+ +#+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
; #+#+# #+#+# #+# #+# #+# #+# #+# #+# #+# #+#
; ### ### ########## ######## ######## ########## ### ###
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; Disclaimer: This will not make you rest when your dead. Or Alive.
; ctrl-alt-i key starts clicking loop
^!p::
Pause
Return,
^!i::
StopIt := 0
loop
{
IfEqual, StopIt, 1, Exit
Sleep, 4000
}
return
; ctrl-alt-y key breaks it
^!o::
StopIt := 1
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.
----------------------------------------------------------------------
Immolation v1.4 - Download link
Description: This will fire bolts of mana at your feet, hurting yourself in the process. This is used best if you are wearing armour as it will boost your magic,defence,attack and rigour. It will take you down to just less than a quarter health then heal before starting again.
NOTE: There are so many variables to not dieing here, all i can suggest is that you only use newby staffs and observe the script the first time it is run to make sure you dont die from the mana and you go back to full health before starting again.
Must have:
Mana Missle spell in hotkey 1
Rest in hotkey 0
have a staff equipped and sheathed.
source
Code:
;::: ::: :::::::::: :::::::: :::::::: :::::::::: ::: :::
;:+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
;+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
;+#+ +:+ +#+ +#++:++# +#++:++#++ +#++:++#++ +#++:++# +#++:+
;+#+ +#+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
; #+#+# #+#+# #+# #+# #+# #+# #+# #+# #+# #+#
; ### ### ########## ######## ######## ########## ### ###
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; This script drove me to sipping hard liquor. I hope its worth it.
; ctrl-alt-i key starts clicking loop
^!p::
Pause
Return,
^!i::
Start:
StopIt := 0
Send, R
sleep, 3000
Send, 1
Sleep, 3000
MouseClick, left, 663, 705
loop 28
{
IfEqual, StopIt, 1, Exit
Click
Sleep, 4000
}
Send, r
, 3000
send, 0
Click
Sleep, 180
send, w
Sleep, 3000
MouseClick, left, 663, 705
Goto, Start
; ctrl-alt-y key breaks it
^!o::
StopIt := 1
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.