Friends
¶
Grants access to your friends dlist.
Forms¶
friends Friends
¶
- Access friends data
datatype friends
¶
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)())