Search found 6 matches

by TheDroidUrLookingFor
Wed Apr 18, 2012 10:19 pm
Forum: MQ2::Macros::Help
Topic: Best way to check if Im dead?
Replies: 7
Views: 1987

Re: Best way to check if Im dead?

Wouldn't it just be:

Code: Select all


/if (${Me.Dead}) /call RezSubroutine

or 

/if (${Me.State.Equal[Dead]}) /call RezSubroutine

by TheDroidUrLookingFor
Wed Apr 11, 2012 2:41 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Farming Macro
Replies: 63
Views: 21344

Re: Farming Macro

Don't know if this will help you or not Droid but I've added in the line of sight flag to my /target lines to ensure my pets dont all go rambling off into various rooms of a dungeon and pulling 50 mob trains back on the group :) I am pretty sure you just tag 'los' without quotes on the end of the /...
by TheDroidUrLookingFor
Wed Apr 11, 2012 2:11 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Farming Macro
Replies: 63
Views: 21344

Re: Farming Macro

Here is the code I use for finding the closest spawn I want and then kill it with just melee. I am using MQ2MoveUtils and MQ2Melee but those parts could be removed and replaced with code to work for those that don't have it. /killthis is from MQ2Melee and all the /stick commands which make your life...
by TheDroidUrLookingFor
Sat Apr 07, 2012 6:30 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Farming Macro
Replies: 63
Views: 21344

Re: Farming Macro

So, I finally ran that code I posted for group buffing. Seems you can't read group buffs like I was trying. So here is what I do in my druid pl script. With my PL script when it first starts it buffs all group members. Once those buffs fade the event below picks it up. #include spell_routines.inc #e...
by TheDroidUrLookingFor
Fri Apr 06, 2012 3:59 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Farming Macro
Replies: 63
Views: 21344

Re: Farming Macro

So I believe this would work for basic levels/AA gained... still at work so can't test it. If I recall there is a include in the VIP forums to do this. #event XPTRACKER "#*#You gain experience!!#*#" #event XPTRACKER "#*# You gain party experience#*#" #event XPREPORT "#*# rep...
by TheDroidUrLookingFor
Fri Apr 06, 2012 11:38 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Farming Macro
Replies: 63
Views: 21344

Re: Farming Macro

Things I am still wanting to add: - Mob exclusion list - Buff cycle - Auto-accept rez - XP tracker Haven't tested the code below but I believe it would work for group buffing. I assumed that you can get your group member's buff ID's like you can get them for yourself. I am at work currently but whe...