Search found 9 matches

by Gurash
Wed Sep 19, 2018 1:56 pm
Forum: MQ2::Macros::Help
Topic: ScreenID Reference
Replies: 6
Views: 9581

PowerShell script

This may be inappropriate to post on this forum, but here's a copy of the Windows PowerShell script I wrote to help me with this task. It's not the best, but I'm a total newbie to PowerShell. If I improve it, I will post my improvements. It is slow when cycling through 165+ EQUI files. I used this s...
by Gurash
Wed Sep 19, 2018 1:36 pm
Forum: MQ2::Macros::Help
Topic: ScreenID Reference
Replies: 6
Views: 9581

ScreenID Reference 2018 [N-Z]

EQUI_NameChangeMercWnd.xml NCMW_NameEdit NCMW_Prompt NCMW_DisableReminderButton NCMW_SubmitButton NCMW_CloseButton EQUI_NameChangePetWnd.xml NCPW_NameEdit NCPW_Prompt NCPW_DisableReminderButton NCPW_SubmitButton NCPW_CloseButton EQUI_NameChangeWnd.xml NCW_NameEdit NCW_Prompt NCW_DisableReminderButt...
by Gurash
Fri Sep 14, 2018 6:13 am
Forum: MQ2::Macros::Help
Topic: ScreenID Reference
Replies: 6
Views: 9581

ScreenID Reference 2018 [A-M]

This list has to be posted in 2 parts ([A-M] and [N-Z]) due to its size. It is current as of 09/19/2018. EQUI_AAWindow.xml AAW_BuyAllButton TrainButton HotButton AAW_LoadSaveLabel AAW_LoadButton AAW_SaveButton DoneButton LessExpButton MoreExpButton PercentLabel ExpCount ExpGauge AssignedLabel TotalL...
by Gurash
Fri Sep 14, 2018 4:33 am
Forum: MQ2::Custom UI
Topic: Very minimal HUD pieces
Replies: 2
Views: 1970

Re: Very minimal HUD pieces

I figured I could. I was modifying what originally came with MMOBugs version of mq2, and that's what they had. A lot of it I did change. Thank you for the reply. I've edited the original post to reflect my changes.
by Gurash
Thu Sep 13, 2018 12:55 pm
Forum: MQ2::Macros::Help
Topic: Accessing item descriptions / eq time
Replies: 14
Views: 2513

Re: Accessing item descriptions / eq time

Thank you for the reply.

Have you got any ideas about how to "read" an item to see if it's a drink or food? Or if it's a tradeskill item? Thank you again.
by Gurash
Thu Sep 13, 2018 10:55 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Language Macro - Master Languages with a group
Replies: 44
Views: 37914

Re: Language Macro - Master Languages with a group

This version will cycle through all 26 teachable languages (easily expandable if they add more languages). Target yourself (borrowed that idea) to switch the language to common tongue and end the macro quickly. No skill checks, no frills, just spam. As with all macros, copy and paste into a text edi...
by Gurash
Thu Sep 13, 2018 5:25 am
Forum: MQ2::Custom UI
Topic: Very minimal HUD pieces
Replies: 2
Views: 1970

Very minimal HUD pieces

I created this for my wife who didn't want so much stuff on her screen. I like it, so I actually have been using MQ2HUD with this in my .ini file. The background looks solid black most of the time, but I've noticed it could use some more filler lines to make it perfect. Doesn't bother me though. Per...
by Gurash
Wed Sep 12, 2018 7:16 pm
Forum: MQ2::Macros::Help
Topic: Accessing item descriptions / eq time
Replies: 14
Views: 2513

Re: Accessing item descriptions / eq time

Well, I feel slightly unsmart. I finally found the time bit here on the MQ2 Wiki of all places! Lol. Here's the line in my HUD file I used it for: GTime=3,2,118,172,0,204,255, ${If[${GameTime.Hour} > 11,${Int[${Math.Calc[${GameTime.Hour}-12]}]},${GameTime.Hour}]}:${If[${GameTime.Minute} < 10,0${Game...
by Gurash
Wed Sep 12, 2018 5:08 pm
Forum: MQ2::Macros::Help
Topic: Accessing item descriptions / eq time
Replies: 14
Views: 2513

Accessing item descriptions / eq time

I'm sorry if this has been asked before, but I didn't see it. Is there a way to access the descriptions of items? For example: EQ tells us about Rabbit Meat that "This item can be used in tradeskills." It also tells us "This is a meal." I see lots of properties we can read, but I...