annotate Player.h @ 100:67f843a23f8b

Outdoor::Load
author Nomad
date Sun, 04 Nov 2012 13:58:15 +0200
parents f9a33f75bae3
children acf7f12714a7
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #pragma once
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2 #include "Items.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3 #include "Spells.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9 /* 339 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10 enum CHARACTER_RACE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12 CHARACTER_RACE_HUMAN = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13 CHARACTER_RACE_ELF = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
14 CHARACTER_RACE_GOBLIN = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
15 CHARACTER_RACE_DWARF = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
19 /* 332 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 enum CHARACTER_ATTRIBUTE_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
22 CHARACTER_ATTRIBUTE_STRENGTH = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
23 CHARACTER_ATTRIBUTE_INTELLIGENCE = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24 CHARACTER_ATTRIBUTE_WILLPOWER = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
25 CHARACTER_ATTRIBUTE_ENDURANCE = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
26 CHARACTER_ATTRIBUTE_ACCURACY = 0x4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
27 CHARACTER_ATTRIBUTE_SPEED = 0x5,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
28 CHARACTER_ATTRIBUTE_LUCK = 0x6,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
29 CHARACTER_ATTRIBUTE_HEALTH = 0x7,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
30 CHARACTER_ATTRIBUTE_MANA = 0x8,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
31 CHARACTER_ATTRIBUTE_AC_BONUS = 0x9,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
32 CHARACTER_ATTRIBUTE_RESIST_FIRE = 0xA,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
33 CHARACTER_ATTRIBUTE_RESIST_AIR = 0xB,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
34 CHARACTER_ATTRIBUTE_RESIST_WATER = 0xC,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
35 CHARACTER_ATTRIBUTE_RESIST_EARTH = 0xD,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
36 CHARACTER_ATTRIBUTE_RESIST_MIND = 0xE,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
37 CHARACTER_ATTRIBUTE_RESIST_BODY = 0xF,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
38 CHARACTER_ATTRIBUTE_LEVEL = 0x18,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
39 CHARACTER_ATTRIBUTE_ATTACK = 0x19,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
40 CHARACTER_ATTRIBUTE_MELEE_DMG_BONUS = 0x1A,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
41 CHARACTER_ATTRIBUTE_MELEE_DMG_MIN = 0x1B,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
42 CHARACTER_ATTRIBUTE_MELEE_DMG_MAX = 0x1C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
43 CHARACTER_ATTRIBUTE_RANGED_ATTACK = 0x1D,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
44 CHARACTER_ATTRIBUTE_RANGED_DAMAGE_BONUS = 0x1E,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
45 CHARACTER_ATTRIBUTE_RANGED_DAMAGE_MIN = 0x1F,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
46 CHARACTER_ATTRIBUTE_RANGED_DAMAGE_MAX = 0x20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
47 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
48
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
49 /* 328 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
50 enum PLAYER_SKILL_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
51 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
52 PLAYER_SKILL_STAFF = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
53 PLAYER_SKILL_SWORD = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
54 PLAYER_SKILL_DAGGER = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
55 PLAYER_SKILL_AXE = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
56 PLAYER_SKILL_SPEAR = 0x4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
57 PLAYER_SKILL_BOW = 0x5,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
58 PLAYER_SKILL_MACE = 0x6,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
59 PLAYER_SKILL_BLASTER = 0x7,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
60 PLAYER_SKILL_SHIELD = 0x8,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
61 PLAYER_SKILL_LEATHER = 0x9,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
62 PLAYER_SKILL_CHAIN = 0xA,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
63 PLAYER_SKILL_PLATE = 0xB,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
64 PLAYER_SKILL_FIRE = 0xC,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
65 PLAYER_SKILL_AIR = 0xD,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
66 PLAYER_SKILL_WATER = 0xE,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
67 PLAYER_SKILL_EARTH = 0xF,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
68 PLAYER_SKILL_SPIRIT = 0x10,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
69 PLAYER_SKILL_MIND = 0x11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
70 PLAYER_SKILL_BODY = 0x12,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
71 PLAYER_SKILL_LIGHT = 0x13,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
72 PLAYER_SKILL_DARK = 0x14,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
73 PLAYER_SKILL_ITEM_ID = 0x15,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
74 PLAYER_SKILL_MERCHANT = 0x16,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
75 PLAYER_SKILL_REPAIR = 0x17,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
76 PLAYER_SKILL_BODYBUILDING = 0x18,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
77 PLAYER_SKILL_MEDITATION = 0x19,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
78 PLAYER_SKILL_PERCEPTION = 0x1A,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
79 PLAYER_SKILL_DIPLOMACY = 0x1B,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
80 PLAYER_SKILL_TIEVERY = 0x1C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
81 PLAYER_SKILL_TRAP_DISARM = 0x1D,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
82 PLAYER_SKILL_DODGE = 0x1E,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
83 PLAYER_SKILL_UNARMED = 0x1F,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
84 PLAYER_SKILL_MONSTER_ID = 0x20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
85 PLAYER_SKILL_ARMSMASTER = 0x21,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
86 PLAYER_SKILL_STEALING = 0x22,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
87 PLAYER_SKILL_ALCHEMY = 0x23,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
88 PLAYER_SKILL_LEARNING = 0x24,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
89 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
90
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
91 /* 329 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
92 enum PLAYER_CLASS_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
93 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
94 PLAYER_CLASS_KNIGHT = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
95 PLAYER_CLASS_THEIF = 0x4,
82
f9a33f75bae3 Qick Record
Nomad
parents: 66
diff changeset
96 PLAYER_CLASS_BOUNTY_HUNTER = 0x7,
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
97 PLAYER_CLASS_MONK = 0x8,
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
98 PLAYER_CLASS_PALADIN = 0xC,
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
99 PLAYER_CLASS_SHOOTER = 0x10,
66
5ec98919c8fd PlayerCreation 26.10.12
Ritor1
parents: 54
diff changeset
100 PLAYER_CLASS_RANGER = 0x14,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
101 PLAYER_CLASS_CLERIC = 0x18,
82
f9a33f75bae3 Qick Record
Nomad
parents: 66
diff changeset
102 PLAYER_CLASS_PRIEST_OF_MOON = 0x1B,
66
5ec98919c8fd PlayerCreation 26.10.12
Ritor1
parents: 54
diff changeset
103 PLAYER_CLASS_DRUID = 0x1C,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
104 PLAYER_CLASS_SORCERER = 0x20,
82
f9a33f75bae3 Qick Record
Nomad
parents: 66
diff changeset
105 PLAYER_CLASS_LICH = 0x23,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
106 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
107
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
108
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
109
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
110
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
111 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 struct LloydBeacon
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
113 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
114 unsigned __int64 uBeaconTime;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
115 int field_8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
116 int field_C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
117 int field_10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
118 int field_14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
119 int field_18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
120 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
121 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
122
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
123
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
124
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
125 #pragma pack(push, 1)
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
126 struct PlayerSpellbookChapter
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
127 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
128 unsigned __int8 bIsSpellbookAvailable;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
129 char bIsSpellAvailable[10];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
130 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
131 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
132
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
133 #pragma pack(push, 1)
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
134 struct PlayerSpells
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
135 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
136 union
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
137 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
138 struct
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
139 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
140 PlayerSpellbookChapter pFireSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
141 PlayerSpellbookChapter pAirSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
142 PlayerSpellbookChapter pWaterSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
143 PlayerSpellbookChapter pEarthSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
144 PlayerSpellbookChapter pSpiritSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
145 PlayerSpellbookChapter pMindSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
146 PlayerSpellbookChapter pBodySpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
147 PlayerSpellbookChapter pLightSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
148 PlayerSpellbookChapter pDarkSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
149 char _pad_0;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
150 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
151 struct
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
152 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
153 PlayerSpellbookChapter pChapters[9];
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
154 char _pad_1;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
155 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
156 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
157 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
158 #pragma pack(pop)
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
159
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
160
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
161
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
162 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
163 union PlayerEquipment
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
164 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
165 union
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
166 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
167 struct
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
168 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
169 unsigned int uOffHand;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
170 unsigned int uMainHand;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
171 unsigned int uBow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
172 unsigned int uBody;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
173 unsigned int uHelm;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
174 unsigned int uBelt;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
175 unsigned int uCloak;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
176 unsigned int field_1C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
177 unsigned int field_20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
178 unsigned int field_24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
179 unsigned int field_28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
180 unsigned int field_2C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
181 unsigned int field_30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
182 unsigned int field_34;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
183 unsigned int field_38;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
184 unsigned int field_3C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
185 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
186 unsigned int pIndices[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
187 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
188 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
189 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
190
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
191
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
192
25
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
193
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
194
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
195 enum PLAYER_SEX: unsigned __int8
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
196 {
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
197 SEX_MALE = 0,
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
198 SEX_FEMALE = 1
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
199 };
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
200
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
201 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
202 struct Player
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
203 {
47
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
204 enum Condition: unsigned __int32
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
205 {
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
206 Condition_Cursed = 0,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
207 Condition_Weak = 1,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
208 Condition_Sleep = 2,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
209 Condition_Fear = 3,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
210 Condition_Drunk = 4,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
211 Condition_Insane = 5,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
212 Condition_Poison1 = 6,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
213 Condition_Disease1 = 7,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
214 Condition_Posion2 = 8,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
215 Condition_Disease2 = 9,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
216 Condition_Poison3 = 10,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
217 Condition_Disease3 = 11,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
218 Condition_Paralyzed = 12,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
219 Condition_Unconcious = 13,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
220 Condition_Dead = 14,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
221 Condition_Pertified = 15,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
222 Condition_Eradicated = 16,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
223 Condition_Zombie = 17,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
224 Condition_Good = 18
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
225 };
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
226
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
227 Player();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
228
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
229 void SetVariable(enum VariableType var, signed int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
230 void AddVariable(enum VariableType var, signed int val);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
231 void SubtractVariable(enum VariableType var, void *a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
232 char CompareVariable(enum VariableType var, signed int a1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
233 void UseItem_DrinkPotion_etc(signed int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
234 bool AddItem(struct ItemGen *pItem);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
235 int GetBaseStrength();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
236 int GetBaseIntelligence();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
237 int GetBaseWillpower();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
238 int GetBaseEndurance();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
239 int GetBaseAccuracy();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
240 int GetBaseSpeed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
241 int GetBaseLuck();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
242 int GetBaseLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
243 int GetActualLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
244 int GetActualMight();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
245 int GetActualIntelligence();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
246 int GetActualWillpower();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
247 int GetActualEndurance();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
248 int GetActualAccuracy();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
249 int GetActualSpeed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
250 int GetActualLuck();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
251 int GetActualAttack(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
252 int GetMeleeDamageMinimal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
253 int GetMeleeDamageMaximal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
254 int CalculateMeleeDamageTo(int a2, int a3, unsigned int uTargetActorID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
255 int GetRangedAttack();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
256 int GetRangedDamageMin();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
257 int GetRangedDamageMax();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
258 bool CalculateRangedDamageTo(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
259 char *GetMeleeDamageString();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
260 char *GetRangedDamageString();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
261 bool CanTrainToNextLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
262 unsigned int GetExperienceDisplayColor();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
263 int CalculateIncommingDamage(int resistance, signed int type);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
264 int GetEquippedItemEquipType(unsigned int uEquipSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
265 int GetEquippedItemSkillType(enum ITEM_EQUIP_TYPE uEquipSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
266 bool IsUnarmed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
267 bool HasItemEquipped(enum ITEM_EQUIP_TYPE uEquipIndex);
24
74940016abc8 * on Players
Nomad
parents: 23
diff changeset
268 bool HasEnchantedItemEquipped(int uEnchantment);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
269 bool WearsItem(int a1, signed int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
270 bool StealFromShop(struct ItemGen *a2, int a3, int a4, int a5, int *a6);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
271 int StealFromActor(unsigned int uActorID, int _steal_perm, int reputation);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
272 void Heal(int amount);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
273 int ReceiveDamage(signed int type, int resistance);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
274 int _48DCF6(int a2, struct Actor *pActor);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
275 unsigned int GetSpellSchool(unsigned int uSpellID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
276 int GetAttackRecoveryTime(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
277 int GetMaxHealth();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
278 int GetMaxMana();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
279 int GetBaseAC();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
280 int GetActualAC();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
281 unsigned int GetBaseAge();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
282 unsigned int GetActualAge();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
283 int GetBaseResistance(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
284 int GetActualResistance(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
285 void SetRecoveryTime(signed int sRecoveryTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
286 void RandomizeName();
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
287 unsigned int GetMajorConditionIdx();
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
288 int _48EA1B_get_static_effect(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
289 int _48EA46_calc_special_bonus_by_items(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
290 int GetItemsBonus(enum CHARACTER_ATTRIBUTE_TYPE attr, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
291 int GetMagicalBonus(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
292 char GetActualSkillLevel(enum PLAYER_SKILL_TYPE uSkillType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
293 int GetSkillBonus(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
294 enum CHARACTER_RACE GetRace();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
295 int GetSexByVoice();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
296 void SetInitialStats();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
297 int SetSexByVoice();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
298 void Reset(unsigned __int8 uClass);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
299 enum PLAYER_SKILL_TYPE GetSkillIdxByOrder(signed int order);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
300 unsigned __int16 DecreaseAttribute(int eAttribute);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
301 int IncreaseAttribute(int eAttribute);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
302 void Player::Zero();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
303 __int16 GetStatColor(unsigned int uStat);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
304 bool DiscardConditionIfLastsLongerThan(unsigned int uCondition, unsigned __int64 uTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
305 int _490EEE(ItemGen *pItem, int a3, int a4, int a5);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
306 int GetBodybuilding();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
307 int GetMediatation();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
308 int CanIdentify(ItemGen *pItem);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
309 int CanRepair(ItemGen *);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
310 int GetMerchant();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
311 int GetPerception();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
312 int GetDisarmTrap();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
313 char GetLearningPercent();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
314 bool CanFitItem(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
315 unsigned int FindFreeInventorySlot();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
316 int CreateItemInInventory(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
317 int HasSkill(unsigned int uSkillType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
318 int WearItem(unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
319 int AddItem(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
320 int AddItem2(unsigned int uSlot, ItemGen *Src);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
321 int CreateItemInInventory2(unsigned int uSlot, ItemGen *Src);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
322 bool _49298B(ItemGen *a2, int a3, int a4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
323 unsigned int RemoveItemAtInventoryIndex(unsigned int uSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
324 bool CanAct();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
325 bool CanSteal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
326 bool CanEquip_RaceAndAlignmentCheck(unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
327 int SetCondition(unsigned int uConditionIdx, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
328 int _49327B(unsigned int uClass, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
329 __int16 PlaySound(int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
330 __int16 PlayEmotion(int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
331 char _4160CA(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
332 unsigned int GetItemIDAtInventoryIndex(int *a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
333 int _4B6FF9();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
334 int _4B824B(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
335 int _4B8265(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
336 int _4B8233(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
337 int _4B8213(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
338 int _4B81C3(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
339 int _4B8179(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
340 int _4B8142(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
341 int _4B8102(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
342 int _4B807C(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
343 int _4B8040_condition_time(unsigned int uCondition);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
344 bool _43EEF3();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
345 void _4BE2DD(unsigned int a2, int a3, int _2devent_idx);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
346 bool Recover(signed int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
347 bool CanCastSpell(unsigned int uRequiredMana);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
348
47
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
349 inline bool Dead() {return pConditions[Condition::Condition_Dead] != 0;}
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
350 inline bool Eradicated() {return pConditions[Condition::Condition_Eradicated] != 0;}
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
351
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
352
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
353
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
354 __int64 pConditions[20];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
355 unsigned __int64 uExperience;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
356 char pName[16];
25
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
357 PLAYER_SEX uSex;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
358 unsigned __int8 uClass;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
359 unsigned __int8 uFace;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
360 char field_BB;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
361 unsigned __int16 uMight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
362 unsigned __int16 uMightBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
363 unsigned __int16 uIntelligence;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
364 unsigned __int16 uIntelligenceBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
365 unsigned __int16 uWillpower;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
366 unsigned __int16 uWillpowerBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
367 unsigned __int16 uEndurance;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
368 unsigned __int16 uEnduranceBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
369 unsigned __int16 uSpeed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
370 unsigned __int16 uSpeedBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
371 unsigned __int16 uAccuracy;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
372 unsigned __int16 uAccuracyBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
373 unsigned __int16 uLuck;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
374 unsigned __int16 uLuckBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
375 __int16 sACModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
376 unsigned __int16 uLevel;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
377 __int16 sLevelModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
378 __int16 sAgeModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
379 int field_E0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
380 int field_E4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
381 int field_E8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
382 int field_EC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
383 int field_F0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
384 int field_F4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
385 int field_F8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
386 int field_FC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
387 int field_100;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
388 int field_104;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
389 unsigned __int16 pActiveSkills[37];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
390 char field_152[64];
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
391 PlayerSpells spellbook;
24
74940016abc8 * on Players
Nomad
parents: 23
diff changeset
392 char field_1F5[30]; // used to be [31]
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
393 ItemGen pInventoryItems[126];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
394 ItemGen pEquippedItems[12];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
395 int pInventoryIndices[126];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
396 __int16 sResFireBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
397 __int16 sResAirBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
398 __int16 sResWaterBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
399 __int16 sResEarthBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
400 __int16 field_177C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
401 __int16 sResMagicBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
402 __int16 sResSpiritBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
403 __int16 sResMindBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
404 __int16 sResBodyBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
405 __int16 sResLightBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
406 __int16 sResDarkBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
407 __int16 sResFireBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
408 __int16 sResAirBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
409 __int16 sResWaterBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
410 __int16 sResEarthBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
411 __int16 field_1792;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
412 __int16 sResMagicBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
413 __int16 sResSpiritBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
414 __int16 sResMindBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
415 __int16 sResBodyBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
416 __int16 sResLightBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
417 __int16 sResDarkBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
418 SpellBuff pPlayerBuffs[24];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
419 unsigned int uVoiceID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
420 int field_1924;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
421 int field_1928;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
422 int field_192C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
423 int field_1930;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
424 unsigned __int16 uTimeToRecovery;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
425 char field_1936;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
426 char field_1937;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
427 unsigned int uSkillPoints;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
428 int sHealth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
429 int sMana;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
430 unsigned int uBirthYear;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
431 PlayerEquipment pEquipment;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
432 int field_1988[49];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
433 char field_1A4C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
434 char field_1A4D;
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
435 char pNumSpellBookPage;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
436 unsigned __int8 uQuickSpell;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
437 char field_1A50[64];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
438 char _some_attack_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
439 char field_1A91;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
440 char _melee_dmg_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
441 char field_1A93;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
442 char _ranged_atk_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
443 char field_1A95;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
444 char _ranged_dmg_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
445 char field_1A97;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
446 char uFullHealthBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
447 char _health_related;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
448 char uFullManaBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
449 char _mana_related;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
450 unsigned __int16 uExpressionID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
451 unsigned __int16 uExpressionTimePassed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
452 unsigned __int16 uExpressionTimeLength;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
453 __int16 field_1AA2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
454 int field_1AA4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
455 int field_1AA8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
456 LloydBeacon pInstalledBeacons[5];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
457 char uNumDivineInterventionCastsThisDay;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
458 char uNumArmageddonCasts;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
459 char uNumFireSpikeCasts;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
460 char field_1B3B;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
461 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
462 #pragma pack(pop)