spell spam on mage

smith8454

Premium Member
Joined
Jun 24, 2009
Messages
731
Reaction score
101
Points
43
MMO,
My mage is spamming Velocity II and I have the following in my MQ2bot ini
UseMez=0
Auraif0=0
Mezif0=Velocity II
UsePet=1
PetReagentCheck=1
PetIllusionItem=Metamorph Wand-Cliknar
CustomPetSpell=Conscript of Water
 

Attachments

  • EQ000009.jpg
    EQ000009.jpg
    901.7 KB · Views: 8
Shaman buff Spirit of Tala Tek I think it is can no longer be overwritten by velocity, either buff block it or put in an if to check
 
MMO,
My mage is spamming Velocity II and I have the following in my MQ2bot ini
UseMez=0
Auraif0=0
Mezif0=Velocity II
UsePet=1
PetReagentCheck=1
PetIllusionItem=Metamorph Wand-Cliknar
CustomPetSpell=Conscript of Water

Hi smith, only way i have found a work around , is when you load bot see where the velocity is located , mine was Petbuff2 so once you find that goto the directory and look at server_charname.ini and put Petbuffif2=0 {your's maybe different }then save file once back in game /loadbot
.
 
In my case Velocity II is my petbuff 2, the following line stops the spam.

Code:
PetBuffIf2=!${Pet.Buff["Spirit of Tala'Tak"]}
 
  • Like
Reactions: zipit
how do i find this "pet buff"
what i did:
opened macroquest folder
went to macro's
Went to server_charname.ini
opened MQ2bot
replaced as follows.....
UseMez=0
Auraif0=0
Mezif0=0
UsePet=1
PetReagentCheck=1
PetIllusionItem=Metamorph Wand-Cliknar
CustomPetSpell=Conscript of Water
UsePetBuffs=0
Petbuffif2=0

restarted MQ2bot

STILL SPAMMING
 
when you load mq2bot you'll get a whole list of your abilities in the MQ window, for each spell, aa, etc etc etc.

from that you can see which number it is.

also your formatting is incorrect Petbuffif2=0 != PetBuffIf2=0
 

Attachments

  • Untitled.png
    Untitled.png
    30 KB · Views: 10
In my case Velocity II is my petbuff 2, the following line stops the spam.

Code:
PetBuffIf2=!${Pet.Buff["Spirit of Tala'Tak"]}
Hi Maximoh, where can i find info on how to make code lines like that to tweak my ini file if you would'nt mind to share that info thank you .
 
not totally up to date, but most of it is accurate. http://macroquest.org/wiki/index.php/Top-Level_Objects

You take the TLO like Me. then add the next refence such as Pet. then more a sub of pet to make the expression into something that either returns a number or a bool (true or false). ${Me.Pet.ID} ${Me.Pet.Focus} ${Me.Pet.Target.ID} ${Target.Slowed} ${Target.Buff[Spirit of Wolf].ID}
 
Last edited:
GRRRRR !!!!, I see spam when I activate MQ2, but how do I correct it?
what I did:
1. start MQ2up
2. looked in INI files and see MQ2bot, but got use pet buff= off (see attached)

I know it is an easy fix, but how? This pissing me off, and now I don't see the MQ2 window
maximoh
need a little help ( step by step ) on how to fix this
 

Attachments

  • bristle_Foaaniel.ini
    7.2 KB · Views: 3
Hi Maximoh, where can i find info on how to make code lines like that to tweak my ini file if you would'nt mind to share that info thank you .
Where do I put this code at. (not to computer lit).lol
 
Where do I put this code at. (not to computer lit).lol

Take a screen shot as I did of ingame bot startup routine showing your detected spells (these are not stored in the ini)

Alternatively if you do not wish to screenshot then if you run the following:

/bot debugging=1
/bot on
/bot debugging=0

then look in your mq2next/Logs folder for mq2bot_server_character, in that debug file you'll find the list of detected spells/aas etc.

you can then look for the PetBuffX:

Code:
[2022/04/04 13:24:59] [OnWriteChatColor:19045] - PetSpell: Conscription of Earth
[2022/04/04 13:24:59] [OnWriteChatColor:19045] - PetBuff0: Second Wind Ward V
[2022/04/04 13:24:59] [OnWriteChatColor:19045] - PetBuff1: Host in the Shell IV
[2022/04/04 13:24:59] [OnWriteChatColor:19045] - PetBuff2: Velocity II
[2022/04/04 13:24:59] [OnWriteChatColor:19045] - PetBuff3: Burnout XV
[2022/04/04 13:24:59] [OnWriteChatColor:19045] - PetBuff4: Iceflame Barricade

As we've seen before my Velocity is buff number 2. You need to add the line of code into your server_character.ini (which you attached) in your mqnext/config folder. As long as it's in the mq2bot section of the file I don't belive order is important.
 
Hi Maximoh, where can i find info on how to make code lines like that to tweak my ini file if you would'nt mind to share that info thank you .

I still use http://macroquest.sourceforge.net/includes/manual.php as my goto reference source for working out conditions if I'm not familiar with them. on top of that /echo is your friend in game, I validate my conditions as much as possible in game to rule out the possibility of screwing up :D