Thread Tools Display Modes
03/09/15, 03:36 AM   #1
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
IsPOIPublicDungeon

Am I missunderstanding what IsPOIPublicDungeon(..) is supposed to do?
The rest of the IsPOIxxxx functions do what their names suggest, but either this one is bugged or it just does not do what its name suggests.

I've tested IsPOIPublicDungeon(..) on every public dungeon in every zone I have access to, they all have the words public dungeon in the icon path name, and I even reset the tutorials and entered one to verify that the game considers it a public dungeon:


But using:
Lua Code:
  1. IsPOIPublicDungeon(zoneIndex, poiIndex)
Returns false on every one I try it on.

EDIT: I even tried testing every POI in every zone by doing:
Lua Code:
  1. for zoneIndex=1, 1000 do
  2.     local numPOIs = GetNumPOIs(zoneIndex)
  3.     for poiIndex=1, numPOIs do
  4.         if IsPOIPublicDungeon(zoneIndex, poiIndex) then
  5.             d("Public Dungeon Found: "..zoneIndex..", "..poiIndex)
  6.         end
  7.     end
  8. end
and the only POIs it returns as public dungeons are in Craglorn.

Last edited by circonian : 03/11/15 at 01:30 PM.
  Reply With Quote
03/13/15, 09:32 AM   #2
ZOS_ChipHilseberg
ZOS Staff!
Premium Member
Yes this person is from ZeniMax!
Join Date: Oct 2014
Posts: 551
There appears to have been an error in flagging public dungeons in the data (outside of Craglorn). We have a bug internally to get those marked properly.
  Reply With Quote
02/05/16, 04:53 PM   #3
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Hey Chip, is this bug fixed meanwhile?

Because the public dungeon in Reapers March e.g. will be still marked as "false" today
But the pub dungeon in Stonefalls is working well.

It seems there are fixed some, but not all?

Last edited by Baertram : 02/05/16 at 05:13 PM.
  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » IsPOIPublicDungeon


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off