Need simple loot macro

Status
Not open for further replies.

SneakyDaddy

Lifetimer
Joined
Apr 22, 2006
Messages
275
Reaction score
0
Points
16
I need a macro that will...


:target
/tar Specific Mob's corpse

If no target wait 30 sec then goto :target

/warp target

/loot target

/warp safe

/sit

/endmac

The mac needs to end after looting sig because there could be more than one toon trying to get sig. If loot fails because someone is currently looting then the toon would need to /warp safe and start :target again.

My self made macs can loot but they do not handle someone else looting consistantly.

I would use this for getting signets in instanced zones. The macs for killing the named and ph's are working great but I would like to be able to have a couple of toons sitting at the entrance waiting to loot the sigs.
 
I need a macro that will...


:target
/tar Specific Mob's corpse

If no target wait 30 sec then goto :target

/warp target

/loot target

/warp safe

/sit

/endmac

The mac needs to end after looting sig because there could be more than one toon trying to get sig. If loot fails because someone is currently looting then the toon would need to /warp safe and start :target again.

My self made macs can loot but they do not handle someone else looting consistantly.

I would use this for getting signets in instanced zones. The macs for killing the named and ph's are working great but I would like to be able to have a couple of toons sitting at the entrance waiting to loot the sigs.


man... this sounds like a Ninja loot macro...

fry.. if u don't want to post ninja loot macro's cause that hurt others... just remove the following code... have no clue about the rules of this sort of macros...

Code:
#Event Wait		"#*#someone is already looting that corpse#*#"

Sub Main
:gettarget
/tar Corpse
/If (${Target.ID}) {
        /warp t
        /delay 2s
	/echo Looting corpse
        /call Loot
} else {
       /Echo no corpse yet
       /delay 30s
       /goto :gettarget
}
/return

Sub Loot 
      /loot
      /delay 1s
      /doevents
      /echo looting
      /delay 1s 
      /itemnotify loot1 rightmouseup 
      /delay 1s 
      /notify ConfirmationDialogBox Yes_Button leftmouseup 
      /delay 1s 
      /itemnotify loot2 rightmouseup 
      /delay 1s 
      /notify ConfirmationDialogBox Yes_Button leftmouseup 
      /delay 1s 
      /itemnotify loot3 rightmouseup 
      /delay 1s 
      /notify ConfirmationDialogBox Yes_Button leftmouseup 
      /delay 1s 
      /notify LootWnd DoneButton Leftmouseup 
      /delay 1s 
      /notify LootWnd DoneButton Leftmouseup 
      /delay 2
      /warp s
      /echo Done... Warping Succor and Ending macro
      /end
/return 

Sub Event_Wait
/echo Someone else already looting... warpin to succor point and waiting 30seconds
/warp s
/delay 10s
/call Main
/return

This will do all things what yoou want... and loot the first 3 slots... hope i could help ya
 
What happens with this macro if you get denied the loot (because you weren't in the group that got the kill).

I assume you can't ninja loot with that unless people leave the corpse open without looting for the standard 2 min.
 
Status
Not open for further replies.