This is probably stupid but..

Macro requests from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

ExTiz
orc pawn
orc pawn
Posts: 17
Joined: Mon Oct 21, 2002 6:49 pm

This is probably stupid but..

Post by ExTiz » Wed Oct 23, 2002 5:20 am

Is it possible to make something that lets you drag a corpse from anywhere in the zone? just like you can target anything/follow anything ect... Not sure if it would even be considered a macro, just wondering

Oid
a snow griffon
a snow griffon
Posts: 416
Joined: Thu Oct 17, 2002 3:26 am
Contact:

Post by Oid » Wed Oct 23, 2002 6:02 am

No, not a macro. And I believe this was fixed quite some time back anyways.

lifewolf
a ghoul
a ghoul
Posts: 143
Joined: Fri Oct 18, 2002 6:29 pm

Post by lifewolf » Sat Oct 26, 2002 8:13 pm

Cant drag a corpse from out of its normal range radius and I dont *think* you can drag it through a wall using MQ where it normally wouldent let you.

Lurker_005
a lesser mummy
a lesser mummy
Posts: 51
Joined: Thu Oct 17, 2002 12:08 pm

Post by Lurker_005 » Sun Oct 27, 2002 12:56 pm

You know, a macro that did drag the corpse every time you got further than say 80% of the dragable dist from the corpse, and also if you turned more than say 30 deg would be nicer than spamming /corpse by hand all the time.

User avatar
rizwank
Huggle Police
Huggle Police
Posts: 524
Joined: Tue Jul 23, 2002 12:07 am
Contact:

Post by rizwank » Mon Oct 28, 2002 2:28 am

well thats doable.. and quite useful!

find your distance to it
and do /corpse whenever dist is too far.
#macroquest op
Macroquest Official Documentarion
Macroquest Board Moderator
All around cool guy

[img]http://medicomuerte.users.btopenworld.com/images/fairy_bounce08.gif[/img]

theafkxper
a hill giant
a hill giant
Posts: 207
Joined: Sun Sep 08, 2002 6:41 pm

Post by theafkxper » Mon Oct 28, 2002 9:50 pm

Odd this topic started, as i just decided to embark on this last night, it dosent work as of yet, but the idea was to have it drag anyones corpse to anyone, and it goes to the corpse and runs to the person quite well, just need to get it to grab the corpse...

Code: Select all

|
| corpseget.mac
|   by theafkxper
|
|  Usage:  /macro corpseget <name of corpse> <who to bring it to>
|

Sub Main
  /call gotoit $p0
  /delay 0
  /face 
  /delay 0
  /call bringitback $p0 $p1
/return


Sub gotoit
/target corpse $p0
:Loop
      /if n $target(distance)>30 /sendkey down up
      /if n $target(distance)<=30 {
        /sendkey up up
        /return
      }
      /face nopredict
      /delay 0
/if "$target()"=="TRUE" /goto :Loop



Sub bringitback
:Loop
      /target $p1
      /corpse $p0
      /if n $target(distance)>30 /sendkey down up
      /if n $target(distance)<=30 {
        /sendkey up up
        /return
      }
      /face nopredict
      /delay 0
/if "$target()"=="TRUE" /goto :Loop
/return
dont laugh too hard, i only spent 5 mins on it waiting for my corpse to pop back out of PoN (damn that big tree guy!)

-afk