Skip to content

Friends

Grants access to your friends dlist.

Forms

Type Form Description
friends Friends Access friends data

Associated DataTypes

friends Type

Members

Type Member Description
bool Friend[name] Returns TRUE if name is on your friend list
string Friend[#] Returns the name of friend list member #
string To String Number of friends on your friends list

Usage

Example

| Echo the number of friends that you have
/echo ${Friends}

| Ech othe name of your first friend
/echo ${Friends.Friend[1]}
-- Echo the number of friends that you have
print(mq.TLO.Friends())

-- Echo the name of your firsrt friend
print(mq.TLO.Friends.Friend(1)())