-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCrywolfSync.h
More file actions
57 lines (44 loc) · 1.52 KB
/
CrywolfSync.h
File metadata and controls
57 lines (44 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// CrywolfSync.h: interface for the CCrywolfSync class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CRYWOLFSYNC_H__CC49C33A_FF1E_45A7_9904_8CAD6B57D46C__INCLUDED_)
#define AFX_CRYWOLFSYNC_H__CC49C33A_FF1E_45A7_9904_8CAD6B57D46C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCrywolfSync
{
public:
CCrywolfSync();
virtual ~CCrywolfSync();
BOOL CheckEnableCrywolf();
void SetEnableCrywolf(BOOL bEnable);
int GetOccupationState();
int GetCrywolfState();
void SetOccupationState(int iOccupationState);
void SetCrywolfState(int iCrywolfState);
int GetPlusChaosRate();
void SetPlusChaosRate(int iPlusChaosRate);
int GetGemDropPenaltiyRate();
void SetGemDropPenaltiyRate(int iGemDropPenaltyRate);
int GetGettingExpPenaltyRate();
void SetGettingExpPenaltyRate(int iGettingExpPenaltyRate);
int GetMonHPBenefitRate();
void SetMonHPBenefitRate(int iMinusMonHPBenefitRate);
int GetKundunHPRefillState();
void SetKundunHPRefillState(int iKundunHPRefillState);
void NotifyCrywolfCurrentStateByUserId(int aIndex);
private:
BOOL m_bCrywolfEnable; // 4
BOOL m_bApplyBenefit; // 8
BOOL m_bApplyPenalty; // C
BYTE m_iCrywolfState; // 10
BYTE m_iOccupationState; // 14
int m_iPlusChaosRate; // 18
int m_iGemDropPenaltyRate; // 1C
int m_iGettingExpPenaltyRate; // 20
int m_iMinusMonHPBenefitRate; // 24
BYTE m_iKundunHPRefillState; // 28
};
extern CCrywolfSync g_CrywolfSync;
#endif // !defined(AFX_CRYWOLFSYNC_H__CC49C33A_FF1E_45A7_9904_8CAD6B57D46C__INCLUDED_)