RuleFunction_Transmog - arkayenro/arkinventory GitHub Wiki

Rule Functions > Transmog

transmog( arg1 )

Checks if an item has an appearance you have not learnt (account wide)

Alias

  • xmog

Arguments

  • arg1 (boolean) = include secondary appearance items

Remarks

  • applies only to soulbound items

  • secondary appearance items will be included by default if you have the global secondary transmog option enabled

Examples

all primary appearance items where you, or an alt, can learn its appearance.

transmog( )

all primary and secondary appearance items where you, or an alt, can learn its appearance.

transmog( true )

if you only have characters that can wear cloth or leather then restrict it to only those subtypes

type( "armor" ) and subtype( "cloth","leather" ) and transmog( )