• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Is this right? (1 Viewer)

Jumjum5

New member
Joined
Dec 18, 2004
RedCents
20¢
I am trying to change my fishing macro so it will recast my pole and autoequip it if my pole breaks, but not sure if i got it right....plz tell me what i got wrong and how to fix it.

#turbo

#event BrokenPole "#*#You can't fish without a fishing pole, go buy one.#*#"
#event NoBait "#*#You can't fish without fishing bait, go buy some.#*#"

Sub Main
/cleanup
:Fish
/call CheckPole
/doability Fishing
/delay 65
/doevents

/if (!${Cursor.ID}) /goto :Fish

/if (${Cursor.Name.Equal[Tattered Cloth Sandal]}) {
/destroy
/delay 1s
} else {
/if (${Cursor.Name.Equal[Rusty Dagger]}) {
/destroy
/delay 1s
} else {
/call KeepItem
}
}
/goto :Fish
/return

Sub KeepItem
/if (${Cursor.Name.NotEqual[Fish Scales]}) /echo Caught ${Cursor.Name}
/notify InventoryWindow IW_CharacterView leftmouseup
/return

Sub CheckPole
/if (${Me.Inventory[mainhand].Name.Find[Brell's Fishin' Pole]}) /return
/echo You need to put your fishing pole in your primary hand.
/endm
/return

Sub Event_BrokenPole
/cast Fisherman's Companion
/return

Sub Event_NoBait
/endmacro
/return
 
Is this right?

Users who are viewing this thread

Back
Top