diff --git a/Include/Core/Classes/MessageNode.hpp b/Include/Core/Classes/MessageNode.hpp index a538f7f..c54ac17 100644 --- a/Include/Core/Classes/MessageNode.hpp +++ b/Include/Core/Classes/MessageNode.hpp @@ -5,6 +5,7 @@ #include "../JavaClass/Class.hpp" #include #include +#include "NamePair.hpp" namespace Internal { @@ -23,6 +24,7 @@ namespace Internal std::int32_t GetID() const; std::string GetName() const; + NamePair GetNamePair() const; std::string GetSender() const; std::string GetText() const; std::int32_t GetTick() const; diff --git a/Include/Core/Classes/Widget.hpp b/Include/Core/Classes/Widget.hpp index 53f0f49..456efa6 100644 --- a/Include/Core/Classes/Widget.hpp +++ b/Include/Core/Classes/Widget.hpp @@ -27,6 +27,7 @@ namespace Internal std::int32_t GetBoxIndex() const; std::vector GetChildren() const; Widget GetChildren(std::int32_t I) const; + std::int32_t GetGradient() const; bool GetHasListener() const; std::int32_t GetHeight() const; bool GetHidden() const; diff --git a/Include/Core/Globals.hpp b/Include/Core/Globals.hpp index 8c95447..6e22824 100644 --- a/Include/Core/Globals.hpp +++ b/Include/Core/Globals.hpp @@ -128,6 +128,7 @@ namespace Globals //************ Login.cpp ************// const WidgetDef LOGIN_LOBBY_PLAY = { 378, 81 }; + const WidgetDef LOGIN_LOBBY_PLAY_NEW = { 413, 73 }; //************ Makescreen.cpp ************// const std::int32_t MAKESCREEN_PARENT = 270; diff --git a/Include/Core/Internal.hpp b/Include/Core/Internal.hpp index 2df2ed4..e761d18 100644 --- a/Include/Core/Internal.hpp +++ b/Include/Core/Internal.hpp @@ -147,6 +147,8 @@ namespace Internal std::int32_t GetHintArrowX(); std::int32_t GetHintArrowY(); std::int32_t GetHintArrowZ(); + bool GetInInstance(); + std::vector>> GetInstanceChunkTemplates(); bool GetIsMember(); HashTable GetItemContainers(); IndexableData GetItemIndexableData(); diff --git a/Library/libAlpacaLibrary.a b/Library/libAlpacaLibrary.a index 38598b6..4ad8206 100644 Binary files a/Library/libAlpacaLibrary.a and b/Library/libAlpacaLibrary.a differ