Search found 25 matches

by morevit
Thu Oct 21, 2004 6:42 pm
Forum: MQ2::Bug Reports
Topic: Gametime bug?
Replies: 10
Views: 2573

Implemented this a couple of days ago, but just realized it isn't working right. You DO need the +1 for real-time, but not for game time. Geniuses they a'int.
by morevit
Fri Oct 15, 2004 6:38 am
Forum: MQ2::Bug Reports
Topic: Gametime bug?
Replies: 10
Views: 2573

Ya it does bug me. I'd really like to see the fix rolled into the next zip especially since it's trivial.
by morevit
Thu Oct 14, 2004 7:07 am
Forum: MQ2::Bug Reports
Topic: Gametime bug?
Replies: 10
Views: 2573

I'd buy that argument _maybe_ for the numerical month value, but not for the stringification routine. The internal representation should never matter to that.
by morevit
Wed Oct 13, 2004 6:58 pm
Forum: Other::General
Topic: Any tips for learning to program?
Replies: 2
Views: 1890

If you want to learn to program, the best way is to program. After about twenty years of it you'll start to get good.
by morevit
Wed Oct 13, 2004 3:05 pm
Forum: MQ2::General
Topic: Type library
Replies: 5
Views: 1993

Type libraries are related to COM interfaces. MQ2 doesn't have one. You'll have to settle for the compiler generated browse information.
by morevit
Tue Oct 12, 2004 9:58 am
Forum: MQ2::Bug Reports
Topic: Gametime bug?
Replies: 10
Views: 2573

Okay, it took a full Norrathan year, but I've verified this as a bug. The month number goes right from 13 for December to 2 for January. There is no month number 1.
by morevit
Fri Oct 01, 2004 6:44 pm
Forum: MQ2::Bug Reports
Topic: Calling a macro from a macro - /declare problem
Replies: 4
Views: 1240

eqjoe wrote:Edit the source to his plugin to call your macro.



-j
Obvious and wholy not the point. I want the buttons to be configurable from within EQ, not to require a recompile of the plugin every time I make a change.
by morevit
Fri Oct 01, 2004 6:42 pm
Forum: MQ2::Bug Reports
Topic: Calling a macro from a macro - /declare problem
Replies: 4
Views: 1240

When you call a macro it ends the macro currently running and starts the new one you called, it doesn't return to the original one. What you need to do is add Sub functions inside the macro already running, and in these functions you should specify what the other macros you have, do. Well aware of ...
by morevit
Thu Sep 30, 2004 8:25 am
Forum: MQ2::Bug Reports
Topic: Calling a macro from a macro - /declare problem
Replies: 4
Views: 1240

Calling a macro from a macro - /declare problem

This is not normally something I do, but it seemed the simplest solution when using the MQ2MyButtons plugin (i.e. have a set of fixed macros called by the buttons which then called your custom macros). The problem I'm having is that apparently the first /declare in the called macro is not being reco...
by morevit
Sat Sep 25, 2004 7:49 pm
Forum: MQ2::Bug Reports
Topic: Gametime bug?
Replies: 10
Views: 2573

I thought I might have missed that "extra" month, but it's been a day and a half and we're still in "January". It's looking like all the months have the month number high by 1.
by morevit
Sat Sep 25, 2004 7:35 am
Forum: MQ2::Bug Reports
Topic: Spawn.CleanName - not clean enough
Replies: 11
Views: 2215

Fair enough. If DisplayName is what I'm looking for and it gets documented that should solve the problem. I think you may have been looking at the wrong code though. CleanName does _not_ move the article though there may be an internal routine with the same name that does or perhaps there's a flag. ...
by morevit
Sat Sep 25, 2004 12:57 am
Forum: MQ2::Bug Reports
Topic: Gametime bug?
Replies: 10
Views: 2573

Nice try, but the new month (if any) would appear to come before January (2) not after December.
by morevit
Sat Sep 25, 2004 12:53 am
Forum: MQ2::Bug Reports
Topic: Spawn.CleanName - not clean enough
Replies: 11
Views: 2215

Rusty~ wrote:i've just been using ${Target.DisplayName} over ${Target.CleanName}
Bah. I'll look at this, but "DisplayName" is not in the docs and may well go away. (I have verified that it exists and that you aren't insane, but my statement stands).
by morevit
Sat Sep 25, 2004 12:51 am
Forum: MQ2::Bug Reports
Topic: Spawn.CleanName - not clean enough
Replies: 11
Views: 2215

Amadeus wrote:I have this fixed ...will put it in for the next zip.
Thanks ;)
by morevit
Fri Sep 24, 2004 7:00 pm
Forum: MQ2::Bug Reports
Topic: Spawn.CleanName - not clean enough
Replies: 11
Views: 2215

Spawn.CleanName - not clean enough

One of the first macros I made when I started using MQ2 was an assist macro. I was using it in an LDoN and it worked fine until we came upon a named. My macro (using the target's CleanName) output something like "Assisting OurTank with #Whirling Pain in the Ass". I'm still trying to figure...