GetBaseCategories (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
cat
>Emess
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
|returns = [[Table]] (See below)
|returns = [[Table]] (See below)
|description = Returns the common base categories of all players.
|description = Returns the common base categories of all players.
|object = [[InsertService]]
|object = InsertService
}}</onlyinclude>
}}</onlyinclude>
{{clear floats}}
{{clear floats}}

Latest revision as of 02:12, 30 December 2010

GetBaseCategories( )
Returns Table (See below)
Description: Returns the common base categories of all players.
Member of: InsertService

Table Format

This format is used with AdvancedResults is set (the default):

  • { -- List Table
    • { -- Hash Table
      • CategoryId = Integer for use with InsertService::GetCollection
      • ImageAssetId = Integer decal asset
      • Name = String category name
      • Description = String category description
      • CreatorName = String creator name
      • AssetSetId = Integer for use with InsertService::GetCollection
      • SetType = String "base" for built-in categories
    • }
  • }
Example
local categories = game:GetService("InsertService"):GetBaseCategories() 
for ndx,catinfo in ipairs(categories) do 
print(ndx) 
for k,v in pairs(catinfo) do print( k, "=", v ) end 
end