Help with ground spawns

Help section from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

[40oz]
a hill giant
a hill giant
Posts: 156
Joined: Tue Nov 12, 2002 12:14 pm

Help with ground spawns

Post by [40oz] » Sat Jun 14, 2003 4:28 am

I can't figure out how to target or pick up ground spawns.

At this point, the only thing i can think to do is get the EXACT locations of the ground spawn(s) I want to pick up, go to those exact coordinates, look straight down, and press the use center screen button to pick it up.

I'd rather however, check to see if the ground spawn(s) are up, get close enough to pick them up, then drop them in the auto inventory spot.

I've been playing with the /target command and every trick I can think of to be able to target and pick up a ground spawn in a macro. If anyone has any ideas let me know.

Mckorr
Developer
Developer
Posts: 2326
Joined: Fri Oct 18, 2002 1:16 pm
Location: Texas

Post by Mckorr » Sat Jun 14, 2003 10:35 am

/itemtarget groundspawn

:: run to target ::

/click left item
/delay 3s
/click left auto


Delay might be higher or lower depending on machine. It needs to be in there because /click left target has to search a section of your screen, and that can take some time.
MQ2: Think of it as Evolution in action.

Valerian
a grimling bloodguard
a grimling bloodguard
Posts: 709
Joined: Sun Jul 28, 2002 3:29 am

Post by Valerian » Sat Jun 14, 2003 12:19 pm

better way is this:

/itemtarget groundspawn

:: run to target ::

/click left item
:WaitForItem
/delay 1
/if $cursor()==NULL /goto :WaitForItem
/click left auto
:WaitForDrop
/delay 1
/if $cursor()==TRUE /goto :WaitForDrop

rinse and repeat