Thread Tools Display Modes
Prev Previous Post   Next Post Next
04/02/18, 05:59 PM   #1
Cardinal05
AddOn Author - Click to view addons
Join Date: Feb 2018
Posts: 33
[implemented] HousingFurnishingLimitType

At present, these 2 functions allow us to check a given house's maximum furniture limits as well as how many furnishings of a given limit type have already been placed in the current house.

Code:
GetHouseFurnishingPlacementLimit(number houseId, number HousingFurnishingLimitType limitType)
GetNumHouseFurnishingsPlaced(number HousingFurnishingLimitType limitType)
In order to preempt avoidable failures when adding furniture to players' houses, it would be helpful to have a way to identify the relevant limit type for each item (ahead of time) prior to ever attempting to add furnishings en masse.

This is particularly important for identifying whether an item is Low Impact or High Impact within each of the two primary (Collectible/Non-Collectible) categories. Ideally, the solution work on both Placed furniture (e.g. passing a Furniture Id) as well as Inventory items and Collectibles.

From what I can see, a simple way to address this would be to add the relevant LimitType for a given furnishing to the FurnitureDataInfo structure as we already have functions for getting the FurnitureDataId for an item that is: placed in a house, a collectible, an inventory item or an item link.

If the GetFurnitureDataInfo function were amended to return an addition limitType value, that would solve the problem from every angle that I can see:

Code:
function GetFurnitureDataInfo(number furnitureDataId)

--[[
 Currently returns:
   number:nilable categoryId,
   number:nilable subcategoryId,
   number FurnitureThemeType furnitureTheme

 Consider changing to return:
   number:nilable categoryId,
   number:nilable subcategoryId,
   number FurnitureThemeType furnitureTheme,
   number HousingFurnishingLimitType limitType
]]
Thank you so much for your time.
 
 

ESOUI » Developer Discussions » Wish List » [implemented] HousingFurnishingLimitType


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