Aza 0 Posted October 5, 2021 Share Posted October 5, 2021 Lf macro for exeta res if mobs in distance x use exeta res Link to post Share on other sites
Tokumei 5 Posted November 2, 2021 Share Posted November 2, 2021 Not sure if this is what you're after. I have NOT tested it, so please let me know how it goes. local distance = 1 -- Distance from player to count mobs in local mobCount = 1 -- Minimum amount of mobs inside distance local spell = "exeta res" -- Spell to cast if conditions are true local globalCD = 2000 -- Global cooldown of spells/actions (1000 = 1 second) if #g_game.getMonstersAround(distance) >= mobCount then g_game.talk(spell) sleep(globalCD,globalCD+200) end auto(100,200) - Tokumei Link to post Share on other sites
Recommended Posts