You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
2.8 KiB
C++

#include <cstdint>
#include <vector>
//https://github.com/Xnieno/ApexDreamForYou/blob/main/PRO.h
struct PRO {
uint64_t uid;
int level;
PRO(uint64_t u, int l) : uid(u), level(l) {}
};
std::vector<PRO> Pro ={
{2822723998,3},
{1006205941581,3},
{2405522397,1},
{1005925886332,3},
{1009358754932,3},
{1009170064275,3},
{1009567761626,3},
{1003597319170,3},
{1006764780045,2},
{1000050911301,3},
{1003135122829,2},
{1002891191646,2},
{2250191893,2},
{1001437176616,2},
{1002169134673,3},
{1008890995363,3},
{1004874025016,3},
{1009985214916,2},
{1007651102246,2},
{1009175301190,3},
{1002905770119,2},
{1009271383747,2},
{1008263887754,2},
{1006806947777,2},
{1008939370770,2},
{1010874466343,2},
{1009259705635,2},
{1011091498411,3},
{1012484574645,2},
{1001953753749,2},
{1007896757931,2},
{1007281853595,3},
{1007716701440,3},
{1009614872477,3},
{1003785369222,3},
{1008786303990,3},
{1010071713191,3},
{1000476312989,3},
{100033778093,3},
{1006623034196,3},
{1007970864045,2},
{1008053680955,2},
{1011844131064,2},
{1009332336890,3},
{1008850500345,3},
{1011259862838,3},
{1009101881635,2},
{1006623034196,3},
{1004588431813,3},
{2818762051,3},
{1002896792850,3},
{1010987266469,3},
{1007400077911,3},
{1009142575769,2},
{1014101759425,2},
{1006155443541,2},
{2364404148,3},
{1009120900882,3},
{1005736460135,3},
{1009129900640,3},
{1008795761561,3},
{1007127080506,3},
{1010572021777,3},
{1008877725281,3},
{1004504213515,3},
{1009829564320,3},
{1008640431482,3},
{1004048066570,3},
{2290117003,3},
{1010118971878,3},
{1007751196890,2},
{2414503637,3},
{1008348758076,3},
{1008011249667,3},
{1005934279987,3},
{1003404537548,3},
{1009992309619, 3},
{1007178965081,2},
{1007294673714,2},
{1006151301031,3},
{1007870483256,3},
{2433227295,3},
{1007376998248,3},
{1010617823111,3},
{1009640761618,2},
{2316895519,2},
{2806117224,3},
{1002848144810,2},
{2546369203,3},
{1007351062257,3},
{1009067960369,3},
{1003851056614,3},
{1010791304069,3},
{1006162359940,3},
{2316806708,3},
{1013209150645,2},
{1011521583642,2},
{1002654942758,2},
{1010444748582,2},
{1011619595627,2},
{1011613872194,2},
{1006184216910,2},
{1012677552858,2},
{ 1011185445961, 2},
{ 1007682495472, 2},
{ 1008679305032, 2},
{ 1008965520265, 2},
{ 1009976640607, 2},
{ 1012841500387, 2},
{ 1010128081153, 2},
{ 1009083521394, 2},
{ 1007882413578, 2},
{ 1009655899086, 2},
{ 2716963345, 2},
{ 1013252367278, 2},
{ 1011738197447, 2},
{ 1007906431779, 2},
{ 1009067354649, 2},
{ 1008880970088, 2},
{ 1007016533436,2 },
{ 1006428245040, 2},
{ 1005471995367, 3},
{ 1003869693738, 3},
{ 2315548295, 3}
};
inline int checkIsPro(uint64_t inputUid) {
for (const auto& PRO : Pro) {
if (PRO.uid == inputUid) {
return PRO.level;
}
}
return 0;
}