Friends
¶
Grants access to your friends list.
Forms¶
friend Friends
¶
- Access friends data
Associated DataTypes¶
friend¶
- Provides access to your friends list data.
-
Members
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}
| Echo the 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)())