Search found 76 matches

by zanomo
Mon Apr 30, 2007 8:33 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Farming Macro
Replies: 63
Views: 19875

May be:

Code: Select all

Sub Main

/declare mob  string outer ${param0}
/declare loot string outer ${param1}
...
by zanomo
Sat Dec 23, 2006 9:55 pm
Forum: MQ2::Macros::Requests
Topic: begging
Replies: 8
Views: 4125

Beg while you fight. those mobs that give xp will raise your beg skill. just add a short code to attack off, beg, small delay then turn attack back on. I maxed all my bots without even noticing...
by zanomo
Wed Nov 22, 2006 8:41 am
Forum: MQ2::Macros::Requests
Topic: Berserking macs
Replies: 13
Views: 5973

lol
by zanomo
Mon Oct 16, 2006 3:27 am
Forum: MQ2::Macros::Help
Topic: how to cancel buffs?
Replies: 7
Views: 3550

Here's something you could look into: Check if Aura is in the Buff window or Song window or Short Buff window and revise accordingly.
by zanomo
Thu Sep 21, 2006 12:47 am
Forum: MQ2::Bug Reports
Topic: WTF MQ2 Broken!?! on 18Sept2006
Replies: 84
Views: 12189

help, why cant i get mq2 to work ? i get, incorrect client version ? There was a new patch today and the eqgame.exe was updated. The MQ2 and EQ versions must match. Sometimes takes a few days to get things working again depending on how much sony changed stuff in thier update. This must be your fir...
by zanomo
Thu Sep 07, 2006 1:44 am
Forum: MQ2::Macros::Help
Topic: Simple snare bot assistance
Replies: 63
Views: 5748

Your basic logic is OK and based on your description, the logic should be: Wait until a <NEW> assist target is acquired, Snare it once, If snared successful, go back to wait. What's missing in your old logic is the check for new target. The resulting codes (removing the unecessary lines) would be: #...
by zanomo
Mon Jul 31, 2006 2:43 am
Forum: MQ2::Macros::Requests
Topic: Lookin for an Enchanter Macro
Replies: 23
Views: 6843

2. need it to scan area for adds and tash and mezz all that are not ingaged ( for those damn tanks that always want to split mobs )
Remember to register the mez'ed mob and re-mez when the timer is up.
by zanomo
Fri Jul 21, 2006 8:23 am
Forum: MQ2::Macros::Requests
Topic: Hunter macro for Wizard or Ranger, low level (20-50)
Replies: 15
Views: 6689

Zanomo, I hope you're just being funny, though I'm sure he'd love that as well... I have my interrupt-priority driven macros. :wink: Sub Set_Priority /declare I int local /declare J int local /declare TEMP_PRI string local /declare TEMP_COM string local /declare TEMP_REQ string local /declare TEMP_...
by zanomo
Tue Jul 18, 2006 10:15 am
Forum: MQ2::Macros::Requests
Topic: Hunter macro for Wizard or Ranger, low level (20-50)
Replies: 15
Views: 6689

in addition, please have it to run to merchant, sell the loot, then go back to hunt. Make it buy the proper spell for the caster would be nice too.
by zanomo
Fri Apr 21, 2006 12:36 am
Forum: MQ2::Bug Reports
Topic: AA Structure off?
Replies: 2
Views: 1727

AA Structure off?

strange issue on ${Me.AltAbilityReady[AltAbilityName]}, it works fine on some of the characters but always return NULL for enchanter class. doing a /aa list timers will give full list for other characters while for enchanter, will only give a partial list with lots of AA missing. Also ${Me.FreeBuffS...
by zanomo
Fri Mar 31, 2006 10:21 am
Forum: MQ2::Macros::Requests
Topic: Macro that detects other MQ2 users?
Replies: 12
Views: 4638

Code: Select all

/if (${Spawn[ID].Type.Equal[MQ2User]}) {
    /echo MQ2 User detected
}
by zanomo
Mon Mar 27, 2006 2:30 pm
Forum: MQ2::Macros::Help
Topic: Detect /keypress foward
Replies: 23
Views: 2397

perhaps you wanted to detect movements? if so, try /if (${Me.Moving}) or /if (${Me.Speed}!=0) however sometimes if you got stuck Me.Moving and Me.Speed will show that you are moving or speed not equal to 0. In that case a more reliable way is to set a timer and calculate the distance from your exist...
by zanomo
Fri Mar 24, 2006 4:35 am
Forum: MQ2::Macros::Requests
Topic: track options
Replies: 3
Views: 1617

Tracking Quilamane in SK?
by zanomo
Wed Feb 15, 2006 7:34 am
Forum: MQ2::Macros::Snippets
Topic: Simple Self Heal Event
Replies: 9
Views: 4065

sorry, i didn't meant to compete for having the least line, just another way to code it. should have kept my mouth shut. :wink:
by zanomo
Wed Feb 15, 2006 3:33 am
Forum: MQ2::Macros::Snippets
Topic: Simple Self Heal Event
Replies: 9
Views: 4065

yet another cleaned version: :wink:

Code: Select all

#Event HealSelf         "[MQ2] healself"

Sub Event_HealSelf
:HealLoop
  /if (${Me.PctHPs} == 100)		/return
  /if (${Target.ID}!=${Me.ID})	/target myself
  /call cast "Heal Spell" gem2
  /goto :HealLoop
/return