1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
--[[Gamercard Utils]] --
if wasFound then
else
end
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromCharacterName ( characterName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , OnGamerCardInfoRequestReady )
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromDisplayName ( displayName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , OnGamerCardInfoRequestReady )
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromDisplayNameOrFallbackType ( displayName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , idRequestType , OnGamerCardInfoRequestReady , ... )
end
--[[Friend Request Utils]] --
if wasInfoFound then
end
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromCharacterName ( characterName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , OnConsoleFriendRequestReady )
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromDisplayName ( displayName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , OnConsoleFriendRequestReady )
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromDisplayNameOrFallbackType ( displayName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , idRequestType , OnConsoleFriendRequestReady , ... )
end
--[[Add Ignore Utils]] --
if wasInfoFound then
end
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromDisplayName ( displayName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , OnConsoleIgnoreReady )
end
end
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromDisplayNameOrFallbackType ( displayName , ZO_PLAYER_CONSOLE_INFO_REQUEST_DONT_BLOCK , idRequestType , OnConsoleIgnoreReady , ... )
end
end
--[[Add Friend Utils]] --
if hasResult then
end
end
local DONT_INCLUDE_ONLINE_FRIENDS = false
local DONT_INCLUDE_OFFLINE_FRIENDS = false
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromUserListDialog ( OnUserListDialogIdSelectedForFriendAdd , GetString ( SI_GAMEPAD_CONSOLE_SELECT_FOR_FRIEND_ADD ) , DONT_INCLUDE_ONLINE_FRIENDS , DONT_INCLUDE_OFFLINE_FRIENDS )
end
end
--[[Invite to Group Utils]] --
if hasResult then
local NOT_SENT_FROM_CHAT = false
local DISPLAY_INVITED_MESSAGE = true
TryGroupInviteByName ( ZO_FormatManualNameEntry ( displayName ) , NOT_SENT_FROM_CHAT , DISPLAY_INVITED_MESSAGE )
end
end
local INCLUDE_ONLINE_FRIENDS = true
local DONT_INCLUDE_OFFLINE_FRIENDS = false
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromUserListDialog ( OnUserListDialogIdSelectedForGroupInvite , GetString ( SI_GAMEPAD_CONSOLE_SELECT_FOR_INVITE ) , INCLUDE_ONLINE_FRIENDS , DONT_INCLUDE_OFFLINE_FRIENDS )
end
--[[Invite to Guild Utils]] --
if hasResult then
end
end
local INCLUDE_ONLINE_FRIENDS = true
local INCLUDE_OFFLINE_FRIENDS = true
PLAYER_CONSOLE_INFO_REQUEST_MANAGER : RequestIdFromUserListDialog ( OnUserListDialogIdSelectedForGuildInvite , GetString ( SI_GAMEPAD_CONSOLE_SELECT_FOR_INVITE ) , INCLUDE_ONLINE_FRIENDS , INCLUDE_OFFLINE_FRIENDS )
end
--[[Communication Utils]] --
ZO_CONSOLE_CAN_COMMUNICATE_RESULT_SUCCESS = 0
ZO_CONSOLE_CAN_COMMUNICATE_RESULT_NO_SUCH_PLAYER = 1
ZO_CONSOLE_CAN_COMMUNICATE_RESULT_NOT_ALLOWED = 2
ZO_CONSOLE_CAN_COMMUNICATE_RESULT_GLOBALLY_RESTRICTED = 3
ZO_CONSOLE_CAN_COMMUNICATE_ERROR_DIALOG = 1
ZO_CONSOLE_CAN_COMMUNICATE_ERROR_ALERT = 2
if errorType == ZO_CONSOLE_CAN_COMMUNICATE_ERROR_DIALOG then
ZO_Dialogs_ShowGamepadDialog ( "CONSOLE_COMMUNICATION_PERMISSION_ERROR" , nil , { mainTextParams = { errorText } } )
elseif errorType == ZO_CONSOLE_CAN_COMMUNICATE_ERROR_ALERT then
end
end
function ZO_ConsoleAttemptInteractOrError ( callback , displayName , block , errorType , idRequestType , ... )
ReportCommunicationError ( GetString ( SI_CONSOLE_COMMUNICATION_PERMISSION_ERROR_NOT_ALLOWED ) , errorType )
else
end
end
function ZO_ConsoleAttemptCommunicateOrError ( callback , displayName , block , errorType , idRequestType , ... )
ReportCommunicationError ( GetString ( SI_CONSOLE_COMMUNICATION_PERMISSION_ERROR_GLOBALLY_RESTRICTED ) , errorType )
return
end
end |