I am looking for a way to get every single character bundle id (not animation bundle).
Are there any functions or APIs that allow this that automatically update with new bundles?
For anyone looking for an answer, I have found 2 viable options.
1. Usage of API
Simply using the Catalog API with a service such as roproxy, and looping through all pages with nextPageCursor can get the job done.
There is however a limitation of this approach. It only provides us with all onsale bundles (as far as Iām aware), or the bundles that appear in the catalog (with ShowHidden enabled).
2. Brute Forcing
This method, although slower provides a more complete set of bundle ids. Simply looping from 1-1000 or any other number (or none at all) will provide you with every bundle id there is. You can check for a bundles existence using various pcalls and AssetService:GetBundleDetailsAsync(id)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.