Пользовательские дополнения

На главную


social.GetFriendList()

Возвращает список друзей текущего аватара игрока. Подробности о каждом элементе списка можно получить по social.GetFriendInfo().

-- библиотека:
social

-- объявление:
function GetFriendList()

-- параметры:
нет

-- возвращаемые значения
table of ObjectId - индексированная c 0 таблица c идентификаторами друзей из списка друзей игрока:

-- пример
local friends = social.GetFriendList()
for i = 0, GetTableSize( friends ) - 1 do
  local friendInfo = social.GetFriendInfo( friends[i] )
  if friendInfo then
    local friendName = friendInfo.name
  end
end

Связанные страницы: "CategoryLuaApi" "CategorySocial"

EnumAvatarFriendIgnoreListsError
EnumCreateRevivalRollResultStatus
EventAvatarAddedToFriendList
EventAvatarFriendAdded
EventAvatarFriendAltNameChanged
EventAvatarFriendDescriptionChanged
EventAvatarFriendIgnoreListsError
EventAvatarFriendInfoChanged
EventAvatarFriendLevelChanged
EventAvatarFriendListChanged
EventAvatarFriendListLoaded
EventAvatarFriendMoodChanged
EventAvatarFriendMutualChanged
EventAvatarFriendOnlineChanged
EventAvatarFriendRemoved
EventAvatarFriendSexChanged
EventAvatarFriendZoneChanged
EventAvatarIgnoreAdded
EventAvatarIgnoreDescriptionChanged
EventAvatarIgnoreListChanged
EventAvatarIgnoreListLoaded
EventAvatarIgnoreRemoved
EventBestFriendReturnStateChanged
EventBestFriendTeleportSpellChanged
EventBestFriendTeleportSpellEffect
EventBestFriendTeleportStateChanged
EventRevivalRollResult
EventRevivalsChanged
FunctionHangarCanLendShip
FunctionHangarGetTakeAwaySpellId
FunctionHangarLendShip
FunctionHangarTakeAwayShip
FunctionSocialAddFriend
FunctionSocialAddIgnore
FunctionSocialCanReturn
FunctionSocialCanSocialize
FunctionSocialCanTeleport
FunctionSocialEndFriendship
FunctionSocialGetBackMount
FunctionSocialGetFriend
FunctionSocialGetFriendInfo
FunctionSocialGetFriendList
FunctionSocialGetFriendshipInfo
FunctionSocialGetIgnoreInfo
FunctionSocialGetIgnoreList
FunctionSocialGetRevivalRollInfo
FunctionSocialGetTeleportSpell
FunctionSocialGiveBackMount
FunctionSocialIsFriendListLoaded
FunctionSocialIsIgnoreListLoaded
FunctionSocialLendMount
FunctionSocialRemoveFriend
FunctionSocialRemoveIgnore
FunctionSocialReturnFromBestFriend
FunctionSocialTeleportToBestFriend


CategoryLuaApi CategoryFunction CategorySocial

На главную