Page 11 of 25
Posted: Sat Jul 03, 2004 10:32 am
by aChallenged1
That wasn't snide. If that little blurb offended your sense of decorum, I suggest you leave and never come back. Be assured, the flames that burn here are much worse. My post would be considered a kindness by most here.
Posted: Sat Jul 03, 2004 10:49 am
by Manaweaver
Pretty much true.
Not really offended, no, but not reading a thread doesn't make me a retard. I do love that handy dandy search button, but for sometihng that affects all macros and isn't actually related to MQ2, it's a bit difficult to stumble across. Yeah, it was wrong to not read every thread in the Announcement section, I'll change that habbit.
I've been around for quite some time... just never need to post. Was a bit fed up with trying to fix it and failing though. Should've paid a bit more attention to the code

Posted: Sat Jul 03, 2004 1:19 pm
by Azum
Seems the posting limit has been even further reduced, board now eats macros that are 48k in size. I really hate this fuckin board. Anyway, had to split the macro into more pieces.
Sorry for lack of updates, but I recently moved and just haven't had time.
I have a shitty machine by today's standards (amd 1500xp, 512 ram) and the macro starts for me in about one second. Not sure why it loads slow for those who've reported it.
Posted: Sun Jul 25, 2004 7:55 am
by creations
possible to add autosit option for between fights? thanks.
Posted: Sun Jul 25, 2004 1:38 pm
by Azum
Again, sorry for the lack of updates. Been a little burned out on EQ, built a new PC, etc. I'll probably update this thing soonish. AltAbilityReady still seems broken though, nothing I can do about that however.. until the struct is fixed.
Posted: Mon Aug 02, 2004 10:01 pm
by k7
For some reason it's not triggering my AA harvest or my AA familiar any more... It still triggers the regular harvest though. It happened around the time there was an announcement was made about AA structs being changed. Anyone have any info on this?
Posted: Mon Aug 02, 2004 11:30 pm
by k7
Err, any chance of getting /leash to compensate for mounts? I had mine set to 150 and because of distance and mount speed I ran past the leash target...
Posted: Wed Aug 18, 2004 2:31 pm
by Casty
hurry back Az :p
spellcast.inc
Posted: Wed Aug 18, 2004 6:49 pm
by Dadelot
Sorry edited... question posted one page before. My stupid mistake.
Posted: Sun Aug 22, 2004 3:36 pm
by Azum
Haven't forgot about you guys, in fact I was working on a version of the macro to not rely on AltAbilityReady, but now it seems to be fixed, so everything should be working again like it was.
I realize the leash code isn't the greatest in the world, I'll see what I can do to tune it up.
Also, a word about familiars - awhile back someone told me Allegiant Familiar was a passive AA, it's not, it's alt activatable. Allegiant Familiar (179) and Improved Familiar (52) are two separate activatable AAs. I should have caught this alot sooner, but I rarely ever use those familiars. So I'm going to post a slight update to fix that for now.
The most pressing issues seem to be tuning up the leash code, and adding an 'aggressive' sitting option (Sit as much as possible). So I'll try to get those done soon.
Posted: Tue Aug 24, 2004 11:27 am
by Ydinlataus
Nice work Azum!
I was wondering if you have considered adding automated TL in the macro, something along the lines:
Code: Select all
Sub Event_Chat(string ChatType, string Sender, string ChatText)
/if (${ChatType.Equal[TELL]}) {
/if (${ChatText.Find[tl ]} || ${ChatText.Equal[tl]}) {
/target pc ${Sender}
/delay 1s ${Target.Name.Equal[${Sender}]}
/if (${FindItem[Time Traveler's Abandoned Notebook].ID}) /call Cast "Time Traveler's Abandoned Notebook" item
}/else /call cast translocate
}
/return
Posted: Wed Aug 25, 2004 1:47 am
by Process
How about a way to change your Primary Nuke spell without changing your ini? Atm, I'm using seperate ini files for when I want to use a cold nuke or a fire based nuke.
If this functionality is already included in some way that I missed, I apologize. I didn't see it in the documentation.
Thanks,
Process
for sitting
Posted: Wed Aug 25, 2004 6:34 pm
by Braedo
here is what i did to enable "auto sit" you may have to fiddle with the delay a tad depending on what spells you use...
open up your afnuke.inc and notice the bold... this basically puts a sit command right after every time u nuke! hope it works for you!
:wait2
/if (${Me.Casting.ID} || ${Me.Moving}) /goto :wait2
/if (${pausetimer}) /goto :nukeloop
/if (${Target.CurrentHPs}>${stopnuke} && !${Me.Moving} && ${Target.ID}==${mobid} && !${Target.Type.Equal[Corpse]}) {
/varset nukecount ${Math.Calc[${nukecount}+1]}
/echo Main Nuke Number ${nukecount}
/echo ${mainnuke} on ${Target.CleanName}, Health: ${Target.PctHPs}
/varset TempSpell ${mainnuke}
/call cast "${mainnuke}" ${mainnukegem} ${checktarget}
/sit
/if (!${nukepause.Equal["None"]}) /varset pausetimer ${nukepause}
} else /if (${Target.CurrentHPs}<=${stopnuke} && ${Target.CurrentHPs}>${stopnuke2} && !${Me.Moving} && ${Target.ID}==${mobid} && !${Target.Type.Equal[Corpse]}) {
/if (${TempSpell.Equal[${mainnuke}]}) /varset nukecount 0
/varset nukecount ${Math.Calc[${nukecount}+1]}
/echo End Nuke Number ${nukecount}
/echo ${endnuke} on ${Target.CleanName}, Health: ${Target.PctHPs}
/varset TempSpell ${endnuke}
/call cast "${endnuke}" ${endnukegem} ${checktarget}
/delay 3
/sit
/if (!${nukepause.Equal["None"]}) /varset pausetimer ${nukepause}
Posted: Wed Aug 25, 2004 7:24 pm
by k7
I agree with process. Being able to chainge your nukes on the fly would be sweet!
Also, being able to maintain different configurations for different situiations would be ideal. Even something as simple as being able to specifiy an ini file to use would do the trick.
If you want to be creative, you could find a way to have the macro reload an ini file (a command like /ini PoFire.ini to load PoFire.ini).
If you want to get really creative (ok, maybe someone else will want to take a lick at it) make it possible to specify what nukes for what mobs, based on a seperate file. If you're wondering what I actually mean by this, go raid VT for a day.
btw, thanks for the exclude list! No more wasting mana recasting force shield when a dillo splits in PoE!
Posted: Wed Aug 25, 2004 10:33 pm
by Yalp
Process wrote:How about a way to change your Primary Nuke spell without changing your ini? Atm, I'm using seperate ini files for when I want to use a cold nuke or a fire based nuke.
If this functionality is already included in some way that I missed, I apologize. I didn't see it in the documentation.
Thanks,
Process
/echo nuke1|nuke2 nukename
theres also
/ma maname
/echo temp
/echo mobhealth #
/echo concnum #
and theres more i just can't remember them because these are the only ones i use regularlly.