Search found 10 matches

by lore7460
Sun Oct 07, 2018 5:46 pm
Forum: Games::Everquest
Topic: Wow its been a long time
Replies: 4
Views: 3076

Re: Wow its been a long time

Thank you very much,
I'm up and running again.

Ran into a interesting issue where a boolean check on a blank string was returning back true. I coded around it. didn't see anything like that in my searches figured I'd post it maybe someone else is running into that issue.

All good, I'm back :)
by lore7460
Fri Oct 05, 2018 10:50 am
Forum: Games::Everquest
Topic: Wow its been a long time
Replies: 4
Views: 3076

Wow its been a long time

Greetings Everyone, Its been a long time since I last visited the forms. I've been playing on a true server and have reached the end of my rope. Scripting has kept me engaged in the game for many many years and without it I tend to get board really quick, i guess I'm more about writing the scripts t...
by lore7460
Tue Jan 09, 2018 1:52 pm
Forum: MQ2::Help
Topic: MQ2 for dummies
Replies: 58
Views: 26753

Re: MQ2 for dummies

So if I want to build MQ2 version for (Live) can I do it with the Builder? or does that one not have the correct offsets / structures either? Is there VIP access to builder or does one still have to pay for the builder access separately? is there a collective account that VIP can use to build with? ...
by lore7460
Fri Jul 16, 2010 11:52 am
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Re: Just starting need some help.

I got cast thing figured out. I just had to add a delay for recastTime if casting same spell again. If not just delay for normal global cool down.
by lore7460
Thu Jul 15, 2010 6:11 pm
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Re: Just starting need some help.

Thank you, MacQ And I am a VIP member, the reason for posting was because the includes I was using were not VIP restricted. So I figured that I would post in the general section to allow non vip members a chance to learn something. I have found several problems with my code, one of the main issues i...
by lore7460
Tue Jul 13, 2010 11:54 pm
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Re: Just starting need some help.

This is what I ended up with. I still haven't had the chance to test the combat part of it. But the buffing and rebuffing are working great now. Now this only checks the buffs of the leader object. I'll see about adding self buffs l8ter on. #turbo #Include spell_routines.inc #chat tell #event thorns...
by lore7460
Tue Jul 13, 2010 10:49 pm
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Re: Just starting need some help.

This is what I have if you were in the same group as your bot /if (${InCombat}==0) { /if (${Me.xtarget}!=0) { /varset InCombat 1 /target ${Leader} /assist /face } } But I think for an external assist I'll have to use a tell trigger like "assist me" then from that point the extended target ...
by lore7460
Tue Jul 13, 2010 10:32 pm
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Re: Just starting need some help.

I finally got MacroQuest to work in EQ so now I had a chance to debug the macro this is the corrected one, lots of little stupid errors like missing a slash and variable spelling. Right now the issue I'm having is trying to tell if my target is in combat. Since the target type is spawn it doesn't ha...
by lore7460
Tue Jul 13, 2010 7:39 pm
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Re: Just starting need some help.

Thank you, for the quick reply,

I'll try without the quotes in the declare statements.
by lore7460
Tue Jul 13, 2010 7:17 pm
Forum: MQ2::Help
Topic: Just starting need some help.
Replies: 15
Views: 2029

Just starting need some help.

I'm new to MacroQuest but not new to programming. I'm trying to build a simple Druid bot that remains at a camp site, when I return with a mob I want the druid to assist me and casts 5 dots and a snare, then it watch's my health and rebuffs if needed, also recast dots if they ware off. It only keeps...