[Razor] Dan's "Fishing Thingamabob"

If you make a Client-side script you can publish it here for other players to use
Locked
snaggeh
Adept Scribe
Posts: 43
Joined: Fri Sep 16, 2011 7:34 pm

[Razor] Dan's "Fishing Thingamabob"

Post by snaggeh »

Hi Guys and Girls
I made this macro for a couple of reasons, I wanted to Fish, I wanted to get a few items out of chests for house deco and I wanted to just give it a go and see if I could make a usable macro.

There are a couple of things you need to star this rolling

1: A large boat, ( smaller one works just fine but why think small ?)
2: Fishing rod, dagger and some time.
3: Works best on a North-South line heading north
4: Turn off "drop resources at feet" option in Razor if you want the script to cut up the fish for you.


I wont bother going into where to put the macro and stuff like that, I am sure you know what to do with it.

Basically This macro will fish for a certain amount of casts, then cut up all the fish you have caught into tasty fishcakes.
mmm, mmm. You will need to turn off the "drop resources at feet" option in razor if you have it selected.
I have tried to make this as easy as possible by using the "itemtype" setting as much as possible but if you have any trouble there comments to read in the macro that should explain what to do anywhere there is a value that might or could need to be changed.

Hope you enjoy, this took me from 30ish fishing all the way to 115 in somewhere around the 4-5 hour mark though I did not really pay too much attention to how long it took, I was duel monitoring and watching episodes of Archer between killing Deep Sea Serpents and running the odd Champ spawn.

This is not designed as some sort of afk fishcake gatherer. It will not auto kill stuff or do anything fancy, it simply just keeps on fishing, Use this responsibly and stay within the rules of this fine shard!

This is my first submission on here so please feel free to give any feed back or just a hello if this macro helped you at all.
Even if you don't particularly want to fish it is another avenue to get some DEX & STR gains.

Enjoy!

( Dan ingame)

Code: Select all

!Loop
// Dan's Fishing Macro V1.2
// Fishing loop, change this
// for how many times you fish
// before it starts cutting.
Assistant.Macros.ForAction|15
// Change this item to the
// fishing rod you use if item
// type does not work.
Assistant.Macros.DoubleClickAction|1088405244|3520
Assistant.Macros.PauseAction|00:00:00.5000000
Assistant.Macros.WaitForTargetAction|5
// This next line is a
// "relative click location"
// It clicks a few squares east
// of current position.
// This can be changed to
// train up on land.
Assistant.Macros.TargetRelLocAction|2|-1
Assistant.Macros.PauseAction|00:00:08
Assistant.Macros.EndForAction
// end of fishing loop,
// now moves to the next spot
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|Raise Anchor
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.SpeechAction|0|52|3|ENG|2|16|90|forward one
Assistant.Macros.PauseAction|00:00:01
// cutting
// selects a dagger in pack,
// can be changed to any blade
// weapon,then cuts up fish.
Assistant.Macros.DoubleClickTypeAction|3922|True
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.PauseAction|00:00:02
Assistant.Macros.TargetTypeAction|False|2511
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.DoubleClickTypeAction|3922|True
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.PauseAction|00:00:02
Assistant.Macros.TargetTypeAction|False|2508
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.DoubleClickTypeAction|3922|True
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.PauseAction|00:00:02
Assistant.Macros.TargetTypeAction|False|2509
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.DoubleClickTypeAction|3922|True
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.PauseAction|00:00:02
Assistant.Macros.TargetTypeAction|False|2510
Assistant.Macros.PauseAction|00:00:01

User avatar
Gaara
Legendary Scribe
Posts: 890
Joined: Sun Sep 23, 2012 10:43 pm
Location: Sedona, AZ, USA

Re: [Razor] Dan's "Fishing Thingamabob"

Post by Gaara »

Cool, will try :nod:
Image
snaggeh
Adept Scribe
Posts: 43
Joined: Fri Sep 16, 2011 7:34 pm

Re: [Razor] Dan's "Fishing Thingamabob"

Post by snaggeh »

I have just seen your one, It has a clause in there to move you if the fish are not biting... I didnt even think about doing that ! stupid me.

Next version!
Locked