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 |
do
local pendingJumpToGroupLeaderPrompt = nil
--LFG groups use their own jump notification
return
end
--Gamepad dialogs are attached to scenes, so if one isn't ready on load, then defer it to EVENT_PLAYER_ACTIVATED
return
end
--The location of the group leader may not be available immediately
if ( pendingJumpToGroupLeaderPrompt ) then
if ( groupLeaderZoneName ~= "" ) then
pendingJumpToGroupLeaderPrompt = nil
if canJump then
ZO_Dialogs_ShowPlatformDialog ( "JUMP_TO_GROUP_LEADER_OCCURANCE_PROMPT" , nil , { mainTextParams = { groupLeaderZoneName } } )
else
ZO_Dialogs_ShowPlatformDialog ( "JUMP_TO_GROUP_LEADER_WORLD_PROMPT" , nil , { mainTextParams = { groupLeaderZoneName } } )
end
elseif result == JUMP_TO_PLAYER_RESULT_ZONE_COLLECTIBLE_LOCKED then
local message = zo_strformat ( SI_COLLECTIBLE_LOCKED_FAILURE_CAUSED_BY_JUMP_TO_GROUP_LEADER , groupLeaderZoneName )
local marketOperation = MARKET_OPEN_OPERATION_DLC_FAILURE_TELEPORT_TO_GROUP
ZO_Dialogs_ShowPlatformDialog ( "COLLECTIBLE_REQUIREMENT_FAILED" , { collectibleData = collectibleData , marketOpenOperation = marketOperation } , { mainTextParams = { message , collectibleName , categoryName } } )
end
end
end
end
end
end
end
pendingJumpToGroupLeaderPrompt = true
end
end
end
end
end
if pendingJumpToGroupLeaderPrompt then
end
end
if pendingJumpToGroupLeaderPrompt then
end
end
EVENT_MANAGER : RegisterForEvent ( "JumpToLeader_OnUnitCreated" , EVENT_UNIT_CREATED , function ( event , ... ) OnUnitCreated ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "JumpToLeader_OnGroupMemberJoined" , EVENT_GROUP_MEMBER_JOINED , function ( event , ... ) OnGroupMemberJoined ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "JumpToLeader_OnZoneUpdate" , EVENT_ZONE_UPDATE , function ( event , ... ) OnZoneUpdate ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "JumpToLeader_OnPlayerActivated" , EVENT_PLAYER_ACTIVATED , function ( event , ... ) OnPlayerActivated ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "JumpToLeader_OnLeaderUpdate" , EVENT_LEADER_UPDATE , function ( eventCode , ... ) OnLeaderUpdate ( ... ) end )
end |