(02-22-2016, 10:22 PM)kaiquegabriel Wrote: Use this macro:
Code:10000 {DropGPs} ITEMID:=3031 X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Capacity()<=40 Map.Thrown(!ITEMID!, 100, !X!, !Y!, !Z!)
This macro work with gold coin (ID 3031) you must edit only ID and name of macro. Works good here.
If works for you, please rep me.
Thanks a lot, cya!
And amount in Map.Thrown command...
here I had my macro on serpents spawns, to throw on ground Crown armor If too little cap to pickup Merc sword,
or to throw Merc sword if not enough cap to pickup noble axe
Maybe it will give u some ideas, how to make macro that you need on your own
[macro]0 {drop loot}
Xa:=Self.X()
Ya:=Self.Y()
Za:=Self.Z()
merc:=Misc.ItemCountEx(7386)
crown:=Misc.ItemCountEx(3381)
icap:=Self.Capacity()
!icap!>38 [else1]
!icap!<68
!crown!<>0 [else2]
Map.Thrown(3381, 1, !Xa!, !Ya!, !Za!)
exit()
{else2}
!merc!<>0
Map.Thrown(7386, 1, !Xa!, !Ya!, !Za!)
exit()
{else1}
!icap!<38
!crown!<>0 [else3]
Map.Thrown(3381, 1, !Xa!, !Ya!, !Za!)
exit()
{else3}
!merc!<>0
Map.Thrown(7386, 1, !Xa!, !Ya!, !Za!)
exit()
Exit()
[/macro]
I used it as manual, because I did it in kind of extraordinary way.
But u can make it Auto ,