Search found 59 matches

by demonstar55
Thu Aug 03, 2017 2:21 pm
Forum: MQ2::Development::Feature Discussion
Topic: Mod MQ2Cast to find best spell version
Replies: 13
Views: 3034

Re: Mod MQ2Cast to find best spell version

/casting "${Spell[foo].SpellRank}" doesn't work?
by demonstar55
Sun Jul 16, 2017 2:58 pm
Forum: MQ2::Bug Reports
Topic: Issue in .Stacks
Replies: 2
Views: 611

Re: Issue in .Stacks

You can use NewStacks, there is work on getting everything ported to this new method, but it's still not complete.
by demonstar55
Thu Jun 22, 2017 1:28 am
Forum: MQ2::Development::Feature Discussion
Topic: Industroyer
Replies: 8
Views: 1644

Re: Industroyer

It's a false positive, report it to them.
by demonstar55
Fri Jun 16, 2017 2:19 pm
Forum: MQ2::Development::Feature Discussion
Topic: Industroyer
Replies: 8
Views: 1644

Re: Industroyer

Also, what file did it report as malware?
by demonstar55
Sat Jun 03, 2017 2:28 pm
Forum: MQ2::Bug Reports
Topic: MQ2HUD garbage/crash
Replies: 1
Views: 526

MQ2HUD garbage/crash

This never crashed on older windows, but I did get garbage on screen sometimes. I do get crashes on Win10 sometimes though. Bsically, the PreParsed text is never zeroed and sometimes you can display the uninitialized data. --- a/MQ2HUD/MQ2HUD.cpp Wed Feb 15 11:36:06 2017 +++ b/MQ2HUD/MQ2HUD.cpp Tue ...
by demonstar55
Tue May 16, 2017 9:12 pm
Forum: MQ2::Help
Topic: mq2hud help
Replies: 24
Views: 4531

Re: mq2hud help

Lucky13 wrote:all but back slot since the Enhanced Minion effect is rendered via a clock with KILLER stats apparently

http://lucy.allakhazam.com/itemlist.htm ... nhancement


Those are the cloaks BTW
by demonstar55
Sat Feb 18, 2017 12:54 pm
Forum: MQ2::Help
Topic: PLEASE release, at least once a year, a compiled version
Replies: 12
Views: 2172

Re: PLEASE release, at least once a year, a compiled version

> make sure you select to install the C++ compiler I did. Then why don't you have the C+ compiler installed? The easiest way to get MQ2 for EQEmu (I am an EQEmu dev) is to find the zip the corresponds to that exe on the archive page . If you want modern MQ2 features you will have to backport featur...
by demonstar55
Sat Feb 18, 2017 2:02 am
Forum: MQ2::Help
Topic: PLEASE release, at least once a year, a compiled version
Replies: 12
Views: 2172

Re: PLEASE release, at least once a year, a compiled version

First, make sure you select to install the C++ compiler (it's not by default and if you just next, next, next you skipped it)

Second, without a lot of work, you're not gonna be able to use the default download on EQEmu.
by demonstar55
Mon Jan 09, 2017 1:07 pm
Forum: MQ2::Macros::Requests
Topic: monkbug/no delay House of thule client?-
Replies: 9
Views: 3837

Re: monkbug/no delay House of thule client?-

je1646 wrote:yes it would be for a eq emu server, and didnt know that its frowned upon here


i use a HoT client, and it works pretty good
I'm an EQEmu dev, I think I know what we support. You're using an UF client.
by demonstar55
Mon Jan 09, 2017 2:10 am
Forum: MQ2::Macros::Requests
Topic: monkbug/no delay House of thule client?-
Replies: 9
Views: 3837

Re: monkbug/no delay House of thule client?-

EQEmu does not support a House of Thule client.
by demonstar55
Tue Dec 20, 2016 4:45 pm
Forum: MQ2::Bug Reports
Topic: ${If[condition,true,false]} not working properly, True 100%
Replies: 4
Views: 1204

Re: ${If[condition,true,false]} not working properly, True 1

you need to add /noparse in front of /alias I believe.
by demonstar55
Sun Nov 20, 2016 3:11 pm
Forum: MQ2::Macros::Help
Topic: Target's Target
Replies: 6
Views: 2108

Re: Target's Target

${Me.TargetOfTarget}?

(that's where the data is, so that's where the TLO is :P)
by demonstar55
Sun Nov 06, 2016 12:43 pm
Forum: MQ2::Bug Reports
Topic: Varpes
Replies: 12
Views: 3017

Re: Varpes

MQ2 injects, malware injects sometimes too. So we can get hit by false positives. I know in the past eqmule has just told Microsoft it's not malware, provided code etc. But that usually happens after he updates the exe, which I'm not sure when happened last ... Could just be butthurt players mass re...
by demonstar55
Wed Sep 07, 2016 1:23 am
Forum: MQ2::Bug Reports
Topic: GetItemLink (MQ2Main/MQ2Utilities.cpp) broken
Replies: 2
Views: 560

GetItemLink (MQ2Main/MQ2Utilities.cpp) broken

Minor mistake in the string safety patch, but the Buffer passed in is the return Buffer This is the current broken code. BOOL GetItemLink(PCONTENTS Item, PCHAR Buffer, BOOL Clickable) { CHAR szCmd[MAX_STRING] = { 0 }; strcpy_s(szCmd, Buffer); char hash[MAX_STRING] = { 0 }; bool retVal = FALSE; ((EQ_...
by demonstar55
Fri Jul 01, 2016 2:16 pm
Forum: MQ2::Bug Reports
Topic: Me.ActiveDisc always NULL while a disc is running, unless...
Replies: 3
Views: 786

Re: Me.ActiveDisc always NULL while a disc is running, unles

So we have this in the client #define NUM_BUFF_SLOTS 0x61 //97 #define NUM_LONG_BUFFS 0x2a //42 #define NUM_SHORT_BUFFS 0x37 //55 typedef struct _CHARINFO2 { ... /*0x0064*/ struct _SPELLBUFF Buff[NUM_LONG_BUFFS]; /*0x0ed4*/ struct _SPELLBUFF ShortBuff[NUM_SHORT_BUFFS]; ... } CHARINFO2, *PCHARINFO2; ...