• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - fishing macro

mudpielen

Member
Joined
Nov 19, 2012
RedCents
552¢
I am hoping someone can point me in the right direction of what fishing macro to use an where an how to use an get it thnx
 
Isn't there a fish.mac that comes with macroquest?

Either way I haven't tested this, just threw it together.

Rich (BB code):
#event NotReady "#*#You can't fish without a fishing pole, go buy one.#*#"
#event NotReady "#*#You can't fish without fishing bait, go buy some.#*#"

Sub Main
	:StartAgain
	/if (!${Me.Inventory[mainhand].Name.Find[Fishing Pole]} && !${Me.Inventory[mainhand].Name.Find[Brell's Fishin' Pole]}) {
		/echo  You need to put your fishing pole in your primary hand.
		/endm
	}
	
	/if (${Cursor.ID}) {
		/if (${Cursor.Name.Equal[Tattered Cloth Sandal]} || ${Cursor.Name.Equal[Rusty Dagger]} || ${Cursor.Name.NotEqual[Fish Scales]}) {
			/destroy
			/delay 1s
		} else {
			/echo Caught - ${Cursor.Name}
			/autoinventory
		}
	}
	/goto :StartAgain
/return

Sub Event_NotReady
	/echo You are not ready to fish. 
	/endm
/return
 
Last edited:
Thnx i found some old ones i got one of them to work with a few changes
 
Last edited:
Question - fishing macro

Users who are viewing this thread

Back
Top
Cart