#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