hondacrx
2023-03-23 08:03:41 -04:00
parent c00e66442d
commit 460a7c0ca9
29 changed files with 541 additions and 431 deletions
+7
View File
@@ -93,4 +93,11 @@ namespace Framework.Constants
// 0x40
// 0x80
}
public enum ChatWhisperTargetStatus
{
CanWhisper = 0,
Offline = 1,
WrongFaction = 2
}
}
+15 -1
View File
@@ -58,7 +58,14 @@ namespace Framework.Constants
SocketColor.RelicWater,
SocketColor.RelicLife,
SocketColor.RelicWind,
SocketColor.RelicHoly
SocketColor.RelicHoly,
SocketColor.PunchcardRed,
SocketColor.PunchcardYellow,
SocketColor.PunchcardBlue,
SocketColor.Domination,
SocketColor.Cypher,
SocketColor.Tinker,
SocketColor.Primordial
};
public static ItemModifier[] AppearanceModifierSlotBySpec =
@@ -194,6 +201,13 @@ namespace Framework.Constants
RelicLife = 0x04000,
RelicWind = 0x08000,
RelicHoly = 0x10000,
PunchcardRed = 0x20000,
PunchcardYellow = 0x40000,
PunchcardBlue = 0x80000,
Domination = 0x100000,
Cypher = 0x200000,
Tinker = 0x400000,
Primordial = 0x800000,
Standard = (Red | Yellow | Blue)
}
File diff suppressed because it is too large Load Diff
+37 -35
View File
@@ -3006,41 +3006,43 @@ namespace Framework.Constants
SocketingCypherGemOnlyInCypherslot = 1077,
SocketingRequiresTinkerGem = 1078,
SocketingTinkerGemOnlyInTinkerslot = 1079,
LevelLinkingResultLinked = 1080,
LevelLinkingResultUnlinked = 1081,
ClubFinderErrorPostClub = 1082,
ClubFinderErrorApplyClub = 1083,
ClubFinderErrorRespondApplicant = 1084,
ClubFinderErrorCancelApplication = 1085,
ClubFinderErrorTypeAcceptApplication = 1086,
ClubFinderErrorTypeNoInvitePermissions = 1087,
ClubFinderErrorTypeNoPostingPermissions = 1088,
ClubFinderErrorTypeApplicantList = 1089,
ClubFinderErrorTypeApplicantListNoPerm = 1090,
ClubFinderErrorTypeFinderNotAvailable = 1091,
ClubFinderErrorTypeGetPostingIds = 1092,
ClubFinderErrorTypeJoinApplication = 1093,
ClubFinderErrorTypeRealmNotEligible = 1094,
ClubFinderErrorTypeFlaggedRename = 1095,
ClubFinderErrorTypeFlaggedDescriptionChange = 1096,
ItemInteractionNotEnoughGold = 1097,
ItemInteractionNotEnoughCurrency = 1098,
PlayerChoiceErrorPendingChoice = 1099,
SoulbindInvalidConduit = 1100,
SoulbindInvalidConduitItem = 1101,
SoulbindInvalidTalent = 1102,
SoulbindDuplicateConduit = 1103,
ActivateSoulbindS = 1104,
ActivateSoulbindFailedRestArea = 1105,
CantUseProfanity = 1106,
NotInPetBattle = 1107,
NotInNpe = 1108,
NoSpec = 1109,
NoDominationshardOverwrite = 1110,
UseWeeklyRewardsDisabled = 1111,
CrossFactionGroupJoined = 1112,
CantTargetUnfriendlyInOverworld = 1113,
EquipablespellsSlotsFull = 1114
SocketingRequiresPrimordialGem = 1080,
SocketingPrimordialGemOnlyInPrimordialslot = 1081,
LevelLinkingResultLinked = 1082,
LevelLinkingResultUnlinked = 1083,
ClubFinderErrorPostClub = 1084,
ClubFinderErrorApplyClub = 1085,
ClubFinderErrorRespondApplicant = 1086,
ClubFinderErrorCancelApplication = 1087,
ClubFinderErrorTypeAcceptApplication = 1088,
ClubFinderErrorTypeNoInvitePermissions = 1089,
ClubFinderErrorTypeNoPostingPermissions = 1090,
ClubFinderErrorTypeApplicantList = 1091,
ClubFinderErrorTypeApplicantListNoPerm = 1092,
ClubFinderErrorTypeFinderNotAvailable = 1093,
ClubFinderErrorTypeGetPostingIds = 1094,
ClubFinderErrorTypeJoinApplication = 1095,
ClubFinderErrorTypeRealmNotEligible = 1096,
ClubFinderErrorTypeFlaggedRename = 1097,
ClubFinderErrorTypeFlaggedDescriptionChange = 1098,
ItemInteractionNotEnoughGold = 1099,
ItemInteractionNotEnoughCurrency = 1100,
PlayerChoiceErrorPendingChoice = 1101,
SoulbindInvalidConduit = 1102,
SoulbindInvalidConduitItem = 1103,
SoulbindInvalidTalent = 1104,
SoulbindDuplicateConduit = 1105,
ActivateSoulbindS = 1106,
ActivateSoulbindFailedRestArea = 1107,
CantUseProfanity = 1108,
NotInPetBattle = 1109,
NotInNpe = 1110,
NoSpec = 1111,
NoDominationshardOverwrite = 1112,
UseWeeklyRewardsDisabled = 1113,
CrossFactionGroupJoined = 1114,
CantTargetUnfriendlyInOverworld = 1115,
EquipablespellsSlotsFull = 1116
}
public enum SceneFlags
@@ -2481,6 +2481,9 @@ namespace Framework.Constants
Gathering = 302,
CreateTraitTreeConfig = 303, // Miscvalue[0] = Traittreeid
ChangeActiveCombatTraitConfig = 304,
Unk305 = 305,
Unk306 = 306,
TotalSpellEffects
}
@@ -828,7 +828,7 @@ namespace Framework.Database
PrepareStatement(HotfixStatements.SEL_LANGUAGE_WORDS, "SELECT ID, Word, LanguageID FROM language_words WHERE (`VerifiedBuild` > 0) = ?");
// Languages.db2
PrepareStatement(HotfixStatements.SEL_LANGUAGES, "SELECT ID, Name, Flags, UiTextureKitID, UiTextureKitElementCount FROM languages" +
PrepareStatement(HotfixStatements.SEL_LANGUAGES, "SELECT Name, ID, Flags, UiTextureKitID, UiTextureKitElementCount, LearningCurveID FROM languages" +
" WHERE (`VerifiedBuild` > 0) = ?");
PrepareStatement(HotfixStatements.SEL_LANGUAGES_LOCALE, "SELECT ID, Name_lang FROM languages_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?");