This is a simple macro that does a popup in the middle of the screen with # of loots of a specific type, and warps to zone in if your getting mauled
Handy if you have cluttered bags and want to count # of a specific looted item without checking, or if you are in a group and someone else is doing the looting.
This is in case you missed the rezme DLL thread about the XML bug.
This mac will make you appear at your corpse if you are hovering
It will also reset your gravity and get rid of that annoying plugin that seems to crash you if you do this with it loaded. (if you dont have the plugin or use a different one that does the same thing remove/change the plugin line)
Handy if you have cluttered bags and want to count # of a specific looted item without checking, or if you are in a group and someone else is doing the looting.
Rich (BB code):
#event ouch "#*#Chunk of E#*#"
sub main
/declare icelootz global
/varset icelootz 0
:loop1
/doevents
/delay 10
/if (${Me.PctHPs}<50) {
/warp succor
/delay 5
/warp succor
/delay 5
/q
}
/popup ${icelootz} Ices Have Been Looted
/alt act 481
/goto :loop1
/return
sub event_ouch
/varcalc icelootz (${icelootz}+1)
/return
This is in case you missed the rezme DLL thread about the XML bug.
This mac will make you appear at your corpse if you are hovering
It will also reset your gravity and get rid of that annoying plugin that seems to crash you if you do this with it loaded. (if you dont have the plugin or use a different one that does the same thing remove/change the plugin line)
Rich (BB code):
sub main
/setgrav 0.4
/plugin mq2mmobugstools unload
/notify RespawnWnd RW_OptionsList listselect 2
/delay 5
/notify RespawnWnd RW_SelectButton leftmouseup
/return

