an idea for a good macro [Request Fulfilled]

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

Moderator: MacroQuest Developers

User avatar
Madman
a ghoul
a ghoul
Posts: 144
Joined: Wed Jun 26, 2002 4:16 pm

an idea for a good macro [Request Fulfilled]

Post by Madman » Wed Aug 21, 2002 7:45 pm

I know there are many warriors and rouges out there. Have any of you ever thought of finding a place to jump off of repedadly untill you are low on life and then stop jumping and bind wounds over and over. This will allow warriors to practice bind wound and rouges to build up skill in safe fall and bind wound. I have already locate the place i plan on practicing this and have a skeleton script that I have started but I am by no means a scripter. So I thought I would throw out the Idea and see if I am trying to recreate the wheel and it has already been done or should I continue writing this script.


Thanks
Madman

Magnus
a ghoul
a ghoul
Posts: 85
Joined: Sun Aug 11, 2002 3:50 pm

Post by Magnus » Wed Aug 21, 2002 8:49 pm

I fire up the Necro...Lich... and sit the rogue there with bags full of bandages... works great and the script is simple...Oh, and there's a Safefall macro floating around too.


Mag

powerspike
a ghoul
a ghoul
Posts: 80
Joined: Sun Aug 11, 2002 11:40 pm
Location: Australia
Contact:

Post by powerspike » Wed Aug 21, 2002 9:19 pm

if you have 2 accounts or something you can get the characters to dual each other as well, when low on health stop and bandage themselfs or each other.

User avatar
Madman
a ghoul
a ghoul
Posts: 144
Joined: Wed Jun 26, 2002 4:16 pm

Post by Madman » Wed Aug 21, 2002 9:51 pm

1 computer 1 acct thats why i never macro for money main thing i use mq for is the /whotarget /who corpse and well thats about it

Xaanin
a lesser mummy
a lesser mummy
Posts: 66
Joined: Fri Jun 28, 2002 6:41 am

Post by Xaanin » Thu Aug 22, 2002 4:28 am

Hmm, how about this:

Code: Select all

#include routines.mac
#define lavaloc entercordshere
#define bindloc entercordshere
#define bindability enterabilityslothere
#define bindmax entermaxpercentyoucanbindtohere

Sub Main
/varset v10 bindmax
/varset v11 bindslot
:lavaloc
/call GotoLoc lavaloc
/if n $char(hp,pct)>20 /goto :lavaloc
/if n $char(hp,pct)<20 /call GotoLoc bindloc
/call bindsub
/goto :lavaloc
/return

Sub bindsub
:bind
/if n $char(hp,pct)<$v10 {
                                        /doability $v11
                                        /delay 50
                                        /goto :bind
                                     }
/return
I have no idea if the above works, just something I thought out on the fly =)

The Macro uses the lava pits in Lavastorm to loose health, so you will have to change the defines in the beginning to fit your preferences.

Edit: True Powerspike, fixed it to be /goto :lavaloc instead.
/goto :bind is also fixed now...

Oh and I'm not sure what the delay needed for bind wounds is, so it will probably have to be modified.
Last edited by Xaanin on Sun Aug 25, 2002 3:33 am, edited 4 times in total.

powerspike
a ghoul
a ghoul
Posts: 80
Joined: Sun Aug 11, 2002 11:40 pm
Location: Australia
Contact:

Post by powerspike » Thu Aug 22, 2002 5:35 am

nice Xaanin, but shouldn't the "/goto :lava" be "/goto :lavaloc" ??

kndzakndza
orc pawn
orc pawn
Posts: 12
Joined: Wed Aug 21, 2002 2:59 am

Post by kndzakndza » Thu Aug 22, 2002 6:25 am

I to have seen the safe fall macro out there, I havent tried it, but my husband used it with his monk in EC by the tunnal...
he said it worked and he liked it ! :)

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

Post by Valerian » Thu Aug 22, 2002 12:12 pm

/goto :bind also has no label to jump to

powerspike
a ghoul
a ghoul
Posts: 80
Joined: Sun Aug 11, 2002 11:40 pm
Location: Australia
Contact:

Post by powerspike » Thu Aug 22, 2002 7:34 pm

Valerian : there is a :bind label 4 lines up from the /goto :bind

if it was written in the post window tab doesn't help with formatting and puts code kinda outta wack :/

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

Post by Valerian » Fri Aug 23, 2002 1:27 am

Ah, my bad, I totally missed that. That'll teach me to read this forum when sleepy :roll: