AlpacaLibary  1.63
A closed source C++ bot for OSRS
Stats.hpp
Go to the documentation of this file.
1 #ifndef STATS_HPP_INCLUDED
2 #define STATS_HPP_INCLUDED
3 
4 #include <cstdint>
5 
6 namespace Stats
7 {
8  typedef enum SKILLS
9  {
33  ALL
34  } SKILLS;
35 
36  bool IsOpen();
37  bool Open(bool UseHotkey = false);
38  std::int32_t GetTabHotkey();
39  std::int32_t GetWeight();
40  std::int32_t GetRunEnergy();
41  std::int32_t GetCurrentLevel(SKILLS Skill);
42  std::int32_t GetRealLevel(SKILLS Skill);
43  std::int64_t GetExperience(SKILLS Skill);
44  std::int32_t GetExperienceTo(SKILLS Skill, std::int32_t Level);
45 }
46 
47 #endif // STATS_HPP_INCLUDED
Definition: Stats.hpp:7
SKILLS
Definition: Stats.hpp:9
@ FIREMAKING
Definition: Stats.hpp:21
@ ATTACK
Definition: Stats.hpp:10
@ FARMING
Definition: Stats.hpp:29
@ PRAYER
Definition: Stats.hpp:15
@ THIEVING
Definition: Stats.hpp:27
@ ALL
Definition: Stats.hpp:33
@ RANGE
Definition: Stats.hpp:14
@ MINING
Definition: Stats.hpp:24
@ FISHING
Definition: Stats.hpp:20
@ STRENGTH
Definition: Stats.hpp:12
@ RUNECRAFT
Definition: Stats.hpp:30
@ MAGIC
Definition: Stats.hpp:16
@ FLETCHING
Definition: Stats.hpp:19
@ COOKING
Definition: Stats.hpp:17
@ CONSTRUCTION
Definition: Stats.hpp:32
@ DEFENCE
Definition: Stats.hpp:11
@ WOODCUTTING
Definition: Stats.hpp:18
@ AGILITY
Definition: Stats.hpp:26
@ CRAFTING
Definition: Stats.hpp:22
@ SLAYER
Definition: Stats.hpp:28
@ HITPOINTS
Definition: Stats.hpp:13
@ HUNTER
Definition: Stats.hpp:31
@ HERBLORE
Definition: Stats.hpp:25
@ SMITHING
Definition: Stats.hpp:23
bool Open(bool UseHotkey=false)
std::int32_t GetCurrentLevel(SKILLS Skill)
std::int64_t GetExperience(SKILLS Skill)
std::int32_t GetExperienceTo(SKILLS Skill, std::int32_t Level)
bool IsOpen()
std::int32_t GetRunEnergy()
std::int32_t GetWeight()
std::int32_t GetRealLevel(SKILLS Skill)
std::int32_t GetTabHotkey()