What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Quest Blob Coordinates

rrrix

New Member
Joined
Jul 11, 2010
Messages
3,449
Reaction score
61
Hi All,

I'm working on a Quest profile plugin and i'm trying to find a good way to extract Quest Blob geometry coordinates, like the ones on the screenshot below.

I can't seem to find any functions, either through LUA or through HB that do this.

Is it possible to somehow read properties of the Map frame to get these?

attachment.php


Thanks for any insight!

Lost in Scholozar,

rrrix
 

Attachments

  • QuestBlobs.webp
    QuestBlobs.webp
    5.6 KB · Views: 68
Check out CowDudes methods inside of the Dev forum. He should an awesome way to convert them to XYZ into HB. I do not remember where it was or the name so just look at his topics.
 
Hi All,

I'm working on a Quest profile plugin and i'm trying to find a good way to extract Quest Blob geometry coordinates, like the ones on the screenshot below.

I can't seem to find any functions, either through LUA or through HB that do this.

Is it possible to somehow read properties of the Map frame to get these?

attachment.php


Thanks for any insight!

Lost in Scholozar,

rrrix

you could use

WoWDb.DbTable table = StyxWoW.Db[ClientDb.QuestPOIPoint];

then do.. something like..
for each row in table
WoWDb.Row row = table.GetRow(i);
int blobid = row.GetField<int>(3);

if the blobid is what you are looking for then... add the row.GetField<int>(1) and row.GetField<int>(2) as x,y coords into a list

it should give you the boundaries of the blobs

if works great.. if it doesn't you should still look further into the WoWDb...
 
Back
Top