Release 0.84

master
Kasi 2018-08-24 18:33:26 +01:00
parent e188b5007d
commit 4be546feb3
5 changed files with 61 additions and 8 deletions

View File

@ -99,6 +99,18 @@ class Exchange
static bool ConfirmOffer(); static bool ConfirmOffer();
typedef enum COLLECT_SLOT
{
ONE,
TWO
} COLLECT_SLOT;
static std::string GetCollectSlotName(Exchange::COLLECT_SLOT Slot);
static std::int32_t GetCollectSlotID(Exchange::COLLECT_SLOT Slot);
static std::int32_t GetCollectSlotAmount(Exchange::COLLECT_SLOT Slot);
static bool AbortOffer();
}; };
/** @} */ /** @} */

View File

@ -33,7 +33,8 @@ class Stats
FARMING, FARMING,
RUNECRAFT, RUNECRAFT,
HUNTER, HUNTER,
CONSTRUCTION CONSTRUCTION,
ALL
} SKILLS; } SKILLS;
static bool IsOpen(); static bool IsOpen();
@ -42,7 +43,7 @@ class Stats
static std::int32_t GetRunEnergy(); static std::int32_t GetRunEnergy();
static std::int32_t GetCurrentLevel(SKILLS Skill); static std::int32_t GetCurrentLevel(SKILLS Skill);
static std::int32_t GetRealLevel(SKILLS Skill); static std::int32_t GetRealLevel(SKILLS Skill);
static std::int32_t GetExperience(SKILLS Skill); static std::int64_t GetExperience(SKILLS Skill);
static std::int32_t GetExperienceTo(SKILLS Skill, std::int32_t Level); static std::int32_t GetExperienceTo(SKILLS Skill, std::int32_t Level);
}; };

View File

@ -16,18 +16,19 @@ class Login
typedef enum LOGIN_SCREEN_STATE typedef enum LOGIN_SCREEN_STATE
{ {
WELCOME_SCREEN, WELCOME_SCREEN, // 0
PVP_WORLD, PVP_WORLD, // 1
ENTER_CREDENTIALS, ENTER_CREDENTIALS, // 2
INVALID_CREDENTIALS, INVALID_CREDENTIALS, // 3
FORGOTTEN_PASSWORD, AUTHENTICATOR, // 4
FORGOTTEN_PASSWORD, // 5
RUNESCAPE_UPDATED, RUNESCAPE_UPDATED,
TEMP_BANNED, TEMP_BANNED,
PERM_BANNED,
ACCOUNT_LOCKED, ACCOUNT_LOCKED,
MEMBERS_AREA, MEMBERS_AREA,
MEMBERS_REQUIRED, MEMBERS_REQUIRED,
WORLD_SELECT, WORLD_SELECT,
PERM_BANNED,
CONNECTING, CONNECTING,
LOADING, LOADING,
LOBBY_SCREEN, LOBBY_SCREEN,

View File

@ -94,6 +94,45 @@ class Profile
static std::string GetProxyUsername(); static std::string GetProxyUsername();
static std::string GetProxyPassword(); static std::string GetProxyPassword();
void SetRawInteractableMean(std::int32_t Mean);
std::int32_t GetRawInteractableMean();
void SetRawInteractableDeviation(double Deviation);
double GetRawInteractableDeviation();
void SetRawMoveMean(std::int32_t Mean);
std::int32_t GetRawMoveMean();
void SetRawMoveDeviation(double Deviation);
double GetRawMoveDeviation();
void SetRawMouseDownMean(std::int32_t Mean);
std::int32_t GetRawMouseDownMean();
void SetRawMouseDownDeviation(double Deviation);
double GetRawMouseDownDeviation();
void SetRawMouseUpMean(std::int32_t Mean);
std::int32_t GetRawMouseUpMean();
void SetRawMouseUpDeviation(double Deviation);
double GetRawMouseUpDeviation();
void SetRawKeyDownMean(std::int32_t Mean);
std::int32_t GetRawKeyDownMean();
void SetRawKeyDownDeviation(double Deviation);
double GetRawKeyDownDeviation();
void SetRawKeyUpMean(std::int32_t Mean);
std::int32_t GetRawKeyUpMean();
void SetRawKeyUpDeviation(double Deviation);
double GetRawKeyUpDeviation();
}; };
/** @} */ /** @} */

Binary file not shown.