Marks a transmog appearance as collected by the player.
- appearanceId
number-- Appearance ID from the transmog database - Affects:
C_Transmog.GetAppearanceSourceInfo()--isCollectedfield returnstrue - Example:
A_Admin.AddTransmog(12345)Marks a transmog appearance as uncollected.
- appearanceId
number-- Appearance ID - Affects:
C_Transmog.GetAppearanceSourceInfo()--isCollectedfield returnsfalse - Example:
A_Admin.RemoveTransmog(12345)Toggles whether a mount is collected.
- mountId
number-- Mount ID fromC_MountJournal - collected
boolean--true= collected,false= not collected - Affects:
C_MountJournal.GetMountInfoByID(mountId)--isCollectedfield - Example:
A_Admin.SetMountCollected(232, true) -- InvincibleToggles whether a battle pet is collected.
- petId
number-- Pet species ID - collected
boolean - Affects:
C_PetJournal.GetNumCollectedInfo(petId) - Example:
A_Admin.SetPetCollected(39, true) -- Mechanical SquirrelToggles whether a toy is in the toy box.
- toyId
number-- Item ID for the toy - collected
boolean - Affects:
PlayerHasToy(toyId) - Example:
A_Admin.SetToyCollected(37710, true) -- Paper Flying Machine KitToggles whether a campsite (warband scene) is collected.
- campsiteId
number-- Warband scene ID fromC_WarbandScene - collected
boolean - Affects:
C_WarbandScene.HasWarbandScene(campsiteId) - Example:
A_Admin.SetCampsiteCollected(3, true)Marks a campsite as collected.
- campsiteId
number-- Warband scene ID fromC_WarbandScene - Affects:
C_WarbandScene.HasWarbandScene(campsiteId) - Example:
A_Admin.CollectCampsite(3)Marks a campsite as uncollected.
- campsiteId
number-- Warband scene ID fromC_WarbandScene - Affects:
C_WarbandScene.HasWarbandScene(campsiteId) - Example:
A_Admin.UncollectCampsite(3)Toggles whether an achievement has been earned.
- achieveId
number-- Achievement ID - earned
boolean - Affects:
GetAchievementInfo(achieveId)--completedfield - Example:
A_Admin.SetAchievementEarned(2144, true) -- "What a Long, Strange Trip It's Been"