e3 7.0 + macroquest2 setup- updated 10/1/2018, github fixes 9/30/2023

Discussion in 'E3' started by cream, Sep 26, 2017.

  1. chance

    chance Enraged War Boar

    Messages:
    732
    e3 Includes/e3_Basics.inc
    Change Request :
    From :
    /echo Valid Slots: charm, leftear, head, face, rightear, neck, shoulder, arms, leftwrist, rightwrist, ranged, hands, mainhand, offhand, ammo, back, leftfinger, rightfinger, chest, legs, feet, waist, powersource, fingers, wrists

    To:
    /echo Valid Slots: charm, leftear, head, face, rightear, neck, shoulder, arms, leftwrist, rightwrist, ranged, hands, mainhand, offhand, ammo, back, leftfinger, rightfinger, chest, legs, feet, waist, powersource, fingers, wrists, ears
     
    Last edited: Feb 1, 2019
  2. Hive

    Hive Froglok Krup Watcher

    Messages:
    340
    Small thing on the same note.

    /fds wrists gives the format: "bot says: - wrist slots - left wrist: itemname - rightfinger: itemname
    but it gives the correct slots (left and right wrists)
     
  3. Aliboo

    Aliboo A Griffin

    Messages:
    230
    [Deleted]
    I was doing something wrong on my end.
     
    Last edited: Nov 3, 2018
  4. chance

    chance Enraged War Boar

    Messages:
    732
  5. cream

    cream GM Staff Member

    Messages:
    239
    fixed
     
  6. cream

    cream GM Staff Member

    Messages:
    239
    updated clickit range tolerance so RSS etc will work properly again. code in GIT
     
  7. Nfalcon

    Nfalcon Orc Pawn

    Messages:
    1
    Quick question, does this E3/mq2 folder go into the PEQ folder?
     
  8. chance

    chance Enraged War Boar

    Messages:
    732
    Can go anywhere you want . Put it somewhere with read / write /modify ability on its own folder.
     
  9. Hive

    Hive Froglok Krup Watcher

    Messages:
    340
    EDIT2: I think it was a special case that this didn't work for me. It's worked well since this.
    My bards do not use their epic 2.0 clicks during burns. I checked their MQ window and neither had the echo saying that they were casting their epic.

    Code:
    Quick Burn=Blade of Vesagran
    EDIT: Sometimes this works and sometimes it does not. Just had it work perfectly for all bots bards included.
     
    Last edited: Jan 26, 2019
  10. chance

    chance Enraged War Boar

    Messages:
    732
    Are you using /epicburns
     
  11. Hive

    Hive Froglok Krup Watcher

    Messages:
    340
    It was with /quickburns and /longburns. The few times it hasn't worked it was with quick, but I think it was a special case. I've used it several times since then and it has worked every time. /epicburns also works every time. So probably can ignore.
     
  12. Hive

    Hive Froglok Krup Watcher

    Messages:
    340
    Can this be included in the E3 build? trpling made it and posted it in this thread. I use it every time I play and I see people ask for something like it on the forums and in ooc all the time.

    Code:
    #EVENT lootItem "<#1#> Loot Item #2# #3# #4# #5#"
    #EVENT lootItem "<#1#> Loot Item #2# #3# #4#"
    |pass charname corpseID and itemID and it will move to a corpse to loot the item you gave it
    SUB EVENT_lootItem(line, ChatSender, corpseID, charName, itemName, equipSlot)
       |only the person whose name we passed will do this
       /declare full_item_name local
       /if (!${Me.CleanName.Equal[${charName}]}) /RETURN
          |check the distance
       /if (!${Bool[${Spawn[corpseID].Distance.Int} < 100]}) { /RETURN
          |move to the corpse
          /target ID ${corpseID}
          /delay 7
          /squelch /stick 10
          /delay 5s
          /squelch /stick off
          /click rightclick target
          /delay 1s
          |check if window open
          /if (${Corpse.Open}) {
             /if (${Me.FreeInventory}) {
                |Gets the full item name
                /varset full_item_name ${Corpse.Item[${itemName}]}
                /if (${Corpse.Item[${itemName}].Lore} && ${FindItemCount[${Corpse.Item[${itemName}]}]}) {
                   /docommand ${ChatToggle} Item is Lore ${Corpse.Item[${itemName}]}
                   /return
                } else {
                   /itemnotify ${Corpse.Item[${full_item_name}].InvSlot} leftmouseup
                   /delay 5
                   |used for debug
                   /if (${Corpse.Item[${itemName}].NoDrop}) {
                      /notify ConfirmationDialogBox CD_Yes_Button leftmouseup
                      /delay 15
                      /docommand ${ChatToggle} Looting ${full_item_name}
                   }
                   /notify LootWnd LW_DoneButton leftmouseup
                   /delay 5
                   /if (${Select[${equipSlot},charm,leftear,head,face,rightear,neck,shoulder,arms,back,leftwrist,rightwrist,ranged,hands,mainhand,offhand,leftfinger,rightfinger,chest,legs,feet,waist,powersource,ammo]}) {
                      /autoinventory
                      /delay 2s
                      /call SwapItem "${full_item_name}" ${equipSlot}
                      /docommand ${ChatToggle} Equiping ${full_item_name} to ${equipSlot}
                   } else {
                      /delay 3
                      /autoinventory
                      /RETURN
                   }
                }
             }
    
          } else {
             /docommand ${ChatToggle} Corpse is not open will not loot
          }
      
       } else {
          /docommand ${ChatToggle} Corpse is too far get closer
       }
     
    /RETURN
     
  13. chance

    chance Enraged War Boar

    Messages:
    732
    MQ2 Original Download Link Broken
     
  14. r33lxbondx

    r33lxbondx Orc Pawn

    Messages:
    4
    do you know an alternate place to download this mq2 file?
     
  15. chance

    chance Enraged War Boar

    Messages:
    732
  16. r33lxbondx

    r33lxbondx Orc Pawn

    Messages:
    4
  17. mackal

    mackal Pyrilen Fireblade

    Messages:
    2,267
    Works here.
     
  18. chance

    chance Enraged War Boar

    Messages:
    732
    Didn;t for about 12 hours .. Think it was a change in google that was funky.
     
  19. mackal

    mackal Pyrilen Fireblade

    Messages:
    2,267
    Google confirmed funky. Although not sure you meant an 'n' there ;)
     
  20. mx4life

    mx4life Orc Pawn

    Messages:
    4
    Thanks for this massive script.

    I wonder if the source for the MQ2 that is included in the download is available somewhere?

    I'm having problems with NetBots reporting the wrong PctHPs after a bot has been buffed with an HP buff, making healers spam healing forever. I have temporary replaced all NetBots[botnam].PctHPs with Spawn[ID NetBots[botname].ID].PctHPs, but I have a feeling that is negative for the performance.

    I've been doing lots of small fixes and some major additions to my copy of E3 to better make it work for my way of playing. Wonder if there is any interest in my changes?
    My changes are available at https://github.com/wmrojer/Macros
     
    • Like Like x 2