Welcome, Guest. Please login or register.
Did you miss your activation email?
May 10, 2024, 02:55:52 am *

Login with username, password and session length
  Show Posts
Pages: [1] 2 3
1  General Category / General Discussion / Re: 2019 Bugs/Issues thread on: March 29, 2019, 07:57:13 pm
When Paladin Healing Class Augment 10 is placed in Orthanos' Lamination Blade of Fire the click effect Warmth of Light VI is no longer useable. When clicked it gives error message "Item is out of charges"

its been submitted to rent/akka multiple times... not fixed yet... i got 5 toons that can't use their epic anymore Sad
2  General Category / General Discussion / Re: MQ2 macros on: January 07, 2019, 09:13:20 pm
That code gave me an headache ... ouffff not sure what ya trying to achieve there!
3  General Category / General Discussion / Re: Expeditions on: January 06, 2019, 12:43:37 pm
wish u could trade back augs for next one in the lore family...

the one that proc a rune generates more aggro on long term  then the hatestomp itself... i would combine those 2 in 1... and make one with a simple dd on it as an alternative for non tanking plate class... but thats my 2 cent...

yes for an overhaul..

4  General Category / Updates / Re: EZ Christmas 2018 on: January 01, 2019, 02:23:09 am
Happy new year everyone!
5  General Category / General Discussion / Re: Holidays events? on: December 23, 2018, 05:24:22 pm
I wish for halloween and double loot Smiley
but not sure we  can get both

lots of people complains during last hw

just hoping we get something

thanks akka
6  General Category / Quest and Guides / Re: BuyAA -- for the lazy people on: December 08, 2018, 09:47:06 pm

added file attachment, just download and save in your macroquest/macro folders...

this version have 1 extra lines that would turn on fast aa purchase before attempting to purchase aa, so you dont have to worry about that anymore... thanks dimur for teaching me how to do it...

Hardtime
7  General Category / Quest and Guides / Re: Quality of Life macro commands on: December 08, 2018, 09:43:18 pm
Line 1: /tar corpse
Line 2: /docommand ${If[${Target.Distance}<10,/loot,/multiline ; /docommand ${If[${Target.Distance}<100,/stick 5,]} ; /bc Moving closer to corpse]}
Line 3: /notify LootWnd LW_LootAllButton leftmouseup
Line 4: /notify ConfirmationDialogBox No_Button leftmouseup
Line 5: /popup ${SpawnCount[radius 70 corpse]} corpses left to loot



Cant get this to work for me doesn't click loot all button
[/quote]

not sure what u are trying to achieve but u can download macro movetolootall posted in another thread and make this hotkey
Code:
Line 1: /mac movetolootall

it does everything you are looking for Wink
8  General Category / General Discussion / Re: New Tool: Window Switcher on: December 02, 2018, 06:48:16 am
can u make your window support up to 36 or 42 toons? i dont see any scrolldown or anything Smiley

yes i do run that many toons not just asking for fun!

nice works!

Hardtime
9  General Category / Suggestions / Re: Broken Stuff Repair Shop v2.0 on: December 01, 2018, 08:16:03 pm
When Paladin Healing Class Augment 10 is placed in Orthanos' Lamination Blade of Fire the click effect Warmth of Light VI is no longer useable. When clicked it gives error message "Item is out of charges"

Well Othanos Lamination Blade of Fire is BUGGED
I have same issue with 3 pally, 1 shadow knight and 1 bard... they can't click their epic anymore out of charges...

please their epic are broken! help help!

Hardtime
10  General Category / Updates / Re: EZ Thanksgiving 2018 on: November 24, 2018, 04:28:39 am
Yes come and loot it Tongue

Hardtime
11  General Category / General Discussion / Thanksgiving? on: November 19, 2018, 06:09:36 am
Was wondering if we normally have double loot for thanksgiving weekend? black friday etc? that could be awesome!

Thanks
Hardtime
12  General Category / Quest and Guides / UC2 - Anguish Augment Handing on: November 18, 2018, 03:58:36 pm
I wrote a little somethings to turn your anguish augments for uc2... works well 99% of the times.... just need to be close to the augment beholder guy and do /mac uc2 it will turn all anguish augment found for ya!

uc2.mac
Code:
Sub Main
    /declare eName[21] string local

    /varset  eName[1] Anguish Augment Ear
    /varset  eName[2] Anguish Augment Head
    /varset  eName[3] Anguish Augment Face
    /varset  eName[4] Anguish Augment Neck
