diff --git a/Include/Game/Interfaces/Exchange.hpp b/Include/Game/Interfaces/Exchange.hpp index 9a28ef7..f9db245 100644 --- a/Include/Game/Interfaces/Exchange.hpp +++ b/Include/Game/Interfaces/Exchange.hpp @@ -109,7 +109,9 @@ class Exchange static std::int32_t GetCollectSlotID(Exchange::COLLECT_SLOT Slot); static std::int32_t GetCollectSlotAmount(Exchange::COLLECT_SLOT Slot); - static bool AbortOffer(); + static bool AbortOffer(const Exchange::SLOT Slot = -1); + + static bool OpenOffer(const Exchange::SLOT Slot); }; diff --git a/Include/Game/Interfaces/Minimap.hpp b/Include/Game/Interfaces/Minimap.hpp index aa3e755..db11e0d 100644 --- a/Include/Game/Interfaces/Minimap.hpp +++ b/Include/Game/Interfaces/Minimap.hpp @@ -73,7 +73,10 @@ class Minimap */ static bool ClickToggleRun(); - static bool ClickTile(const Tile& T); + static bool ClickTile(const Tile& T, std::int32_t Random = 5); + + static bool WalkPath(const std::vector Path, std::int32_t Distance, std::int32_t Random); + }; /** @} */ diff --git a/Library/libAlpacaLibrary.a b/Library/libAlpacaLibrary.a index 3df2683..1cba110 100644 Binary files a/Library/libAlpacaLibrary.a and b/Library/libAlpacaLibrary.a differ