Kill and loot (specific items) macro?

chris032188@

New member
Joined
Feb 27, 2022
Messages
10
Reaction score
0
Points
1
Rof2 client - does anyone have a simple run to monster, melee to death, then loot certain items?
 
I certainly do, driven by an INI. Let me get around to documenting it and removing all my other dependencies from it.
 
  • Like
Reactions: EQDAB
Shoot me a message here on on Discord. Preferably Discord.
 
  • Like
Reactions: EQDAB
You actually want to run to a mob, or do you have the rof2 warp build and dont mind doing that?
 
  • Like
Reactions: EQDAB
Hunter macros were normally the go to for something like this, but you can do up a pretty quick and easy macro to do it like so
Code:
Sub Main
/echo Starting half ass kill everything in zone macro
/target clear
/delay 5
:KillAgain
/target npc
/delay 5s ${Target.ID}
/if !{$Target.ID} {
/echo no target ending macro
/end
}
/navi target
/delay 2s
/delay 30s !${Me.Moving}
/if (${Target.Distance}<50) {
/killthis
}
/goto :KillAgain

Obviously you'd have to slowly build upon it.
 
  • Like
Reactions: EQDAB
I am currently using the Farm macro, which works great for killing things, i just wish there was a way to make it loot after every kill. Any way to make that happen ?
 
  • Like
Reactions: EQDAB
Advloot takes a while to populate but does work well once setup.
 
  • Like
Reactions: EQDAB