GetBaseCategories (Function): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>GoldenUrg
fix table spec
>MrNicNac
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Function|
#REDIRECT [[GetBaseCategories (Method)]]
name                  = GetBaseCategories
|arguments            =
|returns              = [[Table]] (See below)
|description          = Returns the common base categories of all players.
|object              = InsertService
|}}
 
== Table Format ==
This format is used with AdvancedResults is set (the default):
* { -- [[Table|List Table]]  
** { -- [[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|
<pre>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
</pre>
}}

Latest revision as of 05:04, 3 July 2011