| Name | Type | Deprecated | Secure | Description |
|---|---|---|---|---|
| Command.Social.Friend.Add | function | Adds a player to your friend list. | ||
| Command.Social.Friend.Note | function | Changes a friend's personal note. | ||
| Command.Social.Friend.Remove | function | Removes a player from your friend list. | ||
| Command.Social.Ignore.Add | function | Adds an player to your ignore list. | ||
| Command.Social.Ignore.Note | function | Changes an ignored player's personal note. | ||
| Command.Social.Ignore.Remove | function | Removes a player from your ignore list. | ||
| Event.Social.Friend | Signals a change in your friend list. | |||
| Event.Social.Ignore | Signals a change in your ignore list. | |||
| Inspect.Social.Friend.Detail | function | Provides detailed information about a friend. | ||
| Inspect.Social.Friend.List | function | Lists the player's current friends. | ||
| Inspect.Social.Ignore.Detail | function | Provides detailed information about an ignored player. | ||
| Inspect.Social.Ignore.List | function | Lists the player's current ignored players. |
Adds a player to your friend list.
Throttled.
| Command.Social.Friend.Add(name) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| name | parameter | string | The name of the friend. |
Changes a friend's personal note.
Throttled.
| Command.Social.Friend.Note(name, note) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| name | parameter | string | The name of the friend. |
| note | parameter | string | The new personal note. |
Removes a player from your friend list.
Throttled.
| Command.Social.Friend.Remove(name) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| name | parameter | string | The name of the friend. |
Adds an player to your ignore list.
Throttled.
| Command.Social.Ignore.Add(name) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| name | parameter | string | The name of the ignored player. |
Changes an ignored player's personal note.
Throttled.
| Command.Social.Ignore.Note(name, note) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| name | parameter | string | The name of the ignored player. |
| note | parameter | string | The new personal note. |
Removes a player from your ignore list.
Throttled.
| Command.Social.Ignore.Remove(name) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| name | parameter | string | The name of the ignored player. |
Signals a change in your friend list.
| Event.Social.Friend(friends) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| friends | parameter | variant | A lookup table containing the changed friends. |
Signals a change in your ignore list.
| Event.Social.Ignore(ignores) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| ignores | parameter | variant | A lookup table containing the changed ignored players. |
Provides detailed information about a friend.
| detail = Inspect.Social.Friend.Detail(friend) | |||
| details = Inspect.Social.Friend.Detail(friends) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| friend | parameter | string | The name of a friend to retrieve detail for. |
| friends | parameter | table | A table of names of friends to retrieve detail for. |
| detail | result | table | Detail table for a single friend. |
| details | result | table | Detail tables for all requested friends. |
| calling | The friend's calling, if known. |
|---|---|
| guild | The friend's current guild. |
| id | The ID of the requested element. |
| level | The friend's current level, if known. |
| name | The friend's name. |
| note | The friend's personal note. |
| race | The friend's race, if known. |
| status | The friend's status. Either "online", "afk", or nil. |
| zone | The friend's current zone, if known. |
Lists the player's current friends.
| friends = Inspect.Social.Friend.List() | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| friends | result | table | A table containing the player's current friends. |
Provides detailed information about an ignored player.
| detail = Inspect.Social.Ignore.Detail(ignore) | |||
| details = Inspect.Social.Ignore.Detail(ignores) | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| ignore | parameter | string | The name of an ignored player to retrieve detail for. |
| ignores | parameter | table | A table of names of ignored players to retrieve detail for. |
| detail | result | table | Detail table for a single ignored player. |
| details | result | table | Detail tables for all requested ignored players. |
| id | The ID of the requested element. |
|---|---|
| name | The ignored player's name. |
| note | The ignored player's personal note. |
Lists the player's current ignored players.
| ignores = Inspect.Social.Ignore.List() | |||
| Parameter | Type | Datatype | Description |
|---|---|---|---|
| ignores | result | table | A table containing the player's current ignored players. |