WIKI Edit: http://www.macroquest2.com/wiki/index.p ... e_Movement
My macro seems to just stall out sometimes until I move the mouse, but especially if I click either right or left, it picks right back up. It always stalls in the combat sub so I'm just submitting that and the main for suggestions why that's happening.
Code: Select all
#turbo
#Include spell_routines.inc
Sub Main
/declare brells timer outer 0
/declare vom timer outer 0
/declare divine timer outer 0
/declare session timer outer 0
/varset session 20000s
:mainloop
/if (!${session}) /call Endmacro
/if (!${brells}) /call Brells
/if (!${vom}) /call Vom
/if (!${divine}) /call Divine
/if (${Me.PctHPs}< 85) /call Healup
/if (${Me.PctMana}< 85) /call Medup
/sit off
/delay 5
/keypress f8
/if (${Target.ID} && ${Target.Type.NotEqual[PC]}) /call Combat
/goto :mainloop
/return
Sub Combat
/if (${Target.Type.Equal[PC]}) /keypress f8
/attack on
/call cast "stun"
/call cast "cease"
:combatloop
/face
/if (${Target.ID} && ${Target.Type.NotEqual[PC]}) /goto :combatloop
/return
maybe targetting a corpse? perhaps I'm smashed into wall?
Pantz



