• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

need bst mac (1 Viewer)

jubie kid

New member
Joined
Jan 8, 2006
RedCents
i just need a macro that heal pet when he need it
and attack and mob and cast chimera blood on the mob
and change able to Assist if am in a group
i dont know anything about macro i was try to mess with poibeast but too much problem and only works in poi

wait slow too if i can and recast if rsisit...
and i need another marco that cast spells over and over to build skils
 
Re: Spell skill-up macro?

--------------------------------------------------------------------------------

This is what I have always used. Has always worked for me. I did not write it though. Just memorize whatever spells you want to use to train on (use lvl 1 spells or close to it for less mana use). Just mem one for each spell type starting in slot 1.
Rich (BB code):
Code:
#define MaxArcaneSkill 235 
#chat tell 
#event lang "tells you" 

#include SpellCast.inc 

Sub Main 

    /declare currentSpell 
    /declare maxSkill 
    /declare skillName 
    /declare spellName 
    
    /varset currentSpell 1 
    /varset maxSkill ${Math.Calc[${Me.Level}*5+5]} 
    /echo maxSkill=${maxSkill} 
    /if ( ${maxSkill} > 235 ) /varset maxSkill 235 

    /target myself 
    
    :nextSpell 
        /echo currentspell=${currentSpell} 
        /echo casting=${Me.Gem[${currentSpell}]} 
        
        /if ( ${Bool[${Me.Gem[${currentSpell}]}]} ) { 
            /varset skillName ${Me.Gem[${currentSpell}].Skill} 
            :castSpell 
                /doevents 
                /if ( ${Me.PctMana}<20) { 
                    /sit on 
                    /call MedBreak 
                } 
                /echo ${skillName}=${Me.Skill[${skillName}]} 
                /if ( ${Me.Skill[${skillName}]} >= ${maxSkill} ) { 
                    /varset currentSpell ${Math.Calc[${currentSpell}+1]} 
                    /goto :nextSpell 
                } 
                /call CheckGM 
                /call cast "${Me.Gem[${currentSpell}]}" 
                
                :checkCursor 
                /if (${Cursor.ID}) { 
                    /autoinv 
                    /goto :checkCursor 
                } 
            /goto :castSpell 
        } 
    
    /sit 
    /call MedBreak 
    /camp 
/return 

Sub CheckGM 
    :GMCheck 
    /if (${Bool[${Spawn[gm].ID}]}) { 
       /echo 'Cast Macro' A GM or Guide has been detected in the zone,  the macro will resume  when the zone is clear of GM/Guides 
       /delay 600s 
       /goto :GMCheck 
    } 
/return 

Sub Event_Chat 
  /echo Got a tell, pausing for 10 minutes 
  /delay 600s 
/return 

Sub Event_Lang 
  /echo Got a tell, pausing for 10 minutes 
  /delay 600s 
/return 

Sub MedBreak 
    /stand 
    /sit 
    :MedMore 
        /delay 2s 
        /if (${Me.CurrentMana}<${Me.MaxMana}) /goto :MedMore 
/return

From shadowman
_______________________________________________________

as far as the bst mac goes you will have to change the macro to fit your needs. This requires a little macro writting experiance on your part. Now you could prolly pay someone to write a custom macro for you, Or you can learn to do it for yourself. The things you have to change is zone(if you use the poi mac) spells and such. now for it to go to an assist mac the bst.mac on mq2 nonvip does a good job. but you would have to /endmac then start up another. /shrug. I am starting to play around with the mod bots in mq2 VIP boards.
 
and here is the .ini for it. just save it as the ini and edit how you see fit


[Masters]
Controller1=Nobody
Controller2=Nobody
Controller3=Nobody
Controller4=Nobody
Controller5=Nobody
Controller6=Nobody
Controller7=Nobody
Controller8=Nobody
Controller9=Nobody
Controller10=Nobody
Controller11=Nobody
Controller12=Nobody
Controller13=Nobody
Controller14=Nobody
Controller15=Nobody
Controller16=Nobody
Controller17=Nobody
Controller18=Nobody
Controller19=Nobody
Controller20=Nobody
[General]
MainAssist=Nobody
AutoAssist=TRUE
AssistPercentage=97
TargetSwitching=FALSE
LeashHolder=Nobody
LeashLength=150
Leashing=FALSE
AutoNinjaMode=OFF
AutoNinjaDistance=300
Closeness=120
AutoBuff=TRUE
Verbose=FALSE
Autoslow=FALSE
AutoPet=TRUE
BuffPet=TRUE
AutoDisc1=FALSE
Disc1=Bestial Fury



Make sure on the mac to go in and edit it for the spells you have, my bst is only 66 so i dont have all the good ones set up, but you have to tweak some stuff here and there. but for the most part it works decent in exp groups.
 
wow THanks alot this is a really good MAc, i had an error with checkdebufftimer. but i just block it and everthing seem to work good. what is verbose? is there a way to set it up to kill 1 camp mob. thanks soes

edit...... need heal self if low
oh yea if mob GATEs DO not follow
this is SWeet it almost as good as DOubple exp weekends with MM's.

edit.. ok this is not full prof. when i die it says....no such 'character' member bound.. in the eventam dead
 
Last edited:
haha i really dont know what verbose is.. but ive only used it here and there, but i was always sitting at the computer when i used it. never had a problem, so i dont know what to say about it.
 
need bst mac

Users who are viewing this thread

Back
Top