Search found 12 matches

by Ralindal
Thu May 26, 2016 2:21 pm
Forum: MQ2::Bug Reports
Topic: Line of sight seems broken a bit
Replies: 5
Views: 1005

Re: Line of sight seems broken a bit

The LOS flag doesn't seem to work right for some reason because it fails instantly (ie, the client still knows that it is not in line of sight) -- it is not going to the server (you can see this because the spell starts casting, then stops with a message).
by Ralindal
Thu May 26, 2016 2:19 pm
Forum: MQ2::Bug Reports
Topic: Line of sight seems broken a bit
Replies: 5
Views: 1005

Re: Line of sight seems broken a bit

Nope, happens to mobs in casting range.
by Ralindal
Mon Mar 28, 2016 1:01 am
Forum: MQ2::Bug Reports
Topic: Line of sight seems broken a bit
Replies: 5
Views: 1005

Re: Line of sight seems broken a bit

This always happens after a fight finishes (ie, extended target was cleared). Never when idle, no matter how long I wait. Environment was controlled (inside a task). No mobs were moving around. EDIT: It just also triggered after looting a corpse a couple of minutes after a fight. Perhaps triggered t...
by Ralindal
Mon Mar 28, 2016 12:57 am
Forum: MQ2::Bug Reports
Topic: Line of sight seems broken a bit
Replies: 5
Views: 1005

Line of sight seems broken a bit

I use this code: LineOfSight(GetCharInfo()->pSpawn, target) I think this is bugging since the last or last couple of patches. I notice the following: In a room with several mobs hidden behind walls in other rooms, LineOfSight will return FALSE when "idle". However, after killing one of the...
by Ralindal
Sun Dec 27, 2015 3:34 pm
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

Also spotted a small bug that may access an item that doesn't exist. if (pAdvLoot && pAdvLoot->pCLootList && pAdvLoot->pCLootList->pLootItem && pAdvLoot->pCLootList->ListSize >= index) { DWORD addr = (DWORD)pAdvLoot->pCLootList->pLootItem; pitem = (PLOOTITEM)(addr + (sizeof(L...
by Ralindal
Sun Dec 27, 2015 3:32 pm
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

I checked the MacroQuest source code, and if there is a problem there, then I suspect that DoAdvLootAction's (which seems to be an EQ function) first parameter is not what it appears to be. Since the Shared Loot table is sortable (by clicking on the columns), EQ might be keeping track of two index n...
by Ralindal
Sun Dec 27, 2015 3:10 pm
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

It was using index before, it bugged then also.
by Ralindal
Sun Dec 27, 2015 9:36 am
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

I've changed the Loot module to use names instead of numbers, and now it is quite obvious from the logs that something is going wrong. From my EQ log: [15:20:05 2015] 1 item(s): Plain-Looking Scroll given to you. It has been removed from your Shared Loot List. [15:20:10 2015] 1 item(s): Diamond give...
by Ralindal
Sat Dec 26, 2015 9:22 pm
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

I'll try a start delay... perhaps the list is still populating with the items from the latest kill, causing this glitch.
by Ralindal
Sat Dec 26, 2015 9:16 pm
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

The loot is triggered though after a fight finishes (xtarget is clear). Any new items that would be added would have to come from a new pull which certainly isn't going to die in a couple of seconds ;-) I'll see if I can trace it down a bit further, or change it to use /advloot shared <name> instead...
by Ralindal
Sat Dec 26, 2015 8:00 pm
Forum: MQ2::Development::Feature Discussion
Topic: Feature: Macrosupport for the new AdvLoot system
Replies: 22
Views: 3214

Re: Feature: Macrosupport for the new AdvLoot system

I've been testing this, and I noticed something odd. I leave loots in the window and put them to "free grab", so the window is always open and there's usually some stuff in there that is on free grab. What I've noticed is that when I get the SList.Count and I (reverse) iterate through the ...
by Ralindal
Fri Oct 26, 2012 6:34 am
Forum: MQ2::Macros::Help
Topic: Move points
Replies: 13
Views: 2148

Re: Move points

Well, you can use /delay with a condition, so you could:

/delay 100 ${Me.DistanceTo[loc Y X] < 10}

(syntax might be off, I rarely use the MQ macro language)