annotate Party.h @ 599:deb559e4fe47

Merge
author Gloval
date Wed, 06 Mar 2013 22:47:21 +0400
parents 8ef867ae88b9
children 735dab8d3c9a
rev   line source
0
Ritor1
parents:
diff changeset
1 #pragma once
Ritor1
parents:
diff changeset
2 #include "Player.h"
Ritor1
parents:
diff changeset
3 #include "NPC.h"
Ritor1
parents:
diff changeset
4 #include "Spells.h"
Ritor1
parents:
diff changeset
5 #include "VectorTypes.h"
Ritor1
parents:
diff changeset
6
Ritor1
parents:
diff changeset
7
Ritor1
parents:
diff changeset
8
Ritor1
parents:
diff changeset
9
Ritor1
parents:
diff changeset
10
Ritor1
parents:
diff changeset
11
Ritor1
parents:
diff changeset
12
Ritor1
parents:
diff changeset
13
Ritor1
parents:
diff changeset
14
Ritor1
parents:
diff changeset
15
Ritor1
parents:
diff changeset
16 /* 355 */
141
cca78efb377e Constants -> enums
Nomad
parents: 130
diff changeset
17 enum PARTY_FLAGS_1: __int32
cca78efb377e Constants -> enums
Nomad
parents: 130
diff changeset
18 {
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 527
diff changeset
19 PARTY_FLAGS_1_FALLING = 0x0008,
390
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
20 PARTY_FLAGS_1_ALERT_RED = 0x0010,
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
21 PARTY_FLAGS_1_ALERT_YELLOW = 0x0020,
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 527
diff changeset
22 PARTY_FLAGS_1_STANDING_ON_WATER = 0x0080,
390
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
23 PARTY_FLAGS_1_LANDING = 0x0100,
141
cca78efb377e Constants -> enums
Nomad
parents: 130
diff changeset
24 };
cca78efb377e Constants -> enums
Nomad
parents: 130
diff changeset
25 enum PARTY_FLAGS_2: __int32
0
Ritor1
parents:
diff changeset
26 {
Ritor1
parents:
diff changeset
27 PARTY_FLAGS_2_RUNNING = 0x2,
Ritor1
parents:
diff changeset
28 };
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30 /* 347 */
Ritor1
parents:
diff changeset
31 enum PARTY_BUFF_INDEX
Ritor1
parents:
diff changeset
32 {
488
Nomad
parents: 484
diff changeset
33 PARTY_BUFF_RESIST_AIR = 0,
Nomad
parents: 484
diff changeset
34 PARTY_BUFF_RESIST_BODY = 1,
Nomad
parents: 484
diff changeset
35 PARTY_BUFF_DAY_OF_GODS = 2,
Nomad
parents: 484
diff changeset
36 PARTY_BUFF_DETECT_LIFE = 3,
Nomad
parents: 484
diff changeset
37 PARTY_BUFF_RESIST_EARTH = 4,
Nomad
parents: 484
diff changeset
38 PARTY_BUFF_FEATHER_FALL = 5,
Nomad
parents: 484
diff changeset
39 PARTY_BUFF_RESIST_FIRE = 6,
Nomad
parents: 484
diff changeset
40 PARTY_BUFF_FLY = 7,
Nomad
parents: 484
diff changeset
41 PARTY_BUFF_HASTE = 8,
Nomad
parents: 484
diff changeset
42 PARTY_BUFF_HEROISM = 9,
Nomad
parents: 484
diff changeset
43 PARTY_BUFF_IMMOLATION = 10,
271
1f0af5cac2dd _42ECB5_PlayerAttacksActor
Nomad
parents: 141
diff changeset
44 PARTY_BUFF_INVISIBILITY = 11,
488
Nomad
parents: 484
diff changeset
45 PARTY_BUFF_RESIST_MIND = 12,
Nomad
parents: 484
diff changeset
46 PARTY_BUFF_PROTECTION_FROM_MAGIC = 13,
Nomad
parents: 484
diff changeset
47 PARTY_BUFF_SHIELD = 14,
Nomad
parents: 484
diff changeset
48 PARTY_BUFF_STONE_SKIN = 15,
Nomad
parents: 484
diff changeset
49 PARTY_BUFF_TORCHLIGHT = 16,
Nomad
parents: 484
diff changeset
50 PARTY_BUFF_RESIST_WATER = 17,
Nomad
parents: 484
diff changeset
51 PARTY_BUFF_WATER_WALK = 18,
Nomad
parents: 484
diff changeset
52 PARTY_BUFF_WIZARD_EYE = 19,
0
Ritor1
parents:
diff changeset
53 };
Ritor1
parents:
diff changeset
54
Ritor1
parents:
diff changeset
55
Ritor1
parents:
diff changeset
56
Ritor1
parents:
diff changeset
57 /* 300 */
Ritor1
parents:
diff changeset
58 enum PartyAction: unsigned __int32
Ritor1
parents:
diff changeset
59 {
Ritor1
parents:
diff changeset
60 PARTY_INVALID = 0,
Ritor1
parents:
diff changeset
61 PARTY_TurnLeft = 0x1,
Ritor1
parents:
diff changeset
62 PARTY_TurnRight = 0x2,
Ritor1
parents:
diff changeset
63 PARTY_StrafeLeft = 0x3,
Ritor1
parents:
diff changeset
64 PARTY_StrafeRight = 0x4,
Ritor1
parents:
diff changeset
65 PARTY_WalkForward = 0x5,
Ritor1
parents:
diff changeset
66 PARTY_WalkBackward = 0x6,
Ritor1
parents:
diff changeset
67 PARTY_LookUp = 0x7,
Ritor1
parents:
diff changeset
68 PARTY_LookDown = 0x8,
Ritor1
parents:
diff changeset
69 PARTY_CenterView = 0x9,
Ritor1
parents:
diff changeset
70 PARTY_unkA = 0xA,
Ritor1
parents:
diff changeset
71 PARTY_unkB = 0xB,
Ritor1
parents:
diff changeset
72 PARTY_Jump = 0xC,
Ritor1
parents:
diff changeset
73 PARTY_FlyUp = 0xD,
Ritor1
parents:
diff changeset
74 PARTY_FlyDown = 0xE,
Ritor1
parents:
diff changeset
75 PARTY_Land = 0xF,
Ritor1
parents:
diff changeset
76 PARTY_RunForward = 0x10,
Ritor1
parents:
diff changeset
77 PARTY_RunBackward = 0x11,
Ritor1
parents:
diff changeset
78 PARTY_FastTurnLeft = 0x12,
Ritor1
parents:
diff changeset
79 PARTY_FastTurnRight = 0x13,
Ritor1
parents:
diff changeset
80
Ritor1
parents:
diff changeset
81 PARTY_dword = 0xFFFFFFFF
Ritor1
parents:
diff changeset
82 };
Ritor1
parents:
diff changeset
83
Ritor1
parents:
diff changeset
84
Ritor1
parents:
diff changeset
85
Ritor1
parents:
diff changeset
86 /* 135 */
Ritor1
parents:
diff changeset
87 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
88 struct ActionQueue
Ritor1
parents:
diff changeset
89 {
Ritor1
parents:
diff changeset
90 void Add(PartyAction action);
Ritor1
parents:
diff changeset
91 PartyAction Next();
Ritor1
parents:
diff changeset
92
Ritor1
parents:
diff changeset
93 unsigned int uNumActions;
Ritor1
parents:
diff changeset
94 PartyAction pActions[30];
Ritor1
parents:
diff changeset
95 };
Ritor1
parents:
diff changeset
96 #pragma pack(pop)
Ritor1
parents:
diff changeset
97
Ritor1
parents:
diff changeset
98
Ritor1
parents:
diff changeset
99
Ritor1
parents:
diff changeset
100
Ritor1
parents:
diff changeset
101
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
102 enum PartyAlignment: unsigned __int32
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
103 {
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
104 PartyAlignment_Good = 0,
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
105 PartyAlignment_Neutral = 1,
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
106 PartyAlignment_Evil = 2
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
107 };
0
Ritor1
parents:
diff changeset
108
Ritor1
parents:
diff changeset
109
Ritor1
parents:
diff changeset
110
Ritor1
parents:
diff changeset
111
Ritor1
parents:
diff changeset
112
Ritor1
parents:
diff changeset
113 /* 208 */
Ritor1
parents:
diff changeset
114 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
115 struct Party_stru0
Ritor1
parents:
diff changeset
116 {
Ritor1
parents:
diff changeset
117 int field_0[20];
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 470
diff changeset
118 // int field_50[170];
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 470
diff changeset
119 __int64 field_50[85];
484
4bd56919f075 avard quest guild bits
Gloval
parents: 471
diff changeset
120 __int64 _shop_ban_times[53];
4bd56919f075 avard quest guild bits
Gloval
parents: 471
diff changeset
121 int field_4A0[20];
0
Ritor1
parents:
diff changeset
122 int field_4F0[38];
Ritor1
parents:
diff changeset
123 char field_588[2];
484
4bd56919f075 avard quest guild bits
Gloval
parents: 471
diff changeset
124 __int64 _s_times[21]; //5d8 440h+8*51
527
661f1932d971 Party integrity fix
zipi
parents: 518
diff changeset
125 __int64 field_632[8];
661f1932d971 Party integrity fix
zipi
parents: 518
diff changeset
126 char field_672[6];
484
4bd56919f075 avard quest guild bits
Gloval
parents: 471
diff changeset
127 // char pIsArtifactFound[8];
0
Ritor1
parents:
diff changeset
128 };
Ritor1
parents:
diff changeset
129 #pragma pack(pop)
Ritor1
parents:
diff changeset
130
Ritor1
parents:
diff changeset
131 /* 207 */
Ritor1
parents:
diff changeset
132 #pragma pack(push, 1)
Ritor1
parents:
diff changeset
133 struct Party
Ritor1
parents:
diff changeset
134 {
Ritor1
parents:
diff changeset
135 Party():
Ritor1
parents:
diff changeset
136 uTimePlayed(0)
Ritor1
parents:
diff changeset
137 {
Ritor1
parents:
diff changeset
138 uCurrentYear = 0;
Ritor1
parents:
diff changeset
139 uCurrentMonth = 0;
Ritor1
parents:
diff changeset
140 uCurrentMonthWeek = 0;
Ritor1
parents:
diff changeset
141 uDaysPlayed = 0;
Ritor1
parents:
diff changeset
142 uCurrentHour = 0;
Ritor1
parents:
diff changeset
143 uCurrentMinute = 0;
Ritor1
parents:
diff changeset
144 uCurrentTimeSecond = 0;
Ritor1
parents:
diff changeset
145
Ritor1
parents:
diff changeset
146 field_6FC = 0;
Ritor1
parents:
diff changeset
147 field_764 = 0;
120
fe0e317c0de0 Camera rotation fixed. Sorta
Nomad
parents: 66
diff changeset
148
122
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
149 vPosition.y = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
150 vPosition.z = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
151 vPosition.x = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
152 uFallStartY = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
153 sRotationY = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
154 sRotationX = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
155 uFallSpeed = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
156 field_28 = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
157 uDefaultPartyHeight = 120;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
158 field_14 = 37;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
159 y_rotation_granularity = 25;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
160 uWalkSpeed = 384;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
161 y_rotation_speed = 90;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
162 field_24 = 5;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
163 field_6FC = 0;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
164 field_708 = 15;
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
165 field_0 = 25;
0
Ritor1
parents:
diff changeset
166 }
Ritor1
parents:
diff changeset
167
130
1c471f3629fb Party expressions update
Nomad
parents: 122
diff changeset
168 void UpdatePlayersAndHirelingsEmotions();
0
Ritor1
parents:
diff changeset
169 void RestAndHeal();
Ritor1
parents:
diff changeset
170 unsigned int GetPartyFame();
Ritor1
parents:
diff changeset
171 void CreateDefaultParty(char bGiveItems);
Ritor1
parents:
diff changeset
172 int Reset();
Ritor1
parents:
diff changeset
173 void ResetPosMiscAndSpellBuffs();
Ritor1
parents:
diff changeset
174 bool HasItem(unsigned int uItemID);
Ritor1
parents:
diff changeset
175 void SetHoldingItem(ItemGen *pItem);
Ritor1
parents:
diff changeset
176 int GetNextActiveCharacter();
Ritor1
parents:
diff changeset
177 bool _497FC5_check_party_perception_against_level();
Ritor1
parents:
diff changeset
178 bool AddItem(ItemGen *pItem);
Ritor1
parents:
diff changeset
179 void Yell();
Ritor1
parents:
diff changeset
180
Ritor1
parents:
diff changeset
181 static void SetGold(unsigned int uNumGold);
Ritor1
parents:
diff changeset
182 static void TakeGold(unsigned int uNumGold);
593
Nomad
parents: 592
diff changeset
183 static void SetFood(unsigned int uNumFood);
0
Ritor1
parents:
diff changeset
184 static void TakeFood(unsigned int uNumFood);
592
96f48cfdd657 some flags
Nomad
parents: 569
diff changeset
185 static void GiveFood(unsigned int _this);
0
Ritor1
parents:
diff changeset
186
Ritor1
parents:
diff changeset
187 inline bool WizardEyeActive() {return pPartyBuffs[PARTY_BUFF_WIZARD_EYE].uExpireTime > 0;}
Ritor1
parents:
diff changeset
188 inline int WizardEyeSkillLevel() {return pPartyBuffs[PARTY_BUFF_WIZARD_EYE].uSkill;}
Ritor1
parents:
diff changeset
189 inline bool TorchlightActive() {return pPartyBuffs[PARTY_BUFF_TORCHLIGHT].uExpireTime > 0;}
Ritor1
parents:
diff changeset
190 inline bool FlyActive() {return pPartyBuffs[PARTY_BUFF_FLY].uExpireTime > 0;}
Ritor1
parents:
diff changeset
191 inline bool WaterWalkActive() {return pPartyBuffs[PARTY_BUFF_WATER_WALK].uExpireTime > 0;}
Ritor1
parents:
diff changeset
192 inline bool ImmolationActive() {return pPartyBuffs[PARTY_BUFF_IMMOLATION].uExpireTime > 0;}
Ritor1
parents:
diff changeset
193 inline bool ImmolationSkillLevel() {return pPartyBuffs[PARTY_BUFF_IMMOLATION].uSkill;}
Ritor1
parents:
diff changeset
194 inline bool FeatherFallActive() {return pPartyBuffs[PARTY_BUFF_FEATHER_FALL].uExpireTime > 0;}
141
cca78efb377e Constants -> enums
Nomad
parents: 130
diff changeset
195 inline bool Invisible() {return pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime > 0;}
0
Ritor1
parents:
diff changeset
196
390
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
197 inline bool GetRedAlert() {return uFlags & PARTY_FLAGS_1_ALERT_RED;}
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
198 inline void SetRedAlert() {uFlags |= PARTY_FLAGS_1_ALERT_RED;}
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
199 inline bool GetYellowAlert() {return uFlags & PARTY_FLAGS_1_ALERT_YELLOW;}
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
200 inline void SetYellowAlert() {uFlags |= PARTY_FLAGS_1_ALERT_YELLOW;}
35a62d1948d4 More sound fixes
Nomad
parents: 373
diff changeset
201
0
Ritor1
parents:
diff changeset
202
Ritor1
parents:
diff changeset
203 int field_0;
Ritor1
parents:
diff changeset
204 unsigned int uPartyHeight;
Ritor1
parents:
diff changeset
205 unsigned int uDefaultPartyHeight;
Ritor1
parents:
diff changeset
206 int sEyelevel;
Ritor1
parents:
diff changeset
207 unsigned int uDefaultEyelevel;
Ritor1
parents:
diff changeset
208 int field_14;
120
fe0e317c0de0 Camera rotation fixed. Sorta
Nomad
parents: 66
diff changeset
209 int y_rotation_granularity;
0
Ritor1
parents:
diff changeset
210 unsigned int uWalkSpeed;
122
48bea61a12a5 Camera rotation fixed (even more!)
Nomad
parents: 120
diff changeset
211 int y_rotation_speed; // deg/s
0
Ritor1
parents:
diff changeset
212 int field_24;
Ritor1
parents:
diff changeset
213 int field_28;
Ritor1
parents:
diff changeset
214 unsigned __int64 uTimePlayed;
Ritor1
parents:
diff changeset
215 __int64 uLastRegenerationTime;
Ritor1
parents:
diff changeset
216 Party_stru0 field_3C;
Ritor1
parents:
diff changeset
217 Vec3_int_ vPosition;
Ritor1
parents:
diff changeset
218 int sRotationY;
Ritor1
parents:
diff changeset
219 int sRotationX;
Ritor1
parents:
diff changeset
220 Vec3_int_ vPrevPosition;
Ritor1
parents:
diff changeset
221 int sPrevRotationY;
Ritor1
parents:
diff changeset
222 int sPrevRotationX;
Ritor1
parents:
diff changeset
223 int sPrevEyelevel;
Ritor1
parents:
diff changeset
224 int field_6E0;
Ritor1
parents:
diff changeset
225 int field_6E4;
Ritor1
parents:
diff changeset
226 int uFallSpeed;
Ritor1
parents:
diff changeset
227 int field_6EC;
Ritor1
parents:
diff changeset
228 int field_6F0;
Ritor1
parents:
diff changeset
229 int field_6F4_packedid;
Ritor1
parents:
diff changeset
230 int field_6F8;
Ritor1
parents:
diff changeset
231 int field_6FC;
Ritor1
parents:
diff changeset
232 int uFallStartY;
Ritor1
parents:
diff changeset
233 unsigned int bFlying;
Ritor1
parents:
diff changeset
234 char field_708;
Ritor1
parents:
diff changeset
235 char field_709;
Ritor1
parents:
diff changeset
236 char field_70A;
Ritor1
parents:
diff changeset
237 char field_70B;
Ritor1
parents:
diff changeset
238 unsigned int uCurrentYear;
Ritor1
parents:
diff changeset
239 unsigned int uCurrentMonth;
Ritor1
parents:
diff changeset
240 unsigned int uCurrentMonthWeek;
Ritor1
parents:
diff changeset
241 unsigned int uDaysPlayed;
Ritor1
parents:
diff changeset
242 unsigned int uCurrentHour;
Ritor1
parents:
diff changeset
243 unsigned int uCurrentMinute;
Ritor1
parents:
diff changeset
244 unsigned int uCurrentTimeSecond;
Ritor1
parents:
diff changeset
245 unsigned int uNumFoodRations;
Ritor1
parents:
diff changeset
246 int field_72C;
Ritor1
parents:
diff changeset
247 int field_730;
Ritor1
parents:
diff changeset
248 unsigned int uNumGold;
Ritor1
parents:
diff changeset
249 unsigned int uNumGoldInBank;
Ritor1
parents:
diff changeset
250 unsigned int uNumDeaths;
Ritor1
parents:
diff changeset
251 int field_740;
Ritor1
parents:
diff changeset
252 int uNumPrisonTerms;
Ritor1
parents:
diff changeset
253 unsigned int uNumBountiesCollected;
Ritor1
parents:
diff changeset
254 int field_74C;
Ritor1
parents:
diff changeset
255 __int16 field_750[5];
Ritor1
parents:
diff changeset
256 __int16 field_75A[5];
Ritor1
parents:
diff changeset
257 char field_764; // num hours resting or some sort of.
484
4bd56919f075 avard quest guild bits
Gloval
parents: 471
diff changeset
258 unsigned __int8 _quest_bits[64];
0
Ritor1
parents:
diff changeset
259 unsigned __int8 pArcomageWins[16];
Ritor1
parents:
diff changeset
260 char field_7B5_in_arena_quest;
Ritor1
parents:
diff changeset
261 char uNumArenaPageWins;
Ritor1
parents:
diff changeset
262 char uNumArenaSquireWins;
Ritor1
parents:
diff changeset
263 char uNumArenaKnightWins;
Ritor1
parents:
diff changeset
264 char uNumArenaLordWins;
492
Gloval
parents: 484
diff changeset
265 char pIsArtifactFound[29]; //7ba
Gloval
parents: 484
diff changeset
266 char field_7d7[39];
0
Ritor1
parents:
diff changeset
267 unsigned char _autonote_bits[12];
Ritor1
parents:
diff changeset
268 char field_80A[74];
Ritor1
parents:
diff changeset
269 char field_854[32];
Ritor1
parents:
diff changeset
270 int field_874;
Ritor1
parents:
diff changeset
271 int field_878;
Ritor1
parents:
diff changeset
272 unsigned int bTurnBasedModeOn;
Ritor1
parents:
diff changeset
273 int field_880;
Ritor1
parents:
diff changeset
274 int uFlags2;
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 349
diff changeset
275 PartyAlignment alignment;
0
Ritor1
parents:
diff changeset
276 SpellBuff pPartyBuffs[20];
Ritor1
parents:
diff changeset
277 Player pPlayers[4];
Ritor1
parents:
diff changeset
278 NPCData pHirelings[2];
Ritor1
parents:
diff changeset
279 ItemGen pPickedItem;
Ritor1
parents:
diff changeset
280 unsigned int uFlags;
463
f7b91ef98ab2 shopgenerators done, except config tables
Gloval
parents: 440
diff changeset
281 ItemGen StandartItemsInShops[53][12];
470
fcdaa804074f Tables for shopgenerators
Gloval
parents: 463
diff changeset
282 ItemGen SpecialItemsInShops[53][12]; //D0EC
496
0e20e886365d guilds ....
Gloval
parents: 493
diff changeset
283 ItemGen SpellBooksInGuilds[32][12];
527
661f1932d971 Party integrity fix
zipi
parents: 518
diff changeset
284 char field_1605C[24];
0
Ritor1
parents:
diff changeset
285 char pHireling1Name[100];
Ritor1
parents:
diff changeset
286 char pHireling2Name[100];
349
672b83584b0f GetActorTintColor
Nomad
parents: 271
diff changeset
287 int armageddon_timer;
0
Ritor1
parents:
diff changeset
288 int field_16140;
Ritor1
parents:
diff changeset
289 int pTurnBasedPlayerRecoveryTimes[4];
463
f7b91ef98ab2 shopgenerators done, except config tables
Gloval
parents: 440
diff changeset
290 int InTheShopFlags[53];
0
Ritor1
parents:
diff changeset
291 int uFine;
Ritor1
parents:
diff changeset
292 float flt_TorchlightColorR;
Ritor1
parents:
diff changeset
293 float flt_TorchlightColorG;
Ritor1
parents:
diff changeset
294 float flt_TorchlightColorB;
Ritor1
parents:
diff changeset
295 };
Ritor1
parents:
diff changeset
296 #pragma pack(pop)
Ritor1
parents:
diff changeset
297
Ritor1
parents:
diff changeset
298
Ritor1
parents:
diff changeset
299
Ritor1
parents:
diff changeset
300 extern Party *pParty; // idb
Ritor1
parents:
diff changeset
301
Ritor1
parents:
diff changeset
302
66
653fdf29c654 23.01.13 (work)
Ritor1
parents: 0
diff changeset
303 extern struct ActionQueue *pPartyActionQueue;
653fdf29c654 23.01.13 (work)
Ritor1
parents: 0
diff changeset
304