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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 |
--[[
This file and its accompanying XML file exist for when we decide to rename/refactor
a system and want ensure backward compatibility for addons. Just alias the old functions
and inherit any controls you change in a newly commented section.
--]]
-- Adds aliases to source object for the specified methods of target object.
internalassert ( sourceObject [ methodName ] == nil , string . format ( "Method '%s' of sourceObject already exists." , methodName ) )
internalassert ( type ( targetObject [ methodName ] ) == "function" , string . format ( "Method '%s' of targetObject does not exist." , methodName ) )
sourceObject [ methodName ] = function ( originalSelf , ... )
return targetObject [ methodName ] ( targetObject , ... )
end
end
end
--ZO_MoneyInput Changes to ZO_CurrencyInput
MONEY_INPUT = CURRENCY_INPUT
ZO_DefaultMoneyInputField_SetUsePlayerGoldAsMax = ZO_DefaultCurrencyInputField_SetUsePlayerCurrencyAsMax
--TopLevel CurrencyInput control
ZO_MoneyInput = ZO_CurrencyInput
EVENT_RESURRECT_FAILURE = EVENT_RESURRECT_RESULT
RESURRECT_FAILURE_REASON_DECLINED = RESURRECT_RESULT_DECLINED
RESURRECT_FAILURE_REASON_ALREADY_CONSIDERING = RESURRECT_RESULT_ALREADY_CONSIDERING
RESURRECT_FAILURE_REASON_SOUL_GEM_IN_USE = RESURRECT_RESULT_SOUL_GEM_IN_USE
RESURRECT_FAILURE_REASON_NO_SOUL_GEM = RESURRECT_RESULT_NO_SOUL_GEM
-- Cadwell progression is now separate from player difficulty
EVENT_DIFFICULTY_LEVEL_CHANGED = EVENT_CADWELL_PROGRESSION_LEVEL_CHANGED
PLAYER_DIFFICULTY_LEVEL_FIRST_ALLIANCE = CADWELL_PROGRESSION_LEVEL_BRONZE
PLAYER_DIFFICULTY_LEVEL_SECOND_ALLIANCE = CADWELL_PROGRESSION_LEVEL_SILVER
PLAYER_DIFFICULTY_LEVEL_THIRD_ALLIANCE = CADWELL_PROGRESSION_LEVEL_GOLD
-- Player Inventory List Control
ZO_PlayerInventoryBackpack = ZO_PlayerInventoryList
ZO_PlayerInventorySearch = ZO_PlayerInventorySearchFiltersTextSearch
ZO_PlayerBankSearch = ZO_PlayerBankSearchFiltersTextSearch
ZO_HouseBankSearch = ZO_HouseBankSearchFiltersTextSearch
ZO_GuildBankSearch = ZO_GuildBankSearchFiltersTextSearch
ZO_CraftBagSearch = ZO_CraftBagSearchFiltersTextSearch
ZO_PlayerInventorySearchBox = ZO_PlayerInventorySearchFiltersTextSearchBox
ZO_PlayerBankSearchBox = ZO_PlayerBankSearchFiltersTextSearchBox
ZO_HouseBankSearchBox = ZO_HouseBankSearchFiltersTextSearchBox
ZO_GuildBankSearchBox = ZO_GuildBankSearchFiltersTextSearchBox
ZO_CraftBagSearchBox = ZO_CraftBagSearchFiltersTextSearchBox
--Raid function rename
--ItemStoleType is now OwnershipStatus
ITEM_STOLEN_TYPE_ANY = OWNERSHIP_STATUS_ANY
ITEM_STOLEN_TYPE_NOT_STOLEN = OWNERSHIP_STATUS_NOT_STOLEN
ITEM_STOLEN_TYPE_STOLEN = OWNERSHIP_STATUS_STOLEN
RESURRECT_FAILURE_REASON_ALREADY_CONSIDERING = RESURRECT_RESULT_ALREADY_CONSIDERING
RESURRECT_FAILURE_REASON_DECLINED = RESURRECT_RESULT_DECLINED
EVENT_GUILD_MEMBER_CHARACTER_VETERAN_RANK_CHANGED = EVENT_GUILD_MEMBER_CHARACTER_CHAMPION_POINTS_CHANGED
EVENT_FRIEND_CHARACTER_VETERAN_RANK_CHANGED = EVENT_FRIEND_CHARACTER_CHAMPION_POINTS_CHANGED
local maxLevel = nil
local maxChampPoints = nil
return minLevel , maxLevel , minChampPoints , maxChampPoints
end
--Renamed some NameplateDisplayChoice settings
NAMEPLATE_CHOICE_OFF = NAMEPLATE_CHOICE_NEVER
NAMEPLATE_CHOICE_ON = NAMEPLATE_CHOICE_ALWAYS
NAMEPLATE_CHOICE_HURT = NAMEPLATE_CHOICE_INJURED_OR_TARGETED
--Stat Change
STAT_WEAPON_POWER = STAT_WEAPON_AND_SPELL_DAMAGE
-- VR Removal
VETERAN_POINTS_GAIN = EVENT_EXPERIENCE_GAIN
VETERAN_POINTS_UPDATE = CHAMPION_POINT_UPDATE
EVENT_FRIEND_CHARACTER_VETERAN_RANK_CHANGED = EVENT_FRIEND_CHARACTER_CHAMPION_POINTS_CHANGED
EVENT_GUILD_MEMBER_CHARACTER_VETERAN_RANK_CHANGED = EVENT_GUILD_MEMBER_CHARACTER_CHAMPION_POINTS_CHANGED
--Traits Changed
ITEM_TRAIT_TYPE_ARMOR_EXPLORATION = ITEM_TRAIT_TYPE_ARMOR_PROSPEROUS
ITEM_TRAIT_TYPE_WEAPON_WEIGHTED = ITEM_TRAIT_TYPE_WEAPON_DECISIVE
--Dyeing Changed
SetPendingSlotDyes ( RESTYLE_MODE_EQUIPMENT , ZO_RESTYLE_DEFAULT_SET_INDEX , equipSlot , primary , secondary , accent )
end
end
-- Removed 'by-zone' scaling for OneTamriel. Zone is no longer relevant to quest rewards.
end
--Merged these two events in to one event that also includes success
EVENT_COLLECTIBLE_ON_COOLDOWN = EVENT_COLLECTIBLE_USE_RESULT
EVENT_COLLECTIBLE_USE_BLOCKED = EVENT_COLLECTIBLE_USE_RESULT
--Renamed quest instance type function to match the others
--Recipes can now have multiple tradeskill requirements
if tradeskill == CRAFTING_TYPE_PROVISIONING then
return levelRequirement
end
end
return 0
end
--renamed this type
COLLECTIBLE_CATEGORY_TYPE_TROPHY = COLLECTIBLE_CATEGORY_TYPE_MEMENTO
--Condensed these into one function
end
end
end
-- Added category to item tags
end
--Switched Activity Finder API from activityType and index based to Id based
if activityId > 0 then
end
end
do
end
GetLFGOptionKeyboardDescriptionTextures = function ( ... ) return BasicTypeIndexToIdTemplate ( GetActivityKeyboardDescriptionTextures , ... ) end
GetLFGOptionGamepadDescriptionTexture = function ( ... ) return BasicTypeIndexToIdTemplate ( GetActivityGamepadDescriptionTexture , ... ) end
GetLFGOptionGroupType = function ( ... ) return BasicTypeIndexToIdTemplate ( GetActivityGroupType , ... ) end
DoesPlayerMeetLFGLevelRequirements = function ( ... ) return BasicTypeIndexToIdTemplate ( DoesPlayerMeetActivityLevelRequirements , ... ) end
DoesGroupMeetLFGLevelRequirements = function ( ... ) return BasicTypeIndexToIdTemplate ( DoesGroupMeetActivityLevelRequirements , ... ) end
GetRequiredLFGCollectibleId = function ( ... ) return BasicTypeIndexToIdTemplate ( GetRequiredActivityCollectibleId , ... ) end
end
if index then
end
end
end
if activityId then
end
end
end
-- Queueing by activity type is no longer supported, replaced by LFGSets
-- Do nothing
end
return false
end
local REWARD_UI_DATA_ID = 0
local XP_REWARD = 0
return REWARD_UI_DATA_ID , XP_REWARD
end
--Used to be dungeon only. Now there's also battlegrounds. Should use GetLFGCooldownTimeRemainingSeconds now.
end
--Renamed the objective functions to indicate that they aren't specific to AvA anymore
--Exposed the quest item id instead of duplicating the tooltip function for each system
end
end
end
return GUILD_PERMISSION_MAX_VALUE
end
-- Removal of ItemStyle Enum
end
end
return name , icon , sellPrice , meetsUsageRequirement , itemStyleId , displayQuality , alwaysHideIfLocked
end
ITEMSTYLE_NONE = 0
ITEMSTYLE_RACIAL_BRETON = 1
ITEMSTYLE_RACIAL_REDGUARD = 2
ITEMSTYLE_RACIAL_ORC = 3
ITEMSTYLE_RACIAL_DARK_ELF = 4
ITEMSTYLE_RACIAL_NORD = 5
ITEMSTYLE_RACIAL_ARGONIAN = 6
ITEMSTYLE_RACIAL_HIGH_ELF = 7
ITEMSTYLE_RACIAL_WOOD_ELF = 8
ITEMSTYLE_RACIAL_KHAJIIT = 9
ITEMSTYLE_UNIQUE = 10
ITEMSTYLE_ORG_THIEVES_GUILD = 11
ITEMSTYLE_ORG_DARK_BROTHERHOOD = 12
ITEMSTYLE_DEITY_MALACATH = 13
ITEMSTYLE_AREA_DWEMER = 14
ITEMSTYLE_AREA_ANCIENT_ELF = 15
ITEMSTYLE_DEITY_AKATOSH = 16
ITEMSTYLE_AREA_REACH = 17
ITEMSTYLE_ENEMY_BANDIT = 18
ITEMSTYLE_ENEMY_PRIMITIVE = 19
ITEMSTYLE_ENEMY_DAEDRIC = 20
ITEMSTYLE_DEITY_TRINIMAC = 21
ITEMSTYLE_AREA_ANCIENT_ORC = 22
ITEMSTYLE_ALLIANCE_DAGGERFALL = 23
ITEMSTYLE_ALLIANCE_EBONHEART = 24
ITEMSTYLE_ALLIANCE_ALDMERI = 25
ITEMSTYLE_UNDAUNTED = 26
ITEMSTYLE_RAIDS_CRAGLORN = 27
ITEMSTYLE_GLASS = 28
ITEMSTYLE_AREA_XIVKYN = 29
ITEMSTYLE_AREA_SOUL_SHRIVEN = 30
ITEMSTYLE_ENEMY_DRAUGR = 31
ITEMSTYLE_ENEMY_MAORMER = 32
ITEMSTYLE_AREA_AKAVIRI = 33
ITEMSTYLE_RACIAL_IMPERIAL = 34
ITEMSTYLE_AREA_YOKUDAN = 35
ITEMSTYLE_UNIVERSAL = 36
ITEMSTYLE_AREA_REACH_WINTER = 37
ITEMSTYLE_AREA_TSAESCI = 38
ITEMSTYLE_ENEMY_MINOTAUR = 39
ITEMSTYLE_EBONY = 40
ITEMSTYLE_ORG_ABAHS_WATCH = 41
ITEMSTYLE_HOLIDAY_SKINCHANGER = 42
ITEMSTYLE_ORG_MORAG_TONG = 43
ITEMSTYLE_AREA_RA_GADA = 44
ITEMSTYLE_ENEMY_DROMOTHRA = 45
ITEMSTYLE_ORG_ASSASSINS = 46
ITEMSTYLE_ORG_OUTLAW = 47
ITEMSTYLE_ORG_REDORAN = 48
ITEMSTYLE_ORG_HLAALU = 49
ITEMSTYLE_ORG_ORDINATOR = 50
ITEMSTYLE_ORG_TELVANNI = 51
ITEMSTYLE_ORG_BUOYANT_ARMIGER = 52
ITEMSTYLE_HOLIDAY_FROSTCASTER = 53
ITEMSTYLE_AREA_ASHLANDER = 54
ITEMSTYLE_ORG_WORM_CULT = 55
ITEMSTYLE_ENEMY_SILKEN_RING = 56
ITEMSTYLE_ENEMY_MAZZATUN = 57
ITEMSTYLE_HOLIDAY_GRIM_HARLEQUIN = 58
ITEMSTYLE_HOLIDAY_HOLLOWJACK = 59
ITEMSTYLE_MIN_VALUE = 1
--Currency Generalization
end
end
end
end
end
end
end
end
end
end
return GetMaxCurrencyTransfer ( currencyType , CURRENCY_LOCATION_GUILD_BANK , CURRENCY_LOCATION_CHARACTER )
end
return GetMaxCurrencyTransfer ( currencyType , CURRENCY_LOCATION_CHARACTER , CURRENCY_LOCATION_GUILD_BANK )
end
end
end
end
end
end
end
end
end
end
end
end
end
end
MAX_PLAYER_MONEY = MAX_PLAYER_CURRENCY
end
-- The concept of "abilities earned at a level" went away when we added Skill Lines, so we finally removed API for it
else
return 0
end
end
-- The concept of "abilities earned at a level" went away when we added Skill Lines, so we finally removed API for it
else
return "" , "" , 0 , 0
end
end
--
-- Map related aliases
--
-- Battleground pin enum fixup
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_A_NEUTRAL = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_A_NEUTRAL
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_A_FIRE_DRAKES = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_A_FIRE_DRAKES
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_A_PIT_DAEMONS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_A_PIT_DAEMONS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_A_STORM_LORDS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_A_STORM_LORDS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_B_NEUTRAL = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_B_NEUTRAL
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_B_FIRE_DRAKES = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_B_FIRE_DRAKES
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_B_PIT_DAEMONS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_B_PIT_DAEMONS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_B_STORM_LORDS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_B_STORM_LORDS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_C_NEUTRAL = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_C_NEUTRAL
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_C_FIRE_DRAKES = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_C_FIRE_DRAKES
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_C_PIT_DAEMONS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_C_PIT_DAEMONS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_C_STORM_LORDS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_C_STORM_LORDS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_D_NEUTRAL = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_D_NEUTRAL
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_D_FIRE_DRAKES = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_D_FIRE_DRAKES
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_D_PIT_DAEMONS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_D_PIT_DAEMONS
MAP_PIN_TYPE_BGPIN_MULTI_CAPTURE_AREA_D_STORM_LORDS = MAP_PIN_TYPE_BGPIN_CAPTURE_AREA_D_STORM_LORDS
ZO_MapPin . PulseAninmation = ZO_MapPin . PulseAnimation
--Added Tracking Level Map Pin Function
SetMapQuestPinsTrackingLevel ( questIndex , assisted and TRACKING_LEVEL_ASSISTED or TRACKING_LEVEL_UNTRACKED )
end
end
end
end
end
end
end
end
-- The initial function GetMapInfo treated a luaIndex like an Id. As a result the index was off by one
-- To keep this backward compatible function consistent with the previous behavior we have to offset it by one
end
--
-- End map related aliases
--
VISUAL_LAYER_HEADWEAR = VISUAL_LAYER_HAT
-- Unifying smithing filters
ZO_SMITHING_IMPROVEMENT_SHARED_FILTER_TYPE_ARMOR = SMITHING_FILTER_TYPE_ARMOR
ZO_SMITHING_IMPROVEMENT_SHARED_FILTER_TYPE_WEAPONS = SMITHING_FILTER_TYPE_WEAPONS
ZO_SMITHING_EXTRACTION_SHARED_FILTER_TYPE_ARMOR = SMITHING_FILTER_TYPE_ARMOR
ZO_SMITHING_EXTRACTION_SHARED_FILTER_TYPE_WEAPONS = SMITHING_FILTER_TYPE_WEAPONS
ZO_SMITHING_EXTRACTION_SHARED_FILTER_TYPE_RAW_MATERIALS = SMITHING_FILTER_TYPE_RAW_MATERIALS
ZO_SMITHING_CREATION_FILTER_TYPE_WEAPONS = SMITHING_FILTER_TYPE_WEAPONS
ZO_SMITHING_CREATION_FILTER_TYPE_ARMOR = SMITHING_FILTER_TYPE_ARMOR
ZO_SMITHING_CREATION_FILTER_TYPE_SET_WEAPONS = SMITHING_FILTER_TYPE_SET_WEAPONS
ZO_SMITHING_CREATION_FILTER_TYPE_SET_ARMOR = SMITHING_FILTER_TYPE_SET_ARMOR
ZO_SMITHING_RESEARCH_FILTER_TYPE_WEAPONS = SMITHING_FILTER_TYPE_WEAPONS
ZO_SMITHING_RESEARCH_FILTER_TYPE_ARMOR = SMITHING_FILTER_TYPE_ARMOR
ZO_RETRAIT_FILTER_TYPE_ARMOR = SMITHING_FILTER_TYPE_ARMOR
ZO_RETRAIT_FILTER_TYPE_WEAPONS = SMITHING_FILTER_TYPE_WEAPONS
SMITHING_MODE_REFINMENT = SMITHING_MODE_REFINEMENT
-- Rewards Refactor
EVENT_CLAIM_LEVEL_UP_REWARD_RESULT = EVENT_CLAIM_REWARD_RESULT
-- Collectible entitlement restrictions are now handled on the acquisition end only
return false
end
-- Crafting animation bugfix. Please also consider ZO_CraftingUtils_IsPerformingCraftProcess()
--Collectible hide mode rework
end
else
end
end
-- LFG now only supports single role selection
do
local isDPS = false
local isHealer = false
local isTank = false
if role == LFG_ROLE_DPS then
isDPS = true
elseif role == LFG_ROLE_HEAL then
isHealer = true
elseif role == LFG_ROLE_TANK then
isTank = true
end
return isDPS , isHealer , isTank
end
end
end
end
return true
end
if selected then
end
end
-- Renamed to specify being transformed into werewolf form rather than having the skill line
--Skills refactor
if skillTypeData then
return pressed , normal , mouseOver , announce
end
end
function ZO_Skills_GenerateAbilityName ( stringIndex , name , currentUpgradeLevel , maxUpgradeLevel , progressionIndex )
if currentUpgradeLevel and maxUpgradeLevel then
elseif progressionIndex then
if rank > 0 then
end
end
end
if skillData then
end
end
if skillData then
end
end
local skillType , skillLineIndex , skillIndex = GetSkillAbilityIndicesFromProgressionIndex ( progressionIndex )
if skillData then
end
end
end
end
EVENT_SKILL_ABILITY_PROGRESSIONS_UPDATED = EVENT_SKILLS_FULL_UPDATE
if skillLineData then
return skillLineData : GetName ( ) , skillLineData : GetCurrentRank ( ) , skillLineData : IsAvailable ( ) , skillLineData : GetId ( ) , skillLineData : IsAdvised ( ) , skillLineData : GetUnlockText ( ) , skillLineData : IsActive ( ) , skillLineData : IsDiscovered ( )
end
return "" , 1 , false , 0 , false , "" , false , false
end
-- Campaign Bonus Ability Refactor
end
end
end
-- Action slots refactor
EVENT_ACTION_SLOTS_FULL_UPDATE = EVENT_ACTION_SLOTS_ACTIVE_HOTBAR_UPDATED
EVENT_ACTION_BAR_SLOTTING_ALLOWED_STATE_CHANGED = EVENT_ACTION_BAR_IS_RESPECCABLE_BAR_STATE_CHANGED
end
end
end
-- You can now weapon swap to unarmed, so this function no longer means anything to the UI
return true
end
-- rename rankIndex -> rank: ranks are from 1-4, and not array indices
GetUpgradeSkillHighestRankIndexAvailableAtSkillLineRank = GetUpgradeSkillHighestRankAvailableAtSkillLineRank
-- removed placeholder collectibles
return false
end
-- Renamed to better reflect behavior: the output isn't localized, it's delimited.
-- Removed alliance war guest campaigns. You can now join any campaign, so no need to guest anywhere.
return 0
end
return 0
end
-- do nothing
end
-- GetCraftingSkillLineIndices removed
if skillLineData then
end
return 0 , 0
end
-- Deconstruction now supports multiple items per deconstruct
end
end
end
end
return CanItemBeRefined ( bagId , slotIndex , craftingType ) or CanItemBeDeconstructed ( bagId , slotIndex , craftingType )
end
-- The only information you need to determine if a trait is known is the pattern
function IsSmithingTraitKnownForResult ( patternIndex , materialIndex , materialQuantity , styleId , traitIndex )
local traitType = traitIndex - 1 -- traitIndex is just the trait type offset by one so it behaves like a lua index, let's just manually convert
end
-- CHAT_SYSTEM refactor
-- Many of the internals/method calls have changed in chat system to support multiple chat systems at once.
-- This will preserve compatibility with addons that add messages to chat using CHAT_SYSTEM:AddMessage(), but more complex chat addons may need rewrites.
CHAT_SYSTEM = KEYBOARD_CHAT_SYSTEM
end
end
end
end
-- State machine refactor
end
end
-- Object Pools
end
end
-- Create a separate item display quality distinct from an item's functional quality support
TOOLTIP_GAME_DATA_STOLEN = TOOLTIP_GAME_DATA_MYTHIC_OR_STOLEN
ITEM_QUALITY_TRASH = ITEM_FUNCTIONAL_QUALITY_TRASH
ITEM_QUALITY_NORMAL = ITEM_FUNCTIONAL_QUALITY_NORMAL
ITEM_QUALITY_MAGIC = ITEM_FUNCTIONAL_QUALITY_MAGIC
ITEM_QUALITY_ARCANE = ITEM_FUNCTIONAL_QUALITY_ARCANE
ITEM_QUALITY_ARTIFACT = ITEM_FUNCTIONAL_QUALITY_ARTIFACT
ITEM_QUALITY_LEGENDARY = ITEM_FUNCTIONAL_QUALITY_LEGENDARY
ITEM_QUALITY_MIN_VALUE = ITEM_FUNCTIONAL_QUALITY_MIN_VALUE
ITEM_QUALITY_MAX_VALUE = ITEM_FUNCTIONAL_QUALITY_MAX_VALUE
ITEM_QUALITY_ITERATION_BEGIN = ITEM_FUNCTIONAL_QUALITY_ITERATION_BEGIN
ITEM_QUALITY_ITERATION_END = ITEM_FUNCTIONAL_QUALITY_ITERATION_END
-- Interact Window
function ZO_InteractionManager : OnEndInteraction ( ... ) --This name was always an action, not a reaction
end
end
end
-- ZO_HelpManager was really specifically keyboard help, naming to meet standards because we need an actual manager now
ZO_HelpManager = ZO_Help_Keyboard
-- Renamed event to be more consistent with our naming conventions
EVENT_HELP_SHOW_SPECIFIC_PAGE = EVENT_SHOW_SPECIFIC_HELP_PAGE
end
-- ZO_RetraitStation_Base refactor.
do
local ALIAS_METHODS =
{
"IsItemAlreadySlottedToCraft" ,
"CanItemBeAddedToCraft" ,
"AddItemToCraft" ,
"RemoveItemFromCraft" ,
"OnRetraitResult" ,
"HandleDirtyEvent" ,
}
end
ZO_COMBOBOX_SUPRESS_UPDATE = ZO_COMBOBOX_SUPPRESS_UPDATE
-- No longer let the leaderboardObject do the adding and removing directly itself, in case the leaderboard object is no longer around when we need to remove it (ESO-596810)
end
end
end
end
ZO_RETRAIT_STATION_KEYBOARD . retraitPanel = ZO_RETRAIT_KEYBOARD
end
end
-- Preview Refactor
GetInventoryItemAsFurniturePreviewVariationDisplayName = GetInventoryItemPreviewVariationDisplayName
GetNumTradingHouseSearchResultItemAsFurniturePreviewVariations = GetNumTradingHouseSearchResultItemPreviewVariations
GetTradingHouseSearchResultItemAsFurniturePreviewVariationDisplayName = GetTradingHouseSearchResultItemPreviewVariationDisplayName
-- Outfits Naming Update
ZO_Restyle_Station_Gamepad = ZO_RestyleStation_Gamepad
ZO_Restyle_Station_Gamepad_CleanupAnimationOnControl = ZO_RestyleStation_Gamepad_CleanupAnimationOnControl
ZO_Restyle_Station_Gamepad_TopLevel = ZO_RestyleStation_Gamepad_TopLevel
-- skills companion refactor
return function ( skillType , skillLineIndex , ... )
end
end
ZO_SLOTTABLE_ACTION_TYPE_SKILL = ZO_SLOTTABLE_ACTION_TYPE_PLAYER_SKILL
ZO_SlottableSkill = ZO_SlottablePlayerSkill
end
end
end
-- Item Comparison --
if equipSlot1 == EQUIP_SLOT_NONE then
equipSlot1 = nil
end
if equipSlot2 == EQUIP_SLOT_NONE then
equipSlot2 = nil
end
return equipSlot1 , equipSlot2
end
if equipSlot1 == EQUIP_SLOT_NONE then
equipSlot1 = nil
end
if equipSlot2 == EQUIP_SLOT_NONE then
equipSlot2 = nil
end
return equipSlot1 , equipSlot2
end
-- Layout Improvements
-- ZO_Tree
end
-- ScrollTemplates
|