/varset  eName[5] Anguish Augment Shoulder
/varset  eName[6] Anguish Augment Arms
/varset  eName[7] Anguish Augment Back
/varset  eName[8] Anguish Augment Wrist
/varset  eName[9] Anguish Augment Hands
/varset  eName[10] Anguish Augment Finger
/varset  eName[11] Anguish Augment Chest
/varset  eName[12] Anguish Augment Legs
/varset  eName[13] Anguish Augment Waist
/varset  eName[14] Anguish Augment of HP
/varset  eName[15] Anguish Augment of HP Regen
/varset  eName[16] Anguish Augment of Mana
/varset  eName[17] Anguish Augment of Mana Regen
/varset  eName[18] Anguish Augment of Damage Shield
/varset  eName[19] Anguish Augment of Shield
/varset  eName[20] Anguish Augment Feet


    /squelch /target "Augment Collector"
    /delay 5s ${Target.CleanName.Equal[Augment Collector]}
    /say accept

    /declare i int local 0
    /declare e int local 0
    /declare c int local
    /declare n string local

:nextitem
/varcalc e ${e} + 1
/if (${e}<21) /goto :turnmore
    /if (${Window[GiveWnd].Open}) {
        /notify GiveWnd GVW_Give_Button LeftMouseUP
        /delay 5s !${Window[GiveWnd].Open}
/endm
}


:turnmore
/varset n ${eName[${e}]}
/varcalc c ${FindItemCount[=${n}]}
/if (!${c}) /goto :nextitem

/delay 1
/if (${Cursor.ID}) {
/autoinv
/delay 5s !${Cursor.ID}
}

/ctrl /itemnotify ${FindItem[=${n}].InvSlot} LeftMouseUp
/delay 5s ${Cursor.ID}
/click left target
/delay 5s !${Cursor.ID}
/delay 2s ${Window[GiveWnd].Open}

/varcalc i ${i} + 1
/if (${i}>3) {
/notify GiveWnd GVW_Give_Button LeftMouseUP
/delay 5s !${Window[GiveWnd].Open}
/varcalc i 0
/delay 1s
}

/goto :turnmore

/return

enjoy Hardtime!
13  General Category / Quest and Guides / Re: T1-T2 Emissary Farm on: November 16, 2018, 04:23:44 pm
Someone report that he have to open all his bags for the macro to see correctly the crystals...

14  General Category / Quest and Guides / Re: T3-T4 AirClicker macro on: November 10, 2018, 11:41:00 pm
I think u need to have your bag 8 empty... last one bottom right... to run that combine macro...

and i think it needs to be a magic box also...

but thats been a while
15  General Category / Quest and Guides / T3-T4 AirClicker macro on: November 09, 2018, 09:42:55 am
Simple macro that must be run on an alt on airplane that will click tokens for ya... till it ran out Smiley
Similar to my t1 emissary macro Smiley

airclicker.mac

Code:
Sub Main
    /declare AirTokens[15] string local
    /varset AirTokens[1]  "The Lightbringer"
    /varset AirTokens[2]  "Prince of Darkness"
    /varset AirTokens[3]  "The Tranquil"
    /varset AirTokens[4]  "The Faceless"
    /varset AirTokens[5]  "Oceanlord"
    /varset AirTokens[6]  "Split Paw"
    /varset AirTokens[7]  "H-One"
    /varset AirTokens[8]  "Rainkeeper"
    /varset AirTokens[9]  "Prime Healer"
    /varset AirTokens[10] "Plaguebringer"
    /varset AirTokens[11] "Prince of Hate"
    /varset AirTokens[12] "Burning Prince"
    /varset AirTokens[13] "Mother of All"
    /varset AirTokens[14] "The Warlord"

/declare t int local 0
/declare i int local
/declare f int local
/declare c int local

:count
    /if (${Zone.ShortName.NotEqual[airplane]}) {
   /echo You are not in AirPlane... Get There and Rerun!
   /endm
}

/varcalc t 0
/varcalc f 0
/for i 1 to 14 do
   /varcalc c ${FindItemCount[${AirTokens[${i}]}]}
/if (${c} >0) {
      /varcalc t ${t} + ${c}
/if (!${f}) /varset f ${i}
}
/next i

/echo AirClicker.mac -> Found ${t} Tokens
/if (!${t}) {
   /echo AirClicker.mac -> You dont have any left... grab more!!!
   /endm
}

:again
/delay 1
/doevents
        /if (${Cursor.ID}) /autoinv
/if (${SpawnCount[npc loc -530 -210 radius 100]}>1) /goto :again
/if (!${Cast.Ready[]}) /goto :again
        /delay 5
        /rs Clicking ${AirTokens[${f}]} ${t} Tokens Left.
        /nomodkey /itemnotify ${FindItem[${AirTokens[${f}]}].InvSlot} rightmouseup"
/goto :count

/return

enjoy! and hope you kill & loot fast enough!!!!
did about 420 tokens in 1h Smiley

Hardtime!
Pages: [1] 2 3
TinyPortal v1.0 beta 4 © Bloc