1 #include "3dc.h"
2 #include "inline.h"
3 #include "module.h"
4 #include "stratdef.h"
5 #include "gamedef.h"
6 #include "avp_envinfo.h"
7 #include "avp_userprofile.h"
8 #include "avp_mp_config.h"
9 #include "pldnet.h"
10 
11 static enum AVP_ENVIRONMENT_ID MarineEpisodes[] =
12 {
13 	// main single player game
14 	AVP_ENVIRONMENT_DERELICT,
15 	AVP_ENVIRONMENT_COLONY,
16 	AVP_ENVIRONMENT_INVASION,
17 	AVP_ENVIRONMENT_ORBITAL,
18 	AVP_ENVIRONMENT_TYRARGO,
19 	AVP_ENVIRONMENT_TYRARGOHANGAR,
20 
21 	AVP_ENVIRONMENT_TEMPLE_M,
22 	AVP_ENVIRONMENT_VAULTS_M,
23 	AVP_ENVIRONMENT_FERARCO_M,
24 	AVP_ENVIRONMENT_GATEWAY_M,
25 	AVP_ENVIRONMENT_WATERFALL_M,
26 	// that's all folks
27 	AVP_ENVIRONMENT_END_OF_LIST
28 };
29 
30 static enum AVP_ENVIRONMENT_ID PredatorEpisodes[] =
31 {
32 	// main single player game
33 	AVP_ENVIRONMENT_WATERFALL,
34 	AVP_ENVIRONMENT_AREA52,
35 	AVP_ENVIRONMENT_VAULTS,
36 	AVP_ENVIRONMENT_FURY161,
37 	AVP_ENVIRONMENT_CAVERNS,
38 	AVP_ENVIRONMENT_CAVERNSEND,
39 
40 	AVP_ENVIRONMENT_INVASION_P,
41 	AVP_ENVIRONMENT_ESCAPE_P,
42 	AVP_ENVIRONMENT_TEMPLE_P,
43 	AVP_ENVIRONMENT_EARTHBOUND_P,
44 	AVP_ENVIRONMENT_TYRARGO_P,
45 
46 	// that's all folks
47 	AVP_ENVIRONMENT_END_OF_LIST
48 };
49 
50 static enum AVP_ENVIRONMENT_ID AlienEpisodes[] =
51 {
52 	// main single player game
53 	AVP_ENVIRONMENT_TEMPLE,
54 	AVP_ENVIRONMENT_ESCAPE,
55 	AVP_ENVIRONMENT_FERARCO,
56 	AVP_ENVIRONMENT_GATEWAY,
57 	AVP_ENVIRONMENT_EARTHBOUND,
58 
59 	AVP_ENVIRONMENT_INVASION_A,
60 	AVP_ENVIRONMENT_DERELICT_A,
61 	AVP_ENVIRONMENT_TYRARGO_A,
62 	AVP_ENVIRONMENT_CAVERNS_A,
63 	AVP_ENVIRONMENT_FURY161_A,
64 	// that's all folks
65 	AVP_ENVIRONMENT_END_OF_LIST
66 };
67 
68 static enum AVP_ENVIRONMENT_ID MultiplayerEpisodes[] =
69 {
70  #ifndef MPLAYER_DEMO
71 	AVP_ENVIRONMENT_SEWER,
72 //	AVP_ENVIRONMENT_SCREAM,
73 	AVP_ENVIRONMENT_MASSACRE,
74 //	AVP_ENVIRONMENT_STATION,
75 //	AVP_ENVIRONMENT_DESTRUCTION,
76 	AVP_ENVIRONMENT_STATUE,
77 	AVP_ENVIRONMENT_JOCKEY,
78  #endif
79 
80 	AVP_ENVIRONMENT_HIVE,
81 
82 //and now the multipack levels
83 	AVP_ENVIRONMENT_LEADWORKS_MP,
84 	AVP_ENVIRONMENT_HADLEYSHOPE_MP,
85 	AVP_ENVIRONMENT_MEATFACTORY_MP,
86 	AVP_ENVIRONMENT_NOSTROMO_MP,
87 	AVP_ENVIRONMENT_SUBWAY_MP,
88 	AVP_ENVIRONMENT_ELEVATOR_MP,
89 	AVP_ENVIRONMENT_LAB14_MP,
90 	AVP_ENVIRONMENT_COMPOUND_MP,
91 	AVP_ENVIRONMENT_OFFICE_MP,
92 
93 	// that's all folks
94 	AVP_ENVIRONMENT_END_OF_LIST
95 };
96 
97 static enum AVP_ENVIRONMENT_ID CooperativeEpisodes[] =
98 {
99 	AVP_ENVIRONMENT_KENS_COOP,
100 	AVP_ENVIRONMENT_HIVE_COOP,
101 	AVP_ENVIRONMENT_TRAPPED_COOP,
102 	AVP_ENVIRONMENT_ALS_DM_COOP,
103 	AVP_ENVIRONMENT_JOCKEY_COOP,
104 
105 //and now the multipack levels
106 	AVP_ENVIRONMENT_LEADWORKS_COOP,
107 	AVP_ENVIRONMENT_HADLEYSHOPE_COOP,
108 	AVP_ENVIRONMENT_MEATFACTORY_COOP,
109 	AVP_ENVIRONMENT_NOSTROMO_COOP,
110 	AVP_ENVIRONMENT_SUBWAY_COOP,
111 	AVP_ENVIRONMENT_ELEVATOR_COOP,
112 	AVP_ENVIRONMENT_LAB14_COOP,
113 	AVP_ENVIRONMENT_COMPOUND_COOP,
114 
115 	AVP_ENVIRONMENT_END_OF_LIST
116 };
117 
118 static char *RifNamesForEnvironments[] =
119 {
120 	// primarily Marine
121 	"derelict",//AVP_ENVIRONMENT_DERELICT,
122 	"genshd1",//AVP_ENVIRONMENT_COLONY,
123 	"invasion",//AVP_ENVIRONMENT_INVASION,
124 	"odobenus",//AVP_ENVIRONMENT_ORBITAL,
125 	"sulaco",//AVP_ENVIRONMENT_TYRARGO,
126 	"hangar",//AVP_ENVIRONMENT_TYRARGOHANGAR,
127 
128 	// primarily Predator
129 	"fall",//AVP_ENVIRONMENT_WATERFALL,
130 	"area52",//AVP_ENVIRONMENT_AREA52,
131 	"vaults",//AVP_ENVIRONMENT_VAULTS,
132 	"furyall",//AVP_ENVIRONMENT_FURY161,
133 	"caverns",//AVP_ENVIRONMENT_CAVERNS,
134 	"battle",//AVP_ENVIRONMENT_CAVERNSEND,
135 
136 	// primarily Alien
137 	"nost03",//AVP_ENVIRONMENT_FERARCO,
138 	"temple",//AVP_ENVIRONMENT_TEMPLE,
139 	"stat101",//AVP_ENVIRONMENT_GATEWAY,
140 	"escape",//AVP_ENVIRONMENT_ESCAPE,
141 	"breakout",//AVP_ENVIRONMENT_EARTHBOUND,
142 
143 	// primarily multiplayer
144 	"als-dm",//AVP_ENVIRONMENT_SEWER,
145 	"e3demo",//AVP_ENVIRONMENT_MASSACRE,
146 	"statue",//AVP_ENVIRONMENT_STATUE,
147 	"jockey",//AVP_ENVIRONMENT_JOCKEY
148 	"hive",//AVP_ENVIRONEMENT_HIVE
149 
150 	// Alien bonus levels
151 	"invasion_a",//AVP_ENVIRONMENT_INVASION_A,
152 	"derelict_a",//AVP_ENVIRONMENT_DERELICT_A,
153 	"sulaco_a",//AVP_ENVIRONMENT_TYRARGO_A,
154 	"furyall_a",//AVP_ENVIRONMENT_FURY161_A,
155 	"caverns_a",//AVP_ENVIRONMENT_CAVERNS_A,
156 
157 	// Predator	bonus levels
158 	"invasion_p",//AVP_ENVIRONMENT_INVASION_P,
159 	"sulaco_p",//AVP_ENVIRONMENT_TYRARGO_P,
160 	"temple_p",//AVP_ENVIRONMENT_TEMPLE_P,
161 	"escape_p",//AVP_ENVIRONMENT_ESCAPE_P,
162 	"breakout_p",//AVP_ENVIRONMENT_EARTHBOUND_P,
163 
164 	// Marine bonus levels
165 	"fall_m",//AVP_ENVIRONMENT_WATERFALL_M,
166 	"vaults_m",//AVP_ENVIRONMENT_VAULTS_M,
167 	"nost03_m",//AVP_ENVIRONMENT_FERARCO_M,
168 	"temple_m",//AVP_ENVIRONMENT_TEMPLE_M,
169 	"stat101_m",//AVP_ENVIRONMENT_GATEWAY_M,
170 
171 
172 	//cooperative levels
173 	"kens-co-op",//AVP_ENVIRONMENT_KENS_COOP,
174 	"hive_c",//AVP_ENVIRONMENT_HIVE_COOP,
175 	"trapped",//AVP_ENVIRONMENT_TRAPPED_COOP,
176 	"als-dm-coop",//AVP_ENVIRONMENT_ALS_DM_COOP,
177 	"jockeycoop",//AVP_ENVIRONMENT_JOCKEY_COOP,
178 
179 	// demo levels
180 	"e3demosp",//AVP_ENVIRONMENT_E3DEMOSP,
181 
182 	"Not a Level",//AVP_ENVIRONMENT_END_OF_LIST
183 
184 	//multipack multiplayer levels
185 	"leadworks",//AVP_ENVIRONMENT_LEADWORKS_MP,
186 	"hadleyshope",//AVP_ENVIRONMENT_HADLEYSHOPE_MP,
187 	"meat_factory",//AVP_ENVIRONMENT_MEATFACTORY_MP,
188 	"nostromo",//AVP_ENVIRONMENT_NOSTROMO_MP,
189 	"subway",//AVP_ENVIRONMENT_SUBWAY_MP,
190 	"elevator",//AVP_ENVIRONMENT_ELEVATOR_MP,
191 	"lab14",//AVP_ENVIRONMENT_LAB14_MP,
192 	"compound",//AVP_ENVIRONMENT_COMPOUND_MP,
193 	"office",//AVP_ENVIRONMENT_OFFICE_MP,
194 
195 	//multipack multiplayer cooperative levels
196 	"leadworks_coop",//AVP_ENVIRONMENT_LEADWORKS_COOP,
197 	"hadleyshope_coop",//AVP_ENVIRONMENT_HADLEYSHOPE_COOP,
198 	"co-op_meat_factory",//AVP_ENVIRONMENT_MEATFACTORY_COOP,
199 	"nostromo_coop",//AVP_ENVIRONMENT_NOSTROMO_COOP,
200 	"subwaycoop",//AVP_ENVIRONMENT_SUBWAY_COOP,
201 	"elevator_co-op",//AVP_ENVIRONMENT_ELEVATOR_COOP,
202 	"lab14coop",//AVP_ENVIRONMENT_LAB14_COOP,
203 	"compoundcoop",//AVP_ENVIRONMENT_COMPOUND_COOP,
204 };
205 
206 extern char LevelName[];
207 
208 AvP_Level_Target_Desc LevelStatsTargets[I_MaxDifficulties][AVP_ENVIRONMENT_END_OF_LIST] = {
209 {
210 	{
211 		{	/* Derelict / Easy */
212 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
213 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
214 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
215 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
216 			-1,		/* Shots Fired */
217 			-1,		/* Accuracy */
218 			-1,		/* Spotted */
219 			0,		/* Total Seconds (unsigned!) */
220 			0,		/* Total Minutes (unsigned!) */
221 			-1,		/* Total Hours */
222 			0,		/* Cloaked Seconds */
223 			0,		/* Cloaked Minutes */
224 			-1,		/* Cloaked Hours */
225 			-1,		/* Health Damage */
226 			-1,		/* Armour Damage */
227 			-1,		/* Average Speed */
228 			-1,		/* Field Charge Used */
229 			-1,		/* Head Shot Percentage */
230 			{		/* Padding */
231 				0,0,0,0,0,0,0,0,0,0,
232 				0,0,0,0,0,0,0,0,0,0,
233 				0,0,0,0,0,0,0,0,0,0,
234 				0,0,0,0,0,0,0,0,0,0
235 			}
236 		},
237 		CHEATMODE_NONACTIVE	/* Cheat to activate */
238 	},
239 	{
240 		{	/* Colony / Easy */
241 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
242 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
243 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
244 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
245 			-1,		/* Shots Fired */
246 			-1,		/* Accuracy */
247 			-1,		/* Spotted */
248 			0,		/* Total Seconds (unsigned!) */
249 			0,		/* Total Minutes (unsigned!) */
250 			-1,		/* Total Hours */
251 			0,		/* Cloaked Seconds */
252 			0,		/* Cloaked Minutes */
253 			-1,		/* Cloaked Hours */
254 			-1,		/* Health Damage */
255 			-1,		/* Armour Damage */
256 			-1,		/* Average Speed */
257 			-1,		/* Field Charge Used */
258 			-1,		/* Head Shot Percentage */
259 			{		/* Padding */
260 				0,0,0,0,0,0,0,0,0,0,
261 				0,0,0,0,0,0,0,0,0,0,
262 				0,0,0,0,0,0,0,0,0,0,
263 				0,0,0,0,0,0,0,0,0,0
264 			}
265 		},
266 		CHEATMODE_NONACTIVE	/* Cheat to activate */
267 	},
268 	{
269 		{	/* Invasion / Easy */
270 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
271 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
272 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
273 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
274 			-1,		/* Shots Fired */
275 			-1,		/* Accuracy */
276 			-1,		/* Spotted */
277 			0,		/* Total Seconds (unsigned!) */
278 			0,		/* Total Minutes (unsigned!) */
279 			-1,		/* Total Hours */
280 			0,		/* Cloaked Seconds */
281 			0,		/* Cloaked Minutes */
282 			-1,		/* Cloaked Hours */
283 			-1,		/* Health Damage */
284 			-1,		/* Armour Damage */
285 			-1,		/* Average Speed */
286 			-1,		/* Field Charge Used */
287 			-1,		/* Head Shot Percentage */
288 			{		/* Padding */
289 				0,0,0,0,0,0,0,0,0,0,
290 				0,0,0,0,0,0,0,0,0,0,
291 				0,0,0,0,0,0,0,0,0,0,
292 				0,0,0,0,0,0,0,0,0,0
293 			}
294 		},
295 		CHEATMODE_NONACTIVE	/* Cheat to activate */
296 	},
297 	{
298 		{	/* Orbital / Easy */
299 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
300 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
301 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
302 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
303 			-1,		/* Shots Fired */
304 			-1,		/* Accuracy */
305 			-1,		/* Spotted */
306 			0,		/* Total Seconds (unsigned!) */
307 			0,		/* Total Minutes (unsigned!) */
308 			-1,		/* Total Hours */
309 			0,		/* Cloaked Seconds */
310 			0,		/* Cloaked Minutes */
311 			-1,		/* Cloaked Hours */
312 			-1,		/* Health Damage */
313 			-1,		/* Armour Damage */
314 			-1,		/* Average Speed */
315 			-1,		/* Field Charge Used */
316 			-1,		/* Head Shot Percentage */
317 			{		/* Padding */
318 				0,0,0,0,0,0,0,0,0,0,
319 				0,0,0,0,0,0,0,0,0,0,
320 				0,0,0,0,0,0,0,0,0,0,
321 				0,0,0,0,0,0,0,0,0,0
322 			}
323 		},
324 		CHEATMODE_NONACTIVE	/* Cheat to activate */
325 	},
326 	{
327 		{	/* Tyrago / Easy */
328 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
329 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
330 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
331 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
332 			-1,		/* Shots Fired */
333 			-1,		/* Accuracy */
334 			-1,		/* Spotted */
335 			0,		/* Total Seconds (unsigned!) */
336 			0,		/* Total Minutes (unsigned!) */
337 			-1,		/* Total Hours */
338 			0,		/* Cloaked Seconds */
339 			0,		/* Cloaked Minutes */
340 			-1,		/* Cloaked Hours */
341 			-1,		/* Health Damage */
342 			-1,		/* Armour Damage */
343 			-1,		/* Average Speed */
344 			-1,		/* Field Charge Used */
345 			-1,		/* Head Shot Percentage */
346 			{		/* Padding */
347 				0,0,0,0,0,0,0,0,0,0,
348 				0,0,0,0,0,0,0,0,0,0,
349 				0,0,0,0,0,0,0,0,0,0,
350 				0,0,0,0,0,0,0,0,0,0
351 			}
352 		},
353 		CHEATMODE_NONACTIVE	/* Cheat to activate */
354 	},
355 	{
356 		{	/* Hangar / Easy */
357 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
358 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
359 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
360 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
361 			-1,		/* Shots Fired */
362 			-1,		/* Accuracy */
363 			-1,		/* Spotted */
364 			0,		/* Total Seconds (unsigned!) */
365 			0,		/* Total Minutes (unsigned!) */
366 			-1,		/* Total Hours */
367 			0,		/* Cloaked Seconds */
368 			0,		/* Cloaked Minutes */
369 			-1,		/* Cloaked Hours */
370 			-1,		/* Health Damage */
371 			-1,		/* Armour Damage */
372 			-1,		/* Average Speed */
373 			-1,		/* Field Charge Used */
374 			-1,		/* Head Shot Percentage */
375 			{		/* Padding */
376 				0,0,0,0,0,0,0,0,0,0,
377 				0,0,0,0,0,0,0,0,0,0,
378 				0,0,0,0,0,0,0,0,0,0,
379 				0,0,0,0,0,0,0,0,0,0
380 			}
381 		},
382 		CHEATMODE_NONACTIVE	/* Cheat to activate */
383 	},
384 	{
385 		{	/* Waterfall / Easy */
386 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
387 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
388 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
389 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
390 			-1,		/* Shots Fired */
391 			-1,		/* Accuracy */
392 			-1,		/* Spotted */
393 			0,		/* Total Seconds (unsigned!) */
394 			0,		/* Total Minutes (unsigned!) */
395 			-1,		/* Total Hours */
396 			0,		/* Cloaked Seconds */
397 			0,		/* Cloaked Minutes */
398 			-1,		/* Cloaked Hours */
399 			-1,		/* Health Damage */
400 			-1,		/* Armour Damage */
401 			-1,		/* Average Speed */
402 			-1,		/* Field Charge Used */
403 			-1,		/* Head Shot Percentage */
404 			{		/* Padding */
405 				0,0,0,0,0,0,0,0,0,0,
406 				0,0,0,0,0,0,0,0,0,0,
407 				0,0,0,0,0,0,0,0,0,0,
408 				0,0,0,0,0,0,0,0,0,0
409 			}
410 		},
411 		CHEATMODE_NONACTIVE	/* Cheat to activate */
412 	},
413 	{
414 		{	/* Area52 / Easy */
415 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
416 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
417 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
418 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
419 			-1,		/* Shots Fired */
420 			-1,		/* Accuracy */
421 			-1,		/* Spotted */
422 			0,		/* Total Seconds (unsigned!) */
423 			0,		/* Total Minutes (unsigned!) */
424 			-1,		/* Total Hours */
425 			0,		/* Cloaked Seconds */
426 			0,		/* Cloaked Minutes */
427 			-1,		/* Cloaked Hours */
428 			-1,		/* Health Damage */
429 			-1,		/* Armour Damage */
430 			-1,		/* Average Speed */
431 			-1,		/* Field Charge Used */
432 			-1,		/* Head Shot Percentage */
433 			{		/* Padding */
434 				0,0,0,0,0,0,0,0,0,0,
435 				0,0,0,0,0,0,0,0,0,0,
436 				0,0,0,0,0,0,0,0,0,0,
437 				0,0,0,0,0,0,0,0,0,0
438 			}
439 		},
440 		CHEATMODE_NONACTIVE	/* Cheat to activate */
441 	},
442 	{
443 		{	/* Vaults / Easy */
444 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
445 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
446 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
447 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
448 			-1,		/* Shots Fired */
449 			-1,		/* Accuracy */
450 			-1,		/* Spotted */
451 			0,		/* Total Seconds (unsigned!) */
452 			0,		/* Total Minutes (unsigned!) */
453 			-1,		/* Total Hours */
454 			0,		/* Cloaked Seconds */
455 			0,		/* Cloaked Minutes */
456 			-1,		/* Cloaked Hours */
457 			-1,		/* Health Damage */
458 			-1,		/* Armour Damage */
459 			-1,		/* Average Speed */
460 			-1,		/* Field Charge Used */
461 			-1,		/* Head Shot Percentage */
462 			{		/* Padding */
463 				0,0,0,0,0,0,0,0,0,0,
464 				0,0,0,0,0,0,0,0,0,0,
465 				0,0,0,0,0,0,0,0,0,0,
466 				0,0,0,0,0,0,0,0,0,0
467 			}
468 		},
469 		CHEATMODE_NONACTIVE	/* Cheat to activate */
470 	},
471 	{
472 		{	/* Fury161 / Easy */
473 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
474 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
475 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
476 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
477 			-1,		/* Shots Fired */
478 			-1,		/* Accuracy */
479 			-1,		/* Spotted */
480 			0,		/* Total Seconds (unsigned!) */
481 			0,		/* Total Minutes (unsigned!) */
482 			-1,		/* Total Hours */
483 			0,		/* Cloaked Seconds */
484 			0,		/* Cloaked Minutes */
485 			-1,		/* Cloaked Hours */
486 			-1,		/* Health Damage */
487 			-1,		/* Armour Damage */
488 			-1,		/* Average Speed */
489 			-1,		/* Field Charge Used */
490 			-1,		/* Head Shot Percentage */
491 			{		/* Padding */
492 				0,0,0,0,0,0,0,0,0,0,
493 				0,0,0,0,0,0,0,0,0,0,
494 				0,0,0,0,0,0,0,0,0,0,
495 				0,0,0,0,0,0,0,0,0,0,
496 			},
497 		},
498 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
499 	},
500 	{
501 		{	/* Caverns / Easy */
502 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
503 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
504 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
505 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
506 			-1,		/* Shots Fired */
507 			-1,		/* Accuracy */
508 			-1,		/* Spotted */
509 			0,		/* Total Seconds (unsigned!) */
510 			0,		/* Total Minutes (unsigned!) */
511 			-1,		/* Total Hours */
512 			0,		/* Cloaked Seconds */
513 			0,		/* Cloaked Minutes */
514 			-1,		/* Cloaked Hours */
515 			-1,		/* Health Damage */
516 			-1,		/* Armour Damage */
517 			-1,		/* Average Speed */
518 			-1,		/* Field Charge Used */
519 			-1,		/* Head Shot Percentage */
520 			{		/* Padding */
521 				0,0,0,0,0,0,0,0,0,0,
522 				0,0,0,0,0,0,0,0,0,0,
523 				0,0,0,0,0,0,0,0,0,0,
524 				0,0,0,0,0,0,0,0,0,0,
525 			},
526 		},
527 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
528 	},
529 	{
530 		{	/* Battle / Easy */
531 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
532 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
533 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
534 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
535 			-1,		/* Shots Fired */
536 			-1,		/* Accuracy */
537 			-1,		/* Spotted */
538 			0,		/* Total Seconds (unsigned!) */
539 			0,		/* Total Minutes (unsigned!) */
540 			-1,		/* Total Hours */
541 			0,		/* Cloaked Seconds */
542 			0,		/* Cloaked Minutes */
543 			-1,		/* Cloaked Hours */
544 			-1,		/* Health Damage */
545 			-1,		/* Armour Damage */
546 			-1,		/* Average Speed */
547 			-1,		/* Field Charge Used */
548 			-1,		/* Head Shot Percentage */
549 			{		/* Padding */
550 				0,0,0,0,0,0,0,0,0,0,
551 				0,0,0,0,0,0,0,0,0,0,
552 				0,0,0,0,0,0,0,0,0,0,
553 				0,0,0,0,0,0,0,0,0,0,
554 			},
555 		},
556 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
557 	},
558 	{
559 		{	/* Feraco / Easy */
560 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
561 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
562 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
563 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
564 			-1,		/* Shots Fired */
565 			-1,		/* Accuracy */
566 			-1,		/* Spotted */
567 			0,		/* Total Seconds (unsigned!) */
568 			0,		/* Total Minutes (unsigned!) */
569 			-1,		/* Total Hours */
570 			0,		/* Cloaked Seconds */
571 			0,		/* Cloaked Minutes */
572 			-1,		/* Cloaked Hours */
573 			-1,		/* Health Damage */
574 			-1,		/* Armour Damage */
575 			-1,		/* Average Speed */
576 			-1,		/* Field Charge Used */
577 			-1,		/* Head Shot Percentage */
578 			{		/* Padding */
579 				0,0,0,0,0,0,0,0,0,0,
580 				0,0,0,0,0,0,0,0,0,0,
581 				0,0,0,0,0,0,0,0,0,0,
582 				0,0,0,0,0,0,0,0,0,0,
583 			},
584 		},
585 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
586 	},
587 	{
588 		{	/* Temple / Easy */
589 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
590 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
591 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
592 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
593 			-1,		/* Shots Fired */
594 			-1,		/* Accuracy */
595 			-1,		/* Spotted */
596 			0,		/* Total Seconds (unsigned!) */
597 			0,		/* Total Minutes (unsigned!) */
598 			-1,		/* Total Hours */
599 			0,		/* Cloaked Seconds */
600 			0,		/* Cloaked Minutes */
601 			-1,		/* Cloaked Hours */
602 			-1,		/* Health Damage */
603 			-1,		/* Armour Damage */
604 			-1,		/* Average Speed */
605 			-1,		/* Field Charge Used */
606 			-1,		/* Head Shot Percentage */
607 			{		/* Padding */
608 				0,0,0,0,0,0,0,0,0,0,
609 				0,0,0,0,0,0,0,0,0,0,
610 				0,0,0,0,0,0,0,0,0,0,
611 				0,0,0,0,0,0,0,0,0,0,
612 			},
613 		},
614 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
615 	},
616 	{
617 		{	/* Gateway / Easy */
618 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
619 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
620 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
621 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
622 			-1,		/* Shots Fired */
623 			-1,		/* Accuracy */
624 			-1,		/* Spotted */
625 			0,		/* Total Seconds (unsigned!) */
626 			0,		/* Total Minutes (unsigned!) */
627 			-1,		/* Total Hours */
628 			0,		/* Cloaked Seconds */
629 			0,		/* Cloaked Minutes */
630 			-1,		/* Cloaked Hours */
631 			-1,		/* Health Damage */
632 			-1,		/* Armour Damage */
633 			-1,		/* Average Speed */
634 			-1,		/* Field Charge Used */
635 			-1,		/* Head Shot Percentage */
636 			{		/* Padding */
637 				0,0,0,0,0,0,0,0,0,0,
638 				0,0,0,0,0,0,0,0,0,0,
639 				0,0,0,0,0,0,0,0,0,0,
640 				0,0,0,0,0,0,0,0,0,0,
641 			},
642 		},
643 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
644 	},
645 	{
646 		{	/* Escape / Easy */
647 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
648 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
649 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
650 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
651 			-1,		/* Shots Fired */
652 			-1,		/* Accuracy */
653 			-1,		/* Spotted */
654 			0,		/* Total Seconds (unsigned!) */
655 			0,		/* Total Minutes (unsigned!) */
656 			-1,		/* Total Hours */
657 			0,		/* Cloaked Seconds */
658 			0,		/* Cloaked Minutes */
659 			-1,		/* Cloaked Hours */
660 			-1,		/* Health Damage */
661 			-1,		/* Armour Damage */
662 			-1,		/* Average Speed */
663 			-1,		/* Field Charge Used */
664 			-1,		/* Head Shot Percentage */
665 			{		/* Padding */
666 				0,0,0,0,0,0,0,0,0,0,
667 				0,0,0,0,0,0,0,0,0,0,
668 				0,0,0,0,0,0,0,0,0,0,
669 				0,0,0,0,0,0,0,0,0,0,
670 			},
671 		},
672 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
673 	},
674 	{
675 		{	/* Earthbound / Easy */
676 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
677 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
678 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
679 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
680 			-1,		/* Shots Fired */
681 			-1,		/* Accuracy */
682 			-1,		/* Spotted */
683 			0,		/* Total Seconds (unsigned!) */
684 			0,		/* Total Minutes (unsigned!) */
685 			-1,		/* Total Hours */
686 			0,		/* Cloaked Seconds */
687 			0,		/* Cloaked Minutes */
688 			-1,		/* Cloaked Hours */
689 			-1,		/* Health Damage */
690 			-1,		/* Armour Damage */
691 			-1,		/* Average Speed */
692 			-1,		/* Field Charge Used */
693 			-1,		/* Head Shot Percentage */
694 			{		/* Padding */
695 				0,0,0,0,0,0,0,0,0,0,
696 				0,0,0,0,0,0,0,0,0,0,
697 				0,0,0,0,0,0,0,0,0,0,
698 				0,0,0,0,0,0,0,0,0,0,
699 			},
700 		},
701 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
702 	},
703 	{
704 		{	/* Sewer / Easy */
705 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
706 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
707 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
708 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
709 			-1,		/* Shots Fired */
710 			-1,		/* Accuracy */
711 			-1,		/* Spotted */
712 			0,		/* Total Seconds (unsigned!) */
713 			0,		/* Total Minutes (unsigned!) */
714 			-1,		/* Total Hours */
715 			0,		/* Cloaked Seconds */
716 			0,		/* Cloaked Minutes */
717 			-1,		/* Cloaked Hours */
718 			-1,		/* Health Damage */
719 			-1,		/* Armour Damage */
720 			-1,		/* Average Speed */
721 			-1,		/* Field Charge Used */
722 			-1,		/* Head Shot Percentage */
723 			{		/* Padding */
724 				0,0,0,0,0,0,0,0,0,0,
725 				0,0,0,0,0,0,0,0,0,0,
726 				0,0,0,0,0,0,0,0,0,0,
727 				0,0,0,0,0,0,0,0,0,0,
728 			},
729 		},
730 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
731 	},
732 	{
733 		{	/* Massacre / Easy */
734 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
735 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
736 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
737 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
738 			-1,		/* Shots Fired */
739 			-1,		/* Accuracy */
740 			-1,		/* Spotted */
741 			0,		/* Total Seconds (unsigned!) */
742 			0,		/* Total Minutes (unsigned!) */
743 			-1,		/* Total Hours */
744 			0,		/* Cloaked Seconds */
745 			0,		/* Cloaked Minutes */
746 			-1,		/* Cloaked Hours */
747 			-1,		/* Health Damage */
748 			-1,		/* Armour Damage */
749 			-1,		/* Average Speed */
750 			-1,		/* Field Charge Used */
751 			-1,		/* Head Shot Percentage */
752 			{		/* Padding */
753 				0,0,0,0,0,0,0,0,0,0,
754 				0,0,0,0,0,0,0,0,0,0,
755 				0,0,0,0,0,0,0,0,0,0,
756 				0,0,0,0,0,0,0,0,0,0,
757 			},
758 		},
759 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
760 	},
761 	{
762 		{	/* Statue / Easy */
763 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
764 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
765 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
766 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
767 			-1,		/* Shots Fired */
768 			-1,		/* Accuracy */
769 			-1,		/* Spotted */
770 			0,		/* Total Seconds (unsigned!) */
771 			0,		/* Total Minutes (unsigned!) */
772 			-1,		/* Total Hours */
773 			0,		/* Cloaked Seconds */
774 			0,		/* Cloaked Minutes */
775 			-1,		/* Cloaked Hours */
776 			-1,		/* Health Damage */
777 			-1,		/* Armour Damage */
778 			-1,		/* Average Speed */
779 			-1,		/* Field Charge Used */
780 			-1,		/* Head Shot Percentage */
781 			{		/* Padding */
782 				0,0,0,0,0,0,0,0,0,0,
783 				0,0,0,0,0,0,0,0,0,0,
784 				0,0,0,0,0,0,0,0,0,0,
785 				0,0,0,0,0,0,0,0,0,0,
786 			},
787 		},
788 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
789 	},
790 	{
791 		{	/* Jockey / Easy */
792 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
793 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
794 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
795 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
796 			-1,		/* Shots Fired */
797 			-1,		/* Accuracy */
798 			-1,		/* Spotted */
799 			0,		/* Total Seconds (unsigned!) */
800 			0,		/* Total Minutes (unsigned!) */
801 			-1,		/* Total Hours */
802 			0,		/* Cloaked Seconds */
803 			0,		/* Cloaked Minutes */
804 			-1,		/* Cloaked Hours */
805 			-1,		/* Health Damage */
806 			-1,		/* Armour Damage */
807 			-1,		/* Average Speed */
808 			-1,		/* Field Charge Used */
809 			-1,		/* Head Shot Percentage */
810 			{		/* Padding */
811 				0,0,0,0,0,0,0,0,0,0,
812 				0,0,0,0,0,0,0,0,0,0,
813 				0,0,0,0,0,0,0,0,0,0,
814 				0,0,0,0,0,0,0,0,0,0,
815 			},
816 		},
817 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
818 	},
819 	{
820 		{	/* Hive / Easy */
821 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
822 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
823 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
824 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
825 			-1,		/* Shots Fired */
826 			-1,		/* Accuracy */
827 			-1,		/* Spotted */
828 			0,		/* Total Seconds (unsigned!) */
829 			0,		/* Total Minutes (unsigned!) */
830 			-1,		/* Total Hours */
831 			0,		/* Cloaked Seconds */
832 			0,		/* Cloaked Minutes */
833 			-1,		/* Cloaked Hours */
834 			-1,		/* Health Damage */
835 			-1,		/* Armour Damage */
836 			-1,		/* Average Speed */
837 			-1,		/* Field Charge Used */
838 			-1,		/* Head Shot Percentage */
839 			{		/* Padding */
840 				0,0,0,0,0,0,0,0,0,0,
841 				0,0,0,0,0,0,0,0,0,0,
842 				0,0,0,0,0,0,0,0,0,0,
843 				0,0,0,0,0,0,0,0,0,0,
844 			},
845 		},
846 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
847 	},
848 	{
849 		{	/* Invasion_A / Easy */
850 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
851 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
852 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
853 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
854 			-1,		/* Shots Fired */
855 			-1,		/* Accuracy */
856 			-1,		/* Spotted */
857 			0,		/* Total Seconds (unsigned!) */
858 			0,		/* Total Minutes (unsigned!) */
859 			-1,		/* Total Hours */
860 			0,		/* Cloaked Seconds */
861 			0,		/* Cloaked Minutes */
862 			-1,		/* Cloaked Hours */
863 			-1,		/* Health Damage */
864 			-1,		/* Armour Damage */
865 			-1,		/* Average Speed */
866 			-1,		/* Field Charge Used */
867 			-1,		/* Head Shot Percentage */
868 			{		/* Padding */
869 				0,0,0,0,0,0,0,0,0,0,
870 				0,0,0,0,0,0,0,0,0,0,
871 				0,0,0,0,0,0,0,0,0,0,
872 				0,0,0,0,0,0,0,0,0,0,
873 			},
874 		},
875 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
876 	},
877 	{
878 		{	/* Derelict_A / Easy */
879 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
880 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
881 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
882 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
883 			-1,		/* Shots Fired */
884 			-1,		/* Accuracy */
885 			-1,		/* Spotted */
886 			0,		/* Total Seconds (unsigned!) */
887 			0,		/* Total Minutes (unsigned!) */
888 			-1,		/* Total Hours */
889 			0,		/* Cloaked Seconds */
890 			0,		/* Cloaked Minutes */
891 			-1,		/* Cloaked Hours */
892 			-1,		/* Health Damage */
893 			-1,		/* Armour Damage */
894 			-1,		/* Average Speed */
895 			-1,		/* Field Charge Used */
896 			-1,		/* Head Shot Percentage */
897 			{		/* Padding */
898 				0,0,0,0,0,0,0,0,0,0,
899 				0,0,0,0,0,0,0,0,0,0,
900 				0,0,0,0,0,0,0,0,0,0,
901 				0,0,0,0,0,0,0,0,0,0,
902 			},
903 		},
904 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
905 	},
906 	{
907 		{	/* Tyrago_A / Easy */
908 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
909 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
910 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
911 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
912 			-1,		/* Shots Fired */
913 			-1,		/* Accuracy */
914 			-1,		/* Spotted */
915 			0,		/* Total Seconds (unsigned!) */
916 			0,		/* Total Minutes (unsigned!) */
917 			-1,		/* Total Hours */
918 			0,		/* Cloaked Seconds */
919 			0,		/* Cloaked Minutes */
920 			-1,		/* Cloaked Hours */
921 			-1,		/* Health Damage */
922 			-1,		/* Armour Damage */
923 			-1,		/* Average Speed */
924 			-1,		/* Field Charge Used */
925 			-1,		/* Head Shot Percentage */
926 			{		/* Padding */
927 				0,0,0,0,0,0,0,0,0,0,
928 				0,0,0,0,0,0,0,0,0,0,
929 				0,0,0,0,0,0,0,0,0,0,
930 				0,0,0,0,0,0,0,0,0,0,
931 			},
932 		},
933 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
934 	},
935 	{
936 		{	/* Fury161_A / Easy */
937 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
938 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
939 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
940 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
941 			-1,		/* Shots Fired */
942 			-1,		/* Accuracy */
943 			-1,		/* Spotted */
944 			0,		/* Total Seconds (unsigned!) */
945 			0,		/* Total Minutes (unsigned!) */
946 			-1,		/* Total Hours */
947 			0,		/* Cloaked Seconds */
948 			0,		/* Cloaked Minutes */
949 			-1,		/* Cloaked Hours */
950 			-1,		/* Health Damage */
951 			-1,		/* Armour Damage */
952 			-1,		/* Average Speed */
953 			-1,		/* Field Charge Used */
954 			-1,		/* Head Shot Percentage */
955 			{		/* Padding */
956 				0,0,0,0,0,0,0,0,0,0,
957 				0,0,0,0,0,0,0,0,0,0,
958 				0,0,0,0,0,0,0,0,0,0,
959 				0,0,0,0,0,0,0,0,0,0,
960 			},
961 		},
962 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
963 	},
964 	{
965 		{	/* Caverns_A / Easy */
966 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
967 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
968 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
969 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
970 			-1,		/* Shots Fired */
971 			-1,		/* Accuracy */
972 			-1,		/* Spotted */
973 			0,		/* Total Seconds (unsigned!) */
974 			0,		/* Total Minutes (unsigned!) */
975 			-1,		/* Total Hours */
976 			0,		/* Cloaked Seconds */
977 			0,		/* Cloaked Minutes */
978 			-1,		/* Cloaked Hours */
979 			-1,		/* Health Damage */
980 			-1,		/* Armour Damage */
981 			-1,		/* Average Speed */
982 			-1,		/* Field Charge Used */
983 			-1,		/* Head Shot Percentage */
984 			{		/* Padding */
985 				0,0,0,0,0,0,0,0,0,0,
986 				0,0,0,0,0,0,0,0,0,0,
987 				0,0,0,0,0,0,0,0,0,0,
988 				0,0,0,0,0,0,0,0,0,0,
989 			},
990 		},
991 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
992 	},
993 	{
994 		{	/* Invasion_P / Easy */
995 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
996 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
997 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
998 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
999 			-1,		/* Shots Fired */
1000 			-1,		/* Accuracy */
1001 			-1,		/* Spotted */
1002 			0,		/* Total Seconds (unsigned!) */
1003 			0,		/* Total Minutes (unsigned!) */
1004 			-1,		/* Total Hours */
1005 			0,		/* Cloaked Seconds */
1006 			0,		/* Cloaked Minutes */
1007 			-1,		/* Cloaked Hours */
1008 			-1,		/* Health Damage */
1009 			-1,		/* Armour Damage */
1010 			-1,		/* Average Speed */
1011 			-1,		/* Field Charge Used */
1012 			-1,		/* Head Shot Percentage */
1013 			{		/* Padding */
1014 				0,0,0,0,0,0,0,0,0,0,
1015 				0,0,0,0,0,0,0,0,0,0,
1016 				0,0,0,0,0,0,0,0,0,0,
1017 				0,0,0,0,0,0,0,0,0,0,
1018 			},
1019 		},
1020 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1021 	},
1022 	{
1023 		{	/* Tyrago_P / Easy */
1024 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1025 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1026 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1027 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1028 			-1,		/* Shots Fired */
1029 			-1,		/* Accuracy */
1030 			-1,		/* Spotted */
1031 			0,		/* Total Seconds (unsigned!) */
1032 			0,		/* Total Minutes (unsigned!) */
1033 			-1,		/* Total Hours */
1034 			0,		/* Cloaked Seconds */
1035 			0,		/* Cloaked Minutes */
1036 			-1,		/* Cloaked Hours */
1037 			-1,		/* Health Damage */
1038 			-1,		/* Armour Damage */
1039 			-1,		/* Average Speed */
1040 			-1,		/* Field Charge Used */
1041 			-1,		/* Head Shot Percentage */
1042 			{		/* Padding */
1043 				0,0,0,0,0,0,0,0,0,0,
1044 				0,0,0,0,0,0,0,0,0,0,
1045 				0,0,0,0,0,0,0,0,0,0,
1046 				0,0,0,0,0,0,0,0,0,0,
1047 			},
1048 		},
1049 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1050 	},
1051 	{
1052 		{	/* Temple_P / Easy */
1053 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1054 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1055 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1056 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1057 			-1,		/* Shots Fired */
1058 			-1,		/* Accuracy */
1059 			-1,		/* Spotted */
1060 			0,		/* Total Seconds (unsigned!) */
1061 			0,		/* Total Minutes (unsigned!) */
1062 			-1,		/* Total Hours */
1063 			0,		/* Cloaked Seconds */
1064 			0,		/* Cloaked Minutes */
1065 			-1,		/* Cloaked Hours */
1066 			-1,		/* Health Damage */
1067 			-1,		/* Armour Damage */
1068 			-1,		/* Average Speed */
1069 			-1,		/* Field Charge Used */
1070 			-1,		/* Head Shot Percentage */
1071 			{		/* Padding */
1072 				0,0,0,0,0,0,0,0,0,0,
1073 				0,0,0,0,0,0,0,0,0,0,
1074 				0,0,0,0,0,0,0,0,0,0,
1075 				0,0,0,0,0,0,0,0,0,0,
1076 			},
1077 		},
1078 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1079 	},
1080 	{
1081 		{	/* Escape_P / Easy */
1082 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1083 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1084 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1085 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1086 			-1,		/* Shots Fired */
1087 			-1,		/* Accuracy */
1088 			-1,		/* Spotted */
1089 			0,		/* Total Seconds (unsigned!) */
1090 			0,		/* Total Minutes (unsigned!) */
1091 			-1,		/* Total Hours */
1092 			0,		/* Cloaked Seconds */
1093 			0,		/* Cloaked Minutes */
1094 			-1,		/* Cloaked Hours */
1095 			-1,		/* Health Damage */
1096 			-1,		/* Armour Damage */
1097 			-1,		/* Average Speed */
1098 			-1,		/* Field Charge Used */
1099 			-1,		/* Head Shot Percentage */
1100 			{		/* Padding */
1101 				0,0,0,0,0,0,0,0,0,0,
1102 				0,0,0,0,0,0,0,0,0,0,
1103 				0,0,0,0,0,0,0,0,0,0,
1104 				0,0,0,0,0,0,0,0,0,0,
1105 			},
1106 		},
1107 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1108 	},
1109 	{
1110 		{	/* Earthbound_P / Easy */
1111 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1112 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1113 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1114 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1115 			-1,		/* Shots Fired */
1116 			-1,		/* Accuracy */
1117 			-1,		/* Spotted */
1118 			0,		/* Total Seconds (unsigned!) */
1119 			0,		/* Total Minutes (unsigned!) */
1120 			-1,		/* Total Hours */
1121 			0,		/* Cloaked Seconds */
1122 			0,		/* Cloaked Minutes */
1123 			-1,		/* Cloaked Hours */
1124 			-1,		/* Health Damage */
1125 			-1,		/* Armour Damage */
1126 			-1,		/* Average Speed */
1127 			-1,		/* Field Charge Used */
1128 			-1,		/* Head Shot Percentage */
1129 			{		/* Padding */
1130 				0,0,0,0,0,0,0,0,0,0,
1131 				0,0,0,0,0,0,0,0,0,0,
1132 				0,0,0,0,0,0,0,0,0,0,
1133 				0,0,0,0,0,0,0,0,0,0,
1134 			},
1135 		},
1136 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1137 	},
1138 	{
1139 		{	/* Waterfall_M / Easy */
1140 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1141 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1142 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1143 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1144 			-1,		/* Shots Fired */
1145 			-1,		/* Accuracy */
1146 			-1,		/* Spotted */
1147 			0,		/* Total Seconds (unsigned!) */
1148 			0,		/* Total Minutes (unsigned!) */
1149 			-1,		/* Total Hours */
1150 			0,		/* Cloaked Seconds */
1151 			0,		/* Cloaked Minutes */
1152 			-1,		/* Cloaked Hours */
1153 			-1,		/* Health Damage */
1154 			-1,		/* Armour Damage */
1155 			-1,		/* Average Speed */
1156 			-1,		/* Field Charge Used */
1157 			-1,		/* Head Shot Percentage */
1158 			{		/* Padding */
1159 				0,0,0,0,0,0,0,0,0,0,
1160 				0,0,0,0,0,0,0,0,0,0,
1161 				0,0,0,0,0,0,0,0,0,0,
1162 				0,0,0,0,0,0,0,0,0,0,
1163 			},
1164 		},
1165 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1166 	},
1167 	{
1168 		{	/* Vaults_M / Easy */
1169 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1170 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1171 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1172 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1173 			-1,		/* Shots Fired */
1174 			-1,		/* Accuracy */
1175 			-1,		/* Spotted */
1176 			0,		/* Total Seconds (unsigned!) */
1177 			0,		/* Total Minutes (unsigned!) */
1178 			-1,		/* Total Hours */
1179 			0,		/* Cloaked Seconds */
1180 			0,		/* Cloaked Minutes */
1181 			-1,		/* Cloaked Hours */
1182 			-1,		/* Health Damage */
1183 			-1,		/* Armour Damage */
1184 			-1,		/* Average Speed */
1185 			-1,		/* Field Charge Used */
1186 			-1,		/* Head Shot Percentage */
1187 			{		/* Padding */
1188 				0,0,0,0,0,0,0,0,0,0,
1189 				0,0,0,0,0,0,0,0,0,0,
1190 				0,0,0,0,0,0,0,0,0,0,
1191 				0,0,0,0,0,0,0,0,0,0,
1192 			},
1193 		},
1194 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1195 	},
1196 	{
1197 		{	/* Feraco_M / Easy */
1198 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1199 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1200 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1201 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1202 			-1,		/* Shots Fired */
1203 			-1,		/* Accuracy */
1204 			-1,		/* Spotted */
1205 			0,		/* Total Seconds (unsigned!) */
1206 			0,		/* Total Minutes (unsigned!) */
1207 			-1,		/* Total Hours */
1208 			0,		/* Cloaked Seconds */
1209 			0,		/* Cloaked Minutes */
1210 			-1,		/* Cloaked Hours */
1211 			-1,		/* Health Damage */
1212 			-1,		/* Armour Damage */
1213 			-1,		/* Average Speed */
1214 			-1,		/* Field Charge Used */
1215 			-1,		/* Head Shot Percentage */
1216 			{		/* Padding */
1217 				0,0,0,0,0,0,0,0,0,0,
1218 				0,0,0,0,0,0,0,0,0,0,
1219 				0,0,0,0,0,0,0,0,0,0,
1220 				0,0,0,0,0,0,0,0,0,0,
1221 			},
1222 		},
1223 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1224 	},
1225 	{
1226 		{	/* Temple_M / Easy */
1227 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1228 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1229 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1230 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1231 			-1,		/* Shots Fired */
1232 			-1,		/* Accuracy */
1233 			-1,		/* Spotted */
1234 			0,		/* Total Seconds (unsigned!) */
1235 			0,		/* Total Minutes (unsigned!) */
1236 			-1,		/* Total Hours */
1237 			0,		/* Cloaked Seconds */
1238 			0,		/* Cloaked Minutes */
1239 			-1,		/* Cloaked Hours */
1240 			-1,		/* Health Damage */
1241 			-1,		/* Armour Damage */
1242 			-1,		/* Average Speed */
1243 			-1,		/* Field Charge Used */
1244 			-1,		/* Head Shot Percentage */
1245 			{		/* Padding */
1246 				0,0,0,0,0,0,0,0,0,0,
1247 				0,0,0,0,0,0,0,0,0,0,
1248 				0,0,0,0,0,0,0,0,0,0,
1249 				0,0,0,0,0,0,0,0,0,0,
1250 			},
1251 		},
1252 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1253 	},
1254 	{
1255 		{	/* Gateway_M / Easy */
1256 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1257 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1258 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1259 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1260 			-1,		/* Shots Fired */
1261 			-1,		/* Accuracy */
1262 			-1,		/* Spotted */
1263 			0,		/* Total Seconds (unsigned!) */
1264 			0,		/* Total Minutes (unsigned!) */
1265 			-1,		/* Total Hours */
1266 			0,		/* Cloaked Seconds */
1267 			0,		/* Cloaked Minutes */
1268 			-1,		/* Cloaked Hours */
1269 			-1,		/* Health Damage */
1270 			-1,		/* Armour Damage */
1271 			-1,		/* Average Speed */
1272 			-1,		/* Field Charge Used */
1273 			-1,		/* Head Shot Percentage */
1274 			{		/* Padding */
1275 				0,0,0,0,0,0,0,0,0,0,
1276 				0,0,0,0,0,0,0,0,0,0,
1277 				0,0,0,0,0,0,0,0,0,0,
1278 				0,0,0,0,0,0,0,0,0,0,
1279 			},
1280 		},
1281 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1282 	},
1283 	{
1284 		{	/* Kens_Coop / Easy */
1285 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1286 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1287 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1288 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1289 			-1,		/* Shots Fired */
1290 			-1,		/* Accuracy */
1291 			-1,		/* Spotted */
1292 			0,		/* Total Seconds (unsigned!) */
1293 			0,		/* Total Minutes (unsigned!) */
1294 			-1,		/* Total Hours */
1295 			0,		/* Cloaked Seconds */
1296 			0,		/* Cloaked Minutes */
1297 			-1,		/* Cloaked Hours */
1298 			-1,		/* Health Damage */
1299 			-1,		/* Armour Damage */
1300 			-1,		/* Average Speed */
1301 			-1,		/* Field Charge Used */
1302 			-1,		/* Head Shot Percentage */
1303 			{		/* Padding */
1304 				0,0,0,0,0,0,0,0,0,0,
1305 				0,0,0,0,0,0,0,0,0,0,
1306 				0,0,0,0,0,0,0,0,0,0,
1307 				0,0,0,0,0,0,0,0,0,0,
1308 			},
1309 		},
1310 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1311 	},
1312 	{
1313 		{	/* Hive_Coop / Easy */
1314 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1315 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1316 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1317 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1318 			-1,		/* Shots Fired */
1319 			-1,		/* Accuracy */
1320 			-1,		/* Spotted */
1321 			0,		/* Total Seconds (unsigned!) */
1322 			0,		/* Total Minutes (unsigned!) */
1323 			-1,		/* Total Hours */
1324 			0,		/* Cloaked Seconds */
1325 			0,		/* Cloaked Minutes */
1326 			-1,		/* Cloaked Hours */
1327 			-1,		/* Health Damage */
1328 			-1,		/* Armour Damage */
1329 			-1,		/* Average Speed */
1330 			-1,		/* Field Charge Used */
1331 			-1,		/* Head Shot Percentage */
1332 			{		/* Padding */
1333 				0,0,0,0,0,0,0,0,0,0,
1334 				0,0,0,0,0,0,0,0,0,0,
1335 				0,0,0,0,0,0,0,0,0,0,
1336 				0,0,0,0,0,0,0,0,0,0,
1337 			},
1338 		},
1339 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1340 	},
1341 	{
1342 		{	/* Trapped_Coop / Easy */
1343 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1344 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1345 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1346 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1347 			-1,		/* Shots Fired */
1348 			-1,		/* Accuracy */
1349 			-1,		/* Spotted */
1350 			0,		/* Total Seconds (unsigned!) */
1351 			0,		/* Total Minutes (unsigned!) */
1352 			-1,		/* Total Hours */
1353 			0,		/* Cloaked Seconds */
1354 			0,		/* Cloaked Minutes */
1355 			-1,		/* Cloaked Hours */
1356 			-1,		/* Health Damage */
1357 			-1,		/* Armour Damage */
1358 			-1,		/* Average Speed */
1359 			-1,		/* Field Charge Used */
1360 			-1,		/* Head Shot Percentage */
1361 			{		/* Padding */
1362 				0,0,0,0,0,0,0,0,0,0,
1363 				0,0,0,0,0,0,0,0,0,0,
1364 				0,0,0,0,0,0,0,0,0,0,
1365 				0,0,0,0,0,0,0,0,0,0,
1366 			},
1367 		},
1368 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1369 	},
1370 	{
1371 		{	/* Als_DM_Coop / Easy */
1372 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1373 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1374 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1375 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1376 			-1,		/* Shots Fired */
1377 			-1,		/* Accuracy */
1378 			-1,		/* Spotted */
1379 			0,		/* Total Seconds (unsigned!) */
1380 			0,		/* Total Minutes (unsigned!) */
1381 			-1,		/* Total Hours */
1382 			0,		/* Cloaked Seconds */
1383 			0,		/* Cloaked Minutes */
1384 			-1,		/* Cloaked Hours */
1385 			-1,		/* Health Damage */
1386 			-1,		/* Armour Damage */
1387 			-1,		/* Average Speed */
1388 			-1,		/* Field Charge Used */
1389 			-1,		/* Head Shot Percentage */
1390 			{		/* Padding */
1391 				0,0,0,0,0,0,0,0,0,0,
1392 				0,0,0,0,0,0,0,0,0,0,
1393 				0,0,0,0,0,0,0,0,0,0,
1394 				0,0,0,0,0,0,0,0,0,0,
1395 			},
1396 		},
1397 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1398 	},
1399 	{
1400 		{	/* E3DemoSP / Easy */
1401 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1402 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1403 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1404 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1405 			-1,		/* Shots Fired */
1406 			-1,		/* Accuracy */
1407 			-1,		/* Spotted */
1408 			0,		/* Total Seconds (unsigned!) */
1409 			0,		/* Total Minutes (unsigned!) */
1410 			-1,		/* Total Hours */
1411 			0,		/* Cloaked Seconds */
1412 			0,		/* Cloaked Minutes */
1413 			-1,		/* Cloaked Hours */
1414 			-1,		/* Health Damage */
1415 			-1,		/* Armour Damage */
1416 			-1,		/* Average Speed */
1417 			-1,		/* Field Charge Used */
1418 			-1,		/* Head Shot Percentage */
1419 			{		/* Padding */
1420 				0,0,0,0,0,0,0,0,0,0,
1421 				0,0,0,0,0,0,0,0,0,0,
1422 				0,0,0,0,0,0,0,0,0,0,
1423 				0,0,0,0,0,0,0,0,0,0,
1424 			},
1425 		},
1426 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1427 	},
1428 },
1429 
1430 {
1431 	{
1432 		{	/* Derelict / Medium */
1433 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1434 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1435 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1436 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1437 			-1,		/* Shots Fired */
1438 			-1,		/* Accuracy */
1439 			-1,		/* Spotted */
1440 			0,		/* Total Seconds (unsigned!) */
1441 			0,		/* Total Minutes (unsigned!) */
1442 			-1,		/* Total Hours */
1443 			0,		/* Cloaked Seconds */
1444 			0,		/* Cloaked Minutes */
1445 			-1,		/* Cloaked Hours */
1446 			-1,		/* Health Damage */
1447 			-1,		/* Armour Damage */
1448 			-1,		/* Average Speed */
1449 			-1,		/* Field Charge Used */
1450 			80,		/* Head Shot Percentage */
1451 			{		/* Padding */
1452 				0,0,0,0,0,0,0,0,0,0,
1453 				0,0,0,0,0,0,0,0,0,0,
1454 				0,0,0,0,0,0,0,0,0,0,
1455 				0,0,0,0,0,0,0,0,0,0,
1456 			},
1457 		},
1458 		CHEATMODE_JOHNWOO,	/* Cheat to activate */
1459 	},
1460 	{
1461 		{	/* Colony / Medium */
1462 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1463 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1464 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1465 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1466 			-1,		/* Shots Fired */
1467 			40,		/* Accuracy */
1468 			-1,		/* Spotted */
1469 			0,		/* Total Seconds (unsigned!) */
1470 			0,		/* Total Minutes (unsigned!) */
1471 			-1,		/* Total Hours */
1472 			0,		/* Cloaked Seconds */
1473 			0,		/* Cloaked Minutes */
1474 			-1,		/* Cloaked Hours */
1475 			-1,		/* Health Damage */
1476 			-1,		/* Armour Damage */
1477 			-1,		/* Average Speed */
1478 			-1,		/* Field Charge Used */
1479 			-1,		/* Head Shot Percentage */
1480 			{		/* Padding */
1481 				0,0,0,0,0,0,0,0,0,0,
1482 				0,0,0,0,0,0,0,0,0,0,
1483 				0,0,0,0,0,0,0,0,0,0,
1484 				0,0,0,0,0,0,0,0,0,0,
1485 			},
1486 		},
1487 		CHEATMODE_GRENADE,	/* Cheat to activate */
1488 	},
1489 	{
1490 		{	/* Invasion / Medium */
1491 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1492 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1493 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1494 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1495 			-1,		/* Shots Fired */
1496 			-1,		/* Accuracy */
1497 			-1,		/* Spotted */
1498 			0,		/* Total Seconds (unsigned!) */
1499 			4,		/* Total Minutes (unsigned!) */
1500 			0,		/* Total Hours */
1501 			0,		/* Cloaked Seconds */
1502 			0,		/* Cloaked Minutes */
1503 			-1,		/* Cloaked Hours */
1504 			-1,		/* Health Damage */
1505 			-1,		/* Armour Damage */
1506 			-1,		/* Average Speed */
1507 			-1,		/* Field Charge Used */
1508 			-1,		/* Head Shot Percentage */
1509 			{		/* Padding */
1510 				0,0,0,0,0,0,0,0,0,0,
1511 				0,0,0,0,0,0,0,0,0,0,
1512 				0,0,0,0,0,0,0,0,0,0,
1513 				0,0,0,0,0,0,0,0,0,0,
1514 			},
1515 		},
1516 		CHEATMODE_WARPSPEED,	/* Cheat to activate */
1517 	},
1518 	{
1519 		{	/* Orbital / Medium */
1520 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1521 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1522 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1523 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1524 			20,		/* Shots Fired */
1525 			-1,		/* Accuracy */
1526 			-1,		/* Spotted */
1527 			0,		/* Total Seconds (unsigned!) */
1528 			0,		/* Total Minutes (unsigned!) */
1529 			-1,		/* Total Hours */
1530 			0,		/* Cloaked Seconds */
1531 			0,		/* Cloaked Minutes */
1532 			-1,		/* Cloaked Hours */
1533 			-1,		/* Health Damage */
1534 			-1,		/* Armour Damage */
1535 			-1,		/* Average Speed */
1536 			-1,		/* Field Charge Used */
1537 			-1,		/* Head Shot Percentage */
1538 			{		/* Padding */
1539 				0,0,0,0,0,0,0,0,0,0,
1540 				0,0,0,0,0,0,0,0,0,0,
1541 				0,0,0,0,0,0,0,0,0,0,
1542 				0,0,0,0,0,0,0,0,0,0,
1543 			},
1544 		},
1545 		CHEATMODE_LANDOFTHEGIANTS,	/* Cheat to activate */
1546 	},
1547 	{
1548 		{	/* Tyrago / Medium */
1549 			{-1,32,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1550 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1551 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1552 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1553 			-1,		/* Shots Fired */
1554 			-1,		/* Accuracy */
1555 			-1,		/* Spotted */
1556 			0,		/* Total Seconds (unsigned!) */
1557 			0,		/* Total Minutes (unsigned!) */
1558 			-1,		/* Total Hours */
1559 			0,		/* Cloaked Seconds */
1560 			0,		/* Cloaked Minutes */
1561 			-1,		/* Cloaked Hours */
1562 			-1,		/* Health Damage */
1563 			-1,		/* Armour Damage */
1564 			-1,		/* Average Speed */
1565 			-1,		/* Field Charge Used */
1566 			-1,		/* Head Shot Percentage */
1567 			{		/* Padding */
1568 				0,0,0,0,0,0,0,0,0,0,
1569 				0,0,0,0,0,0,0,0,0,0,
1570 				0,0,0,0,0,0,0,0,0,0,
1571 				0,0,0,0,0,0,0,0,0,0,
1572 			},
1573 		},
1574 		CHEATMODE_SLUGTRAIL,	/* Cheat to activate */
1575 	},
1576 	{
1577 		{	/* Hangar / Medium */
1578 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1579 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1580 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1581 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1582 			-1,		/* Shots Fired */
1583 			-1,		/* Accuracy */
1584 			-1,		/* Spotted */
1585 			0,		/* Total Seconds (unsigned!) */
1586 			0,		/* Total Minutes (unsigned!) */
1587 			-1,		/* Total Hours */
1588 			0,		/* Cloaked Seconds */
1589 			0,		/* Cloaked Minutes */
1590 			-1,		/* Cloaked Hours */
1591 			-1,		/* Health Damage */
1592 			-1,		/* Armour Damage */
1593 			-1,		/* Average Speed */
1594 			-1,		/* Field Charge Used */
1595 			-1,		/* Head Shot Percentage */
1596 			{		/* Padding */
1597 				0,0,0,0,0,0,0,0,0,0,
1598 				0,0,0,0,0,0,0,0,0,0,
1599 				0,0,0,0,0,0,0,0,0,0,
1600 				0,0,0,0,0,0,0,0,0,0,
1601 			},
1602 		},
1603 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1604 	},
1605 	{
1606 		{	/* Waterfall / Medium */
1607 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1608 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1609 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1610 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1611 			-1,		/* Shots Fired */
1612 			80,		/* Accuracy */
1613 			-1,		/* Spotted */
1614 			0,		/* Total Seconds (unsigned!) */
1615 			0,		/* Total Minutes (unsigned!) */
1616 			-1,		/* Total Hours */
1617 			0,		/* Cloaked Seconds */
1618 			0,		/* Cloaked Minutes */
1619 			-1,		/* Cloaked Hours */
1620 			-1,		/* Health Damage */
1621 			-1,		/* Armour Damage */
1622 			-1,		/* Average Speed */
1623 			-1,		/* Field Charge Used */
1624 			-1,		/* Head Shot Percentage */
1625 			{		/* Padding */
1626 				0,0,0,0,0,0,0,0,0,0,
1627 				0,0,0,0,0,0,0,0,0,0,
1628 				0,0,0,0,0,0,0,0,0,0,
1629 				0,0,0,0,0,0,0,0,0,0,
1630 			},
1631 		},
1632 		CHEATMODE_PIGSTICKING,	/* Cheat to activate */
1633 	},
1634 	{
1635 		{	/* Area52 / Medium */
1636 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1637 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1638 			{-1,-1,-1,-1,-1,-1,-1,25,-1,-1,},	/* Trophies / Live Head Bites */
1639 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1640 			-1,		/* Shots Fired */
1641 			-1,		/* Accuracy */
1642 			-1,		/* Spotted */
1643 			0,		/* Total Seconds (unsigned!) */
1644 			0,		/* Total Minutes (unsigned!) */
1645 			-1,		/* Total Hours */
1646 			0,		/* Cloaked Seconds */
1647 			0,		/* Cloaked Minutes */
1648 			-1,		/* Cloaked Hours */
1649 			-1,		/* Health Damage */
1650 			-1,		/* Armour Damage */
1651 			-1,		/* Average Speed */
1652 			-1,		/* Field Charge Used */
1653 			-1,		/* Head Shot Percentage */
1654 			{		/* Padding */
1655 				0,0,0,0,0,0,0,0,0,0,
1656 				0,0,0,0,0,0,0,0,0,0,
1657 				0,0,0,0,0,0,0,0,0,0,
1658 				0,0,0,0,0,0,0,0,0,0,
1659 			},
1660 		},
1661 		CHEATMODE_SUPERGORE,	/* Cheat to activate */
1662 	},
1663 	{
1664 		{	/* Vaults / Medium */
1665 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1666 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1667 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1668 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1669 			-1,		/* Shots Fired */
1670 			-1,		/* Accuracy */
1671 			-1,		/* Spotted */
1672 			0,		/* Total Seconds (unsigned!) */
1673 			0,		/* Total Minutes (unsigned!) */
1674 			-1,		/* Total Hours */
1675 			0,		/* Cloaked Seconds */
1676 			0,		/* Cloaked Minutes */
1677 			-1,		/* Cloaked Hours */
1678 			100,	/* Health Damage */
1679 			-1,		/* Armour Damage */
1680 			-1,		/* Average Speed */
1681 			-1,		/* Field Charge Used */
1682 			-1,		/* Head Shot Percentage */
1683 			{		/* Padding */
1684 				0,0,0,0,0,0,0,0,0,0,
1685 				0,0,0,0,0,0,0,0,0,0,
1686 				0,0,0,0,0,0,0,0,0,0,
1687 				0,0,0,0,0,0,0,0,0,0,
1688 			},
1689 		},
1690 		CHEATMODE_DISCOINFERNO,	/* Cheat to activate */
1691 	},
1692 	{
1693 		{	/* Fury161 / Medium */
1694 			{-1,40,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1695 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1696 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1697 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1698 			-1,		/* Shots Fired */
1699 			-1,		/* Accuracy */
1700 			-1,		/* Spotted */
1701 			0,		/* Total Seconds (unsigned!) */
1702 			0,		/* Total Minutes (unsigned!) */
1703 			-1,		/* Total Hours */
1704 			0,		/* Cloaked Seconds */
1705 			0,		/* Cloaked Minutes */
1706 			-1,		/* Cloaked Hours */
1707 			-1,		/* Health Damage */
1708 			-1,		/* Armour Damage */
1709 			-1,		/* Average Speed */
1710 			-1,		/* Field Charge Used */
1711 			-1,		/* Head Shot Percentage */
1712 			{		/* Padding */
1713 				0,0,0,0,0,0,0,0,0,0,
1714 				0,0,0,0,0,0,0,0,0,0,
1715 				0,0,0,0,0,0,0,0,0,0,
1716 				0,0,0,0,0,0,0,0,0,0,
1717 			},
1718 		},
1719 		CHEATMODE_BALLSOFFIRE,	/* Cheat to activate */
1720 	},
1721 	{
1722 		{	/* Caverns / Medium */
1723 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1724 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1725 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1726 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1727 			-1,		/* Shots Fired */
1728 			-1,		/* Accuracy */
1729 			15,		/* Spotted */
1730 			0,		/* Total Seconds (unsigned!) */
1731 			0,		/* Total Minutes (unsigned!) */
1732 			-1,		/* Total Hours */
1733 			0,		/* Cloaked Seconds */
1734 			0,		/* Cloaked Minutes */
1735 			-1,		/* Cloaked Hours */
1736 			-1,		/* Health Damage */
1737 			-1,		/* Armour Damage */
1738 			-1,		/* Average Speed */
1739 			-1,		/* Field Charge Used */
1740 			-1,		/* Head Shot Percentage */
1741 			{		/* Padding */
1742 				0,0,0,0,0,0,0,0,0,0,
1743 				0,0,0,0,0,0,0,0,0,0,
1744 				0,0,0,0,0,0,0,0,0,0,
1745 				0,0,0,0,0,0,0,0,0,0,
1746 			},
1747 		},
1748 		CHEATMODE_RAINBOWBLOOD,	/* Cheat to activate */
1749 	},
1750 	{
1751 		{	/* Battle / Medium */
1752 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1753 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1754 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1755 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1756 			-1,		/* Shots Fired */
1757 			-1,		/* Accuracy */
1758 			-1,		/* Spotted */
1759 			0,		/* Total Seconds (unsigned!) */
1760 			0,		/* Total Minutes (unsigned!) */
1761 			-1,		/* Total Hours */
1762 			0,		/* Cloaked Seconds */
1763 			0,		/* Cloaked Minutes */
1764 			-1,		/* Cloaked Hours */
1765 			-1,		/* Health Damage */
1766 			-1,		/* Armour Damage */
1767 			-1,		/* Average Speed */
1768 			-1,		/* Field Charge Used */
1769 			-1,		/* Head Shot Percentage */
1770 			{		/* Padding */
1771 				0,0,0,0,0,0,0,0,0,0,
1772 				0,0,0,0,0,0,0,0,0,0,
1773 				0,0,0,0,0,0,0,0,0,0,
1774 				0,0,0,0,0,0,0,0,0,0,
1775 			},
1776 		},
1777 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1778 	},
1779 	{
1780 		{	/* Feraco / Medium */
1781 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1782 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1783 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1784 			{-1,-1,-1,-1,-1,-1,-1,-1,15,-1,},	/* Dead Head Bites */
1785 			-1,		/* Shots Fired */
1786 			-1,		/* Accuracy */
1787 			-1,		/* Spotted */
1788 			0,		/* Total Seconds (unsigned!) */
1789 			0,		/* Total Minutes (unsigned!) */
1790 			-1,		/* Total Hours */
1791 			0,		/* Cloaked Seconds */
1792 			0,		/* Cloaked Minutes */
1793 			-1,		/* Cloaked Hours */
1794 			-1,		/* Health Damage */
1795 			-1,		/* Armour Damage */
1796 			-1,		/* Average Speed */
1797 			-1,		/* Field Charge Used */
1798 			-1,		/* Head Shot Percentage */
1799 			{		/* Padding */
1800 				0,0,0,0,0,0,0,0,0,0,
1801 				0,0,0,0,0,0,0,0,0,0,
1802 				0,0,0,0,0,0,0,0,0,0,
1803 				0,0,0,0,0,0,0,0,0,0,
1804 			},
1805 		},
1806 		CHEATMODE_PIPECLEANER,	/* Cheat to activate */
1807 	},
1808 	{
1809 		{	/* Temple / Medium */
1810 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1811 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1812 			{-1,-1,-1,-1,-1,-1,-1,-1,10,-1,},	/* Trophies / Live Head Bites */
1813 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1814 			-1,		/* Shots Fired */
1815 			-1,		/* Accuracy */
1816 			-1,		/* Spotted */
1817 			0,		/* Total Seconds (unsigned!) */
1818 			0,		/* Total Minutes (unsigned!) */
1819 			-1,		/* Total Hours */
1820 			0,		/* Cloaked Seconds */
1821 			0,		/* Cloaked Minutes */
1822 			-1,		/* Cloaked Hours */
1823 			-1,		/* Health Damage */
1824 			-1,		/* Armour Damage */
1825 			-1,		/* Average Speed */
1826 			-1,		/* Field Charge Used */
1827 			-1,		/* Head Shot Percentage */
1828 			{		/* Padding */
1829 				0,0,0,0,0,0,0,0,0,0,
1830 				0,0,0,0,0,0,0,0,0,0,
1831 				0,0,0,0,0,0,0,0,0,0,
1832 				0,0,0,0,0,0,0,0,0,0,
1833 			},
1834 		},
1835 		CHEATMODE_SNIPERMUNCH,	/* Cheat to activate */
1836 	},
1837 	{
1838 		{	/* Gateway / Medium */
1839 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1840 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1841 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1842 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1843 			-1,		/* Shots Fired */
1844 			-1,		/* Accuracy */
1845 			-1,		/* Spotted */
1846 			(30*ONE_FIXED),	/* Total Seconds (unsigned!) */
1847 			4,		/* Total Minutes (unsigned!) */
1848 			0,		/* Total Hours */
1849 			0,		/* Cloaked Seconds */
1850 			0,		/* Cloaked Minutes */
1851 			-1,		/* Cloaked Hours */
1852 			-1,		/* Health Damage */
1853 			-1,		/* Armour Damage */
1854 			9000,	/* Average Speed */
1855 			-1,		/* Field Charge Used */
1856 			-1,		/* Head Shot Percentage */
1857 			{		/* Padding */
1858 				0,0,0,0,0,0,0,0,0,0,
1859 				0,0,0,0,0,0,0,0,0,0,
1860 				0,0,0,0,0,0,0,0,0,0,
1861 				0,0,0,0,0,0,0,0,0,0,
1862 			},
1863 		},
1864 		CHEATMODE_MOTIONBLUR,	/* Cheat to activate */
1865 	},
1866 	{
1867 		{	/* Escape / Medium */
1868 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1869 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1870 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1871 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1872 			-1,		/* Shots Fired */
1873 			-1,		/* Accuracy */
1874 			-1,		/* Spotted */
1875 			0,		/* Total Seconds (unsigned!) */
1876 			2,		/* Total Minutes (unsigned!) */
1877 			0,		/* Total Hours */
1878 			0,		/* Cloaked Seconds */
1879 			0,		/* Cloaked Minutes */
1880 			-1,		/* Cloaked Hours */
1881 			-1,		/* Health Damage */
1882 			-1,		/* Armour Damage */
1883 			-1,		/* Average Speed */
1884 			-1,		/* Field Charge Used */
1885 			-1,		/* Head Shot Percentage */
1886 			{		/* Padding */
1887 				0,0,0,0,0,0,0,0,0,0,
1888 				0,0,0,0,0,0,0,0,0,0,
1889 				0,0,0,0,0,0,0,0,0,0,
1890 				0,0,0,0,0,0,0,0,0,0,
1891 			},
1892 		},
1893 		CHEATMODE_NAUSEA,	/* Cheat to activate */
1894 	},
1895 	{
1896 		{	/* Earthbound / Medium */
1897 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1898 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1899 			{-1,-1,-1,-1,-1,-1, 1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1900 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1901 			-1,		/* Shots Fired */
1902 			-1,		/* Accuracy */
1903 			-1,		/* Spotted */
1904 			0,		/* Total Seconds (unsigned!) */
1905 			0,		/* Total Minutes (unsigned!) */
1906 			-1,		/* Total Hours */
1907 			0,		/* Cloaked Seconds */
1908 			0,		/* Cloaked Minutes */
1909 			-1,		/* Cloaked Hours */
1910 			-1,		/* Health Damage */
1911 			-1,		/* Armour Damage */
1912 			-1,		/* Average Speed */
1913 			-1,		/* Field Charge Used */
1914 			-1,		/* Head Shot Percentage */
1915 			{		/* Padding */
1916 				0,0,0,0,0,0,0,0,0,0,
1917 				0,0,0,0,0,0,0,0,0,0,
1918 				0,0,0,0,0,0,0,0,0,0,
1919 				0,0,0,0,0,0,0,0,0,0,
1920 			},
1921 		},
1922 		CHEATMODE_MIRROR,	/* Cheat to activate */
1923 	},
1924 	{
1925 		{	/* Sewer / Medium */
1926 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1927 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1928 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1929 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1930 			-1,		/* Shots Fired */
1931 			-1,		/* Accuracy */
1932 			-1,		/* Spotted */
1933 			0,		/* Total Seconds (unsigned!) */
1934 			0,		/* Total Minutes (unsigned!) */
1935 			-1,		/* Total Hours */
1936 			0,		/* Cloaked Seconds */
1937 			0,		/* Cloaked Minutes */
1938 			-1,		/* Cloaked Hours */
1939 			-1,		/* Health Damage */
1940 			-1,		/* Armour Damage */
1941 			-1,		/* Average Speed */
1942 			-1,		/* Field Charge Used */
1943 			-1,		/* Head Shot Percentage */
1944 			{		/* Padding */
1945 				0,0,0,0,0,0,0,0,0,0,
1946 				0,0,0,0,0,0,0,0,0,0,
1947 				0,0,0,0,0,0,0,0,0,0,
1948 				0,0,0,0,0,0,0,0,0,0,
1949 			},
1950 		},
1951 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1952 	},
1953 	{
1954 		{	/* Massacre / Medium */
1955 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1956 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1957 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1958 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1959 			-1,		/* Shots Fired */
1960 			-1,		/* Accuracy */
1961 			-1,		/* Spotted */
1962 			0,		/* Total Seconds (unsigned!) */
1963 			0,		/* Total Minutes (unsigned!) */
1964 			-1,		/* Total Hours */
1965 			0,		/* Cloaked Seconds */
1966 			0,		/* Cloaked Minutes */
1967 			-1,		/* Cloaked Hours */
1968 			-1,		/* Health Damage */
1969 			-1,		/* Armour Damage */
1970 			-1,		/* Average Speed */
1971 			-1,		/* Field Charge Used */
1972 			-1,		/* Head Shot Percentage */
1973 			{		/* Padding */
1974 				0,0,0,0,0,0,0,0,0,0,
1975 				0,0,0,0,0,0,0,0,0,0,
1976 				0,0,0,0,0,0,0,0,0,0,
1977 				0,0,0,0,0,0,0,0,0,0,
1978 			},
1979 		},
1980 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
1981 	},
1982 	{
1983 		{	/* Statue / Medium */
1984 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
1985 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
1986 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
1987 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
1988 			-1,		/* Shots Fired */
1989 			-1,		/* Accuracy */
1990 			-1,		/* Spotted */
1991 			0,		/* Total Seconds (unsigned!) */
1992 			0,		/* Total Minutes (unsigned!) */
1993 			-1,		/* Total Hours */
1994 			0,		/* Cloaked Seconds */
1995 			0,		/* Cloaked Minutes */
1996 			-1,		/* Cloaked Hours */
1997 			-1,		/* Health Damage */
1998 			-1,		/* Armour Damage */
1999 			-1,		/* Average Speed */
2000 			-1,		/* Field Charge Used */
2001 			-1,		/* Head Shot Percentage */
2002 			{		/* Padding */
2003 				0,0,0,0,0,0,0,0,0,0,
2004 				0,0,0,0,0,0,0,0,0,0,
2005 				0,0,0,0,0,0,0,0,0,0,
2006 				0,0,0,0,0,0,0,0,0,0,
2007 			},
2008 		},
2009 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2010 	},
2011 	{
2012 		{	/* Jockey / Medium */
2013 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2014 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2015 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2016 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2017 			-1,		/* Shots Fired */
2018 			-1,		/* Accuracy */
2019 			-1,		/* Spotted */
2020 			0,		/* Total Seconds (unsigned!) */
2021 			0,		/* Total Minutes (unsigned!) */
2022 			-1,		/* Total Hours */
2023 			0,		/* Cloaked Seconds */
2024 			0,		/* Cloaked Minutes */
2025 			-1,		/* Cloaked Hours */
2026 			-1,		/* Health Damage */
2027 			-1,		/* Armour Damage */
2028 			-1,		/* Average Speed */
2029 			-1,		/* Field Charge Used */
2030 			-1,		/* Head Shot Percentage */
2031 			{		/* Padding */
2032 				0,0,0,0,0,0,0,0,0,0,
2033 				0,0,0,0,0,0,0,0,0,0,
2034 				0,0,0,0,0,0,0,0,0,0,
2035 				0,0,0,0,0,0,0,0,0,0,
2036 			},
2037 		},
2038 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2039 	},
2040 	{
2041 		{	/* Hive / Medium */
2042 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2043 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2044 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2045 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2046 			-1,		/* Shots Fired */
2047 			-1,		/* Accuracy */
2048 			-1,		/* Spotted */
2049 			0,		/* Total Seconds (unsigned!) */
2050 			0,		/* Total Minutes (unsigned!) */
2051 			-1,		/* Total Hours */
2052 			0,		/* Cloaked Seconds */
2053 			0,		/* Cloaked Minutes */
2054 			-1,		/* Cloaked Hours */
2055 			-1,		/* Health Damage */
2056 			-1,		/* Armour Damage */
2057 			-1,		/* Average Speed */
2058 			-1,		/* Field Charge Used */
2059 			-1,		/* Head Shot Percentage */
2060 			{		/* Padding */
2061 				0,0,0,0,0,0,0,0,0,0,
2062 				0,0,0,0,0,0,0,0,0,0,
2063 				0,0,0,0,0,0,0,0,0,0,
2064 				0,0,0,0,0,0,0,0,0,0,
2065 			},
2066 		},
2067 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2068 	},
2069 	{
2070 		{	/* Invasion_A / Medium */
2071 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2072 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2073 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2074 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2075 			-1,		/* Shots Fired */
2076 			-1,		/* Accuracy */
2077 			-1,		/* Spotted */
2078 			0,		/* Total Seconds (unsigned!) */
2079 			0,		/* Total Minutes (unsigned!) */
2080 			-1,		/* Total Hours */
2081 			0,		/* Cloaked Seconds */
2082 			0,		/* Cloaked Minutes */
2083 			-1,		/* Cloaked Hours */
2084 			-1,		/* Health Damage */
2085 			-1,		/* Armour Damage */
2086 			-1,		/* Average Speed */
2087 			-1,		/* Field Charge Used */
2088 			-1,		/* Head Shot Percentage */
2089 			{		/* Padding */
2090 				0,0,0,0,0,0,0,0,0,0,
2091 				0,0,0,0,0,0,0,0,0,0,
2092 				0,0,0,0,0,0,0,0,0,0,
2093 				0,0,0,0,0,0,0,0,0,0,
2094 			},
2095 		},
2096 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2097 	},
2098 	{
2099 		{	/* Derelict_A / Medium */
2100 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2101 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2102 			{-1,-1,-1,-1,-1,-1,-1,20,-1,-1,},	/* Trophies / Live Head Bites */
2103 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2104 			-1,		/* Shots Fired */
2105 			-1,		/* Accuracy */
2106 			-1,		/* Spotted */
2107 			0,		/* Total Seconds (unsigned!) */
2108 			0,		/* Total Minutes (unsigned!) */
2109 			-1,		/* Total Hours */
2110 			0,		/* Cloaked Seconds */
2111 			0,		/* Cloaked Minutes */
2112 			-1,		/* Cloaked Hours */
2113 			-1,		/* Health Damage */
2114 			-1,		/* Armour Damage */
2115 			-1,		/* Average Speed */
2116 			-1,		/* Field Charge Used */
2117 			-1,		/* Head Shot Percentage */
2118 			{		/* Padding */
2119 				0,0,0,0,0,0,0,0,0,0,
2120 				0,0,0,0,0,0,0,0,0,0,
2121 				0,0,0,0,0,0,0,0,0,0,
2122 				0,0,0,0,0,0,0,0,0,0,
2123 			},
2124 		},
2125 		CHEATMODE_IMPOSSIBLEMISSION,	/* Cheat to activate */
2126 	},
2127 	{
2128 		{	/* Tyrago_A / Medium */
2129 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2130 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2131 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2132 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2133 			-1,		/* Shots Fired */
2134 			-1,		/* Accuracy */
2135 			-1,		/* Spotted */
2136 			0,		/* Total Seconds (unsigned!) */
2137 			0,		/* Total Minutes (unsigned!) */
2138 			-1,		/* Total Hours */
2139 			0,		/* Cloaked Seconds */
2140 			0,		/* Cloaked Minutes */
2141 			-1,		/* Cloaked Hours */
2142 			-1,		/* Health Damage */
2143 			-1,		/* Armour Damage */
2144 			-1,		/* Average Speed */
2145 			-1,		/* Field Charge Used */
2146 			-1,		/* Head Shot Percentage */
2147 			{		/* Padding */
2148 				0,0,0,0,0,0,0,0,0,0,
2149 				0,0,0,0,0,0,0,0,0,0,
2150 				0,0,0,0,0,0,0,0,0,0,
2151 				0,0,0,0,0,0,0,0,0,0,
2152 			},
2153 		},
2154 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2155 	},
2156 	{
2157 		{	/* Fury161_A / Medium */
2158 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2159 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2160 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2161 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2162 			-1,		/* Shots Fired */
2163 			-1,		/* Accuracy */
2164 			-1,		/* Spotted */
2165 			0,		/* Total Seconds (unsigned!) */
2166 			0,		/* Total Minutes (unsigned!) */
2167 			-1,		/* Total Hours */
2168 			0,		/* Cloaked Seconds */
2169 			0,		/* Cloaked Minutes */
2170 			-1,		/* Cloaked Hours */
2171 			-1,		/* Health Damage */
2172 			-1,		/* Armour Damage */
2173 			-1,		/* Average Speed */
2174 			-1,		/* Field Charge Used */
2175 			-1,		/* Head Shot Percentage */
2176 			{		/* Padding */
2177 				0,0,0,0,0,0,0,0,0,0,
2178 				0,0,0,0,0,0,0,0,0,0,
2179 				0,0,0,0,0,0,0,0,0,0,
2180 				0,0,0,0,0,0,0,0,0,0,
2181 			},
2182 		},
2183 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2184 	},
2185 	{
2186 		{	/* Caverns_A / Medium */
2187 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2188 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2189 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2190 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2191 			-1,		/* Shots Fired */
2192 			-1,		/* Accuracy */
2193 			-1,		/* Spotted */
2194 			0,		/* Total Seconds (unsigned!) */
2195 			0,		/* Total Minutes (unsigned!) */
2196 			-1,		/* Total Hours */
2197 			0,		/* Cloaked Seconds */
2198 			0,		/* Cloaked Minutes */
2199 			-1,		/* Cloaked Hours */
2200 			-1,		/* Health Damage */
2201 			-1,		/* Armour Damage */
2202 			-1,		/* Average Speed */
2203 			-1,		/* Field Charge Used */
2204 			-1,		/* Head Shot Percentage */
2205 			{		/* Padding */
2206 				0,0,0,0,0,0,0,0,0,0,
2207 				0,0,0,0,0,0,0,0,0,0,
2208 				0,0,0,0,0,0,0,0,0,0,
2209 				0,0,0,0,0,0,0,0,0,0,
2210 			},
2211 		},
2212 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2213 	},
2214 	{
2215 		{	/* Invasion_P / Medium */
2216 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2217 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2218 			{-1,15,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2219 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2220 			-1,		/* Shots Fired */
2221 			-1,		/* Accuracy */
2222 			-1,		/* Spotted */
2223 			0,		/* Total Seconds (unsigned!) */
2224 			0,		/* Total Minutes (unsigned!) */
2225 			-1,		/* Total Hours */
2226 			0,		/* Cloaked Seconds */
2227 			0,		/* Cloaked Minutes */
2228 			-1,		/* Cloaked Hours */
2229 			-1,		/* Health Damage */
2230 			-1,		/* Armour Damage */
2231 			-1,		/* Average Speed */
2232 			-1,		/* Field Charge Used */
2233 			-1,		/* Head Shot Percentage */
2234 			{		/* Padding */
2235 				0,0,0,0,0,0,0,0,0,0,
2236 				0,0,0,0,0,0,0,0,0,0,
2237 				0,0,0,0,0,0,0,0,0,0,
2238 				0,0,0,0,0,0,0,0,0,0,
2239 			},
2240 		},
2241 		CHEATMODE_TICKERTAPE,	/* Cheat to activate */
2242 	},
2243 	{
2244 		{	/* Tyrago_P / Medium */
2245 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2246 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2247 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2248 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2249 			-1,		/* Shots Fired */
2250 			-1,		/* Accuracy */
2251 			-1,		/* Spotted */
2252 			0,		/* Total Seconds (unsigned!) */
2253 			0,		/* Total Minutes (unsigned!) */
2254 			-1,		/* Total Hours */
2255 			0,		/* Cloaked Seconds */
2256 			0,		/* Cloaked Minutes */
2257 			-1,		/* Cloaked Hours */
2258 			-1,		/* Health Damage */
2259 			-1,		/* Armour Damage */
2260 			-1,		/* Average Speed */
2261 			-1,		/* Field Charge Used */
2262 			-1,		/* Head Shot Percentage */
2263 			{		/* Padding */
2264 				0,0,0,0,0,0,0,0,0,0,
2265 				0,0,0,0,0,0,0,0,0,0,
2266 				0,0,0,0,0,0,0,0,0,0,
2267 				0,0,0,0,0,0,0,0,0,0,
2268 			},
2269 		},
2270 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2271 	},
2272 	{
2273 		{	/* Temple_P / Medium */
2274 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2275 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2276 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2277 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2278 			-1,		/* Shots Fired */
2279 			-1,		/* Accuracy */
2280 			-1,		/* Spotted */
2281 			0,		/* Total Seconds (unsigned!) */
2282 			0,		/* Total Minutes (unsigned!) */
2283 			-1,		/* Total Hours */
2284 			0,		/* Cloaked Seconds */
2285 			0,		/* Cloaked Minutes */
2286 			-1,		/* Cloaked Hours */
2287 			-1,		/* Health Damage */
2288 			-1,		/* Armour Damage */
2289 			-1,		/* Average Speed */
2290 			-1,		/* Field Charge Used */
2291 			-1,		/* Head Shot Percentage */
2292 			{		/* Padding */
2293 				0,0,0,0,0,0,0,0,0,0,
2294 				0,0,0,0,0,0,0,0,0,0,
2295 				0,0,0,0,0,0,0,0,0,0,
2296 				0,0,0,0,0,0,0,0,0,0,
2297 			},
2298 		},
2299 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2300 	},
2301 	{
2302 		{	/* Escape_P / Medium */
2303 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2304 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2305 			{-1,-1,-1,-1,-1,-1,-1,-1,10,-1,},	/* Trophies / Live Head Bites */
2306 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2307 			-1,		/* Shots Fired */
2308 			-1,		/* Accuracy */
2309 			-1,		/* Spotted */
2310 			0,		/* Total Seconds (unsigned!) */
2311 			0,		/* Total Minutes (unsigned!) */
2312 			-1,		/* Total Hours */
2313 			0,		/* Cloaked Seconds */
2314 			0,		/* Cloaked Minutes */
2315 			-1,		/* Cloaked Hours */
2316 			-1,		/* Health Damage */
2317 			-1,		/* Armour Damage */
2318 			-1,		/* Average Speed */
2319 			-1,		/* Field Charge Used */
2320 			-1,		/* Head Shot Percentage */
2321 			{		/* Padding */
2322 				0,0,0,0,0,0,0,0,0,0,
2323 				0,0,0,0,0,0,0,0,0,0,
2324 				0,0,0,0,0,0,0,0,0,0,
2325 				0,0,0,0,0,0,0,0,0,0,
2326 			},
2327 		},
2328 		CHEATMODE_TRIPTASTIC,	/* Cheat to activate */
2329 	},
2330 	{
2331 		{	/* Earthbound_P / Medium */
2332 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2333 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2334 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2335 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2336 			-1,		/* Shots Fired */
2337 			-1,		/* Accuracy */
2338 			-1,		/* Spotted */
2339 			0,		/* Total Seconds (unsigned!) */
2340 			0,		/* Total Minutes (unsigned!) */
2341 			-1,		/* Total Hours */
2342 			0,		/* Cloaked Seconds */
2343 			0,		/* Cloaked Minutes */
2344 			-1,		/* Cloaked Hours */
2345 			-1,		/* Health Damage */
2346 			-1,		/* Armour Damage */
2347 			-1,		/* Average Speed */
2348 			-1,		/* Field Charge Used */
2349 			-1,		/* Head Shot Percentage */
2350 			{		/* Padding */
2351 				0,0,0,0,0,0,0,0,0,0,
2352 				0,0,0,0,0,0,0,0,0,0,
2353 				0,0,0,0,0,0,0,0,0,0,
2354 				0,0,0,0,0,0,0,0,0,0,
2355 			},
2356 		},
2357 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2358 	},
2359 	{
2360 		{	/* Waterfall_M / Medium */
2361 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2362 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2363 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2364 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2365 			-1,		/* Shots Fired */
2366 			-1,		/* Accuracy */
2367 			-1,		/* Spotted */
2368 			0,		/* Total Seconds (unsigned!) */
2369 			0,		/* Total Minutes (unsigned!) */
2370 			-1,		/* Total Hours */
2371 			0,		/* Cloaked Seconds */
2372 			0,		/* Cloaked Minutes */
2373 			-1,		/* Cloaked Hours */
2374 			-1,		/* Health Damage */
2375 			-1,		/* Armour Damage */
2376 			-1,		/* Average Speed */
2377 			-1,		/* Field Charge Used */
2378 			-1,		/* Head Shot Percentage */
2379 			{		/* Padding */
2380 				0,0,0,0,0,0,0,0,0,0,
2381 				0,0,0,0,0,0,0,0,0,0,
2382 				0,0,0,0,0,0,0,0,0,0,
2383 				0,0,0,0,0,0,0,0,0,0,
2384 			},
2385 		},
2386 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2387 	},
2388 	{
2389 		{	/* Vaults_M / Medium */
2390 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2391 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2392 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2393 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2394 			-1,		/* Shots Fired */
2395 			-1,		/* Accuracy */
2396 			-1,		/* Spotted */
2397 			0,		/* Total Seconds (unsigned!) */
2398 			0,		/* Total Minutes (unsigned!) */
2399 			-1,		/* Total Hours */
2400 			0,		/* Cloaked Seconds */
2401 			0,		/* Cloaked Minutes */
2402 			-1,		/* Cloaked Hours */
2403 			60,		/* Health Damage */
2404 			-1,		/* Armour Damage */
2405 			-1,		/* Average Speed */
2406 			-1,		/* Field Charge Used */
2407 			-1,		/* Head Shot Percentage */
2408 			{		/* Padding */
2409 				0,0,0,0,0,0,0,0,0,0,
2410 				0,0,0,0,0,0,0,0,0,0,
2411 				0,0,0,0,0,0,0,0,0,0,
2412 				0,0,0,0,0,0,0,0,0,0,
2413 			},
2414 		},
2415 		CHEATMODE_UNDERWATER,	/* Cheat to activate */
2416 	},
2417 	{
2418 		{	/* Feraco_M / Medium */
2419 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2420 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2421 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2422 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2423 			-1,		/* Shots Fired */
2424 			-1,		/* Accuracy */
2425 			-1,		/* Spotted */
2426 			0,		/* Total Seconds (unsigned!) */
2427 			0,		/* Total Minutes (unsigned!) */
2428 			-1,		/* Total Hours */
2429 			0,		/* Cloaked Seconds */
2430 			0,		/* Cloaked Minutes */
2431 			-1,		/* Cloaked Hours */
2432 			-1,		/* Health Damage */
2433 			-1,		/* Armour Damage */
2434 			-1,		/* Average Speed */
2435 			-1,		/* Field Charge Used */
2436 			-1,		/* Head Shot Percentage */
2437 			{		/* Padding */
2438 				0,0,0,0,0,0,0,0,0,0,
2439 				0,0,0,0,0,0,0,0,0,0,
2440 				0,0,0,0,0,0,0,0,0,0,
2441 				0,0,0,0,0,0,0,0,0,0,
2442 			},
2443 		},
2444 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2445 	},
2446 	{
2447 		{	/* Temple_M / Medium */
2448 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2449 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2450 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2451 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2452 			-1,		/* Shots Fired */
2453 			-1,		/* Accuracy */
2454 			-1,		/* Spotted */
2455 			0,		/* Total Seconds (unsigned!) */
2456 			0,		/* Total Minutes (unsigned!) */
2457 			-1,		/* Total Hours */
2458 			0,		/* Cloaked Seconds */
2459 			0,		/* Cloaked Minutes */
2460 			-1,		/* Cloaked Hours */
2461 			100,	/* Health Damage */
2462 			-1,		/* Armour Damage */
2463 			-1,		/* Average Speed */
2464 			-1,		/* Field Charge Used */
2465 			-1,		/* Head Shot Percentage */
2466 			{		/* Padding */
2467 				0,0,0,0,0,0,0,0,0,0,
2468 				0,0,0,0,0,0,0,0,0,0,
2469 				0,0,0,0,0,0,0,0,0,0,
2470 				0,0,0,0,0,0,0,0,0,0,
2471 			},
2472 		},
2473 		CHEATMODE_FREEFALL,	/* Cheat to activate */
2474 	},
2475 	{
2476 		{	/* Gateway_M / Medium */
2477 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2478 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2479 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2480 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2481 			-1,		/* Shots Fired */
2482 			-1,		/* Accuracy */
2483 			-1,		/* Spotted */
2484 			0,		/* Total Seconds (unsigned!) */
2485 			0,		/* Total Minutes (unsigned!) */
2486 			-1,		/* Total Hours */
2487 			0,		/* Cloaked Seconds */
2488 			0,		/* Cloaked Minutes */
2489 			-1,		/* Cloaked Hours */
2490 			-1,		/* Health Damage */
2491 			-1,		/* Armour Damage */
2492 			-1,		/* Average Speed */
2493 			-1,		/* Field Charge Used */
2494 			-1,		/* Head Shot Percentage */
2495 			{		/* Padding */
2496 				0,0,0,0,0,0,0,0,0,0,
2497 				0,0,0,0,0,0,0,0,0,0,
2498 				0,0,0,0,0,0,0,0,0,0,
2499 				0,0,0,0,0,0,0,0,0,0,
2500 			},
2501 		},
2502 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2503 	},
2504 	{
2505 		{	/* Kens_Coop / Medium */
2506 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2507 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2508 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2509 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2510 			-1,		/* Shots Fired */
2511 			-1,		/* Accuracy */
2512 			-1,		/* Spotted */
2513 			0,		/* Total Seconds (unsigned!) */
2514 			0,		/* Total Minutes (unsigned!) */
2515 			-1,		/* Total Hours */
2516 			0,		/* Cloaked Seconds */
2517 			0,		/* Cloaked Minutes */
2518 			-1,		/* Cloaked Hours */
2519 			-1,		/* Health Damage */
2520 			-1,		/* Armour Damage */
2521 			-1,		/* Average Speed */
2522 			-1,		/* Field Charge Used */
2523 			-1,		/* Head Shot Percentage */
2524 			{		/* Padding */
2525 				0,0,0,0,0,0,0,0,0,0,
2526 				0,0,0,0,0,0,0,0,0,0,
2527 				0,0,0,0,0,0,0,0,0,0,
2528 				0,0,0,0,0,0,0,0,0,0,
2529 			},
2530 		},
2531 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2532 	},
2533 	{
2534 		{	/* Hive_Coop / Medium */
2535 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2536 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2537 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2538 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2539 			-1,		/* Shots Fired */
2540 			-1,		/* Accuracy */
2541 			-1,		/* Spotted */
2542 			0,		/* Total Seconds (unsigned!) */
2543 			0,		/* Total Minutes (unsigned!) */
2544 			-1,		/* Total Hours */
2545 			0,		/* Cloaked Seconds */
2546 			0,		/* Cloaked Minutes */
2547 			-1,		/* Cloaked Hours */
2548 			-1,		/* Health Damage */
2549 			-1,		/* Armour Damage */
2550 			-1,		/* Average Speed */
2551 			-1,		/* Field Charge Used */
2552 			-1,		/* Head Shot Percentage */
2553 			{		/* Padding */
2554 				0,0,0,0,0,0,0,0,0,0,
2555 				0,0,0,0,0,0,0,0,0,0,
2556 				0,0,0,0,0,0,0,0,0,0,
2557 				0,0,0,0,0,0,0,0,0,0,
2558 			},
2559 		},
2560 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2561 	},
2562 	{
2563 		{	/* Trapped_Coop / Medium */
2564 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2565 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2566 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2567 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2568 			-1,		/* Shots Fired */
2569 			-1,		/* Accuracy */
2570 			-1,		/* Spotted */
2571 			0,		/* Total Seconds (unsigned!) */
2572 			0,		/* Total Minutes (unsigned!) */
2573 			-1,		/* Total Hours */
2574 			0,		/* Cloaked Seconds */
2575 			0,		/* Cloaked Minutes */
2576 			-1,		/* Cloaked Hours */
2577 			-1,		/* Health Damage */
2578 			-1,		/* Armour Damage */
2579 			-1,		/* Average Speed */
2580 			-1,		/* Field Charge Used */
2581 			-1,		/* Head Shot Percentage */
2582 			{		/* Padding */
2583 				0,0,0,0,0,0,0,0,0,0,
2584 				0,0,0,0,0,0,0,0,0,0,
2585 				0,0,0,0,0,0,0,0,0,0,
2586 				0,0,0,0,0,0,0,0,0,0,
2587 			},
2588 		},
2589 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2590 	},
2591 	{
2592 		{	/* Als_DM_Coop / Medium */
2593 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2594 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2595 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2596 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2597 			-1,		/* Shots Fired */
2598 			-1,		/* Accuracy */
2599 			-1,		/* Spotted */
2600 			0,		/* Total Seconds (unsigned!) */
2601 			0,		/* Total Minutes (unsigned!) */
2602 			-1,		/* Total Hours */
2603 			0,		/* Cloaked Seconds */
2604 			0,		/* Cloaked Minutes */
2605 			-1,		/* Cloaked Hours */
2606 			-1,		/* Health Damage */
2607 			-1,		/* Armour Damage */
2608 			-1,		/* Average Speed */
2609 			-1,		/* Field Charge Used */
2610 			-1,		/* Head Shot Percentage */
2611 			{		/* Padding */
2612 				0,0,0,0,0,0,0,0,0,0,
2613 				0,0,0,0,0,0,0,0,0,0,
2614 				0,0,0,0,0,0,0,0,0,0,
2615 				0,0,0,0,0,0,0,0,0,0,
2616 			},
2617 		},
2618 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2619 	},
2620 	{
2621 		{	/* E3DemoSP / Medium */
2622 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2623 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2624 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2625 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2626 			-1,		/* Shots Fired */
2627 			-1,		/* Accuracy */
2628 			-1,		/* Spotted */
2629 			0,		/* Total Seconds (unsigned!) */
2630 			0,		/* Total Minutes (unsigned!) */
2631 			-1,		/* Total Hours */
2632 			0,		/* Cloaked Seconds */
2633 			0,		/* Cloaked Minutes */
2634 			-1,		/* Cloaked Hours */
2635 			-1,		/* Health Damage */
2636 			-1,		/* Armour Damage */
2637 			-1,		/* Average Speed */
2638 			-1,		/* Field Charge Used */
2639 			-1,		/* Head Shot Percentage */
2640 			{		/* Padding */
2641 				0,0,0,0,0,0,0,0,0,0,
2642 				0,0,0,0,0,0,0,0,0,0,
2643 				0,0,0,0,0,0,0,0,0,0,
2644 				0,0,0,0,0,0,0,0,0,0,
2645 			},
2646 		},
2647 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2648 	},
2649 },
2650 
2651 {
2652 	{
2653 		{	/* Derelict / Hard */
2654 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2655 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2656 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2657 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2658 			-1,		/* Shots Fired */
2659 			-1,		/* Accuracy */
2660 			-1,		/* Spotted */
2661 			0,		/* Total Seconds (unsigned!) */
2662 			0,		/* Total Minutes (unsigned!) */
2663 			-1,		/* Total Hours */
2664 			0,		/* Cloaked Seconds */
2665 			0,		/* Cloaked Minutes */
2666 			-1,		/* Cloaked Hours */
2667 			-1,		/* Health Damage */
2668 			-1,		/* Armour Damage */
2669 			-1,		/* Average Speed */
2670 			-1,		/* Field Charge Used */
2671 			80,		/* Head Shot Percentage */
2672 			{		/* Padding */
2673 				0,0,0,0,0,0,0,0,0,0,
2674 				0,0,0,0,0,0,0,0,0,0,
2675 				0,0,0,0,0,0,0,0,0,0,
2676 				0,0,0,0,0,0,0,0,0,0,
2677 			},
2678 		},
2679 		CHEATMODE_JOHNWOO,	/* Cheat to activate */
2680 	},
2681 	{
2682 		{	/* Colony / Hard */
2683 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2684 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2685 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2686 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2687 			-1,		/* Shots Fired */
2688 			40,		/* Accuracy */
2689 			-1,		/* Spotted */
2690 			0,		/* Total Seconds (unsigned!) */
2691 			0,		/* Total Minutes (unsigned!) */
2692 			-1,		/* Total Hours */
2693 			0,		/* Cloaked Seconds */
2694 			0,		/* Cloaked Minutes */
2695 			-1,		/* Cloaked Hours */
2696 			-1,		/* Health Damage */
2697 			-1,		/* Armour Damage */
2698 			-1,		/* Average Speed */
2699 			-1,		/* Field Charge Used */
2700 			-1,		/* Head Shot Percentage */
2701 			{		/* Padding */
2702 				0,0,0,0,0,0,0,0,0,0,
2703 				0,0,0,0,0,0,0,0,0,0,
2704 				0,0,0,0,0,0,0,0,0,0,
2705 				0,0,0,0,0,0,0,0,0,0,
2706 			},
2707 		},
2708 		CHEATMODE_GRENADE,	/* Cheat to activate */
2709 	},
2710 	{
2711 		{	/* Invasion / Hard */
2712 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2713 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2714 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2715 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2716 			-1,		/* Shots Fired */
2717 			-1,		/* Accuracy */
2718 			-1,		/* Spotted */
2719 			0,		/* Total Seconds (unsigned!) */
2720 			4,		/* Total Minutes (unsigned!) */
2721 			0,		/* Total Hours */
2722 			0,		/* Cloaked Seconds */
2723 			0,		/* Cloaked Minutes */
2724 			-1,		/* Cloaked Hours */
2725 			-1,		/* Health Damage */
2726 			-1,		/* Armour Damage */
2727 			-1,		/* Average Speed */
2728 			-1,		/* Field Charge Used */
2729 			-1,		/* Head Shot Percentage */
2730 			{		/* Padding */
2731 				0,0,0,0,0,0,0,0,0,0,
2732 				0,0,0,0,0,0,0,0,0,0,
2733 				0,0,0,0,0,0,0,0,0,0,
2734 				0,0,0,0,0,0,0,0,0,0,
2735 			},
2736 		},
2737 		CHEATMODE_WARPSPEED,	/* Cheat to activate */
2738 	},
2739 	{
2740 		{	/* Orbital / Hard */
2741 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2742 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2743 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2744 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2745 			20,		/* Shots Fired */
2746 			-1,		/* Accuracy */
2747 			-1,		/* Spotted */
2748 			0,		/* Total Seconds (unsigned!) */
2749 			0,		/* Total Minutes (unsigned!) */
2750 			-1,		/* Total Hours */
2751 			0,		/* Cloaked Seconds */
2752 			0,		/* Cloaked Minutes */
2753 			-1,		/* Cloaked Hours */
2754 			-1,		/* Health Damage */
2755 			-1,		/* Armour Damage */
2756 			-1,		/* Average Speed */
2757 			-1,		/* Field Charge Used */
2758 			-1,		/* Head Shot Percentage */
2759 			{		/* Padding */
2760 				0,0,0,0,0,0,0,0,0,0,
2761 				0,0,0,0,0,0,0,0,0,0,
2762 				0,0,0,0,0,0,0,0,0,0,
2763 				0,0,0,0,0,0,0,0,0,0,
2764 			},
2765 		},
2766 		CHEATMODE_LANDOFTHEGIANTS,	/* Cheat to activate */
2767 	},
2768 	{
2769 		{	/* Tyrago / Hard */
2770 			{-1,32,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2771 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2772 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2773 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2774 			-1,		/* Shots Fired */
2775 			-1,		/* Accuracy */
2776 			-1,		/* Spotted */
2777 			0,		/* Total Seconds (unsigned!) */
2778 			0,		/* Total Minutes (unsigned!) */
2779 			-1,		/* Total Hours */
2780 			0,		/* Cloaked Seconds */
2781 			0,		/* Cloaked Minutes */
2782 			-1,		/* Cloaked Hours */
2783 			-1,		/* Health Damage */
2784 			-1,		/* Armour Damage */
2785 			-1,		/* Average Speed */
2786 			-1,		/* Field Charge Used */
2787 			-1,		/* Head Shot Percentage */
2788 			{		/* Padding */
2789 				0,0,0,0,0,0,0,0,0,0,
2790 				0,0,0,0,0,0,0,0,0,0,
2791 				0,0,0,0,0,0,0,0,0,0,
2792 				0,0,0,0,0,0,0,0,0,0,
2793 			},
2794 		},
2795 		CHEATMODE_SLUGTRAIL,	/* Cheat to activate */
2796 	},
2797 	{
2798 		{	/* Hangar / Hard */
2799 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2800 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2801 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2802 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2803 			-1,		/* Shots Fired */
2804 			-1,		/* Accuracy */
2805 			-1,		/* Spotted */
2806 			0,		/* Total Seconds (unsigned!) */
2807 			0,		/* Total Minutes (unsigned!) */
2808 			-1,		/* Total Hours */
2809 			0,		/* Cloaked Seconds */
2810 			0,		/* Cloaked Minutes */
2811 			-1,		/* Cloaked Hours */
2812 			-1,		/* Health Damage */
2813 			-1,		/* Armour Damage */
2814 			-1,		/* Average Speed */
2815 			-1,		/* Field Charge Used */
2816 			-1,		/* Head Shot Percentage */
2817 			{		/* Padding */
2818 				0,0,0,0,0,0,0,0,0,0,
2819 				0,0,0,0,0,0,0,0,0,0,
2820 				0,0,0,0,0,0,0,0,0,0,
2821 				0,0,0,0,0,0,0,0,0,0,
2822 			},
2823 		},
2824 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2825 	},
2826 	{
2827 		{	/* Waterfall / Hard */
2828 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2829 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2830 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2831 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2832 			-1,		/* Shots Fired */
2833 			80,		/* Accuracy */
2834 			-1,		/* Spotted */
2835 			0,		/* Total Seconds (unsigned!) */
2836 			0,		/* Total Minutes (unsigned!) */
2837 			-1,		/* Total Hours */
2838 			0,		/* Cloaked Seconds */
2839 			0,		/* Cloaked Minutes */
2840 			-1,		/* Cloaked Hours */
2841 			-1,		/* Health Damage */
2842 			-1,		/* Armour Damage */
2843 			-1,		/* Average Speed */
2844 			-1,		/* Field Charge Used */
2845 			-1,		/* Head Shot Percentage */
2846 			{		/* Padding */
2847 				0,0,0,0,0,0,0,0,0,0,
2848 				0,0,0,0,0,0,0,0,0,0,
2849 				0,0,0,0,0,0,0,0,0,0,
2850 				0,0,0,0,0,0,0,0,0,0,
2851 			},
2852 		},
2853 		CHEATMODE_PIGSTICKING,	/* Cheat to activate */
2854 	},
2855 	{
2856 		{	/* Area52 / Hard */
2857 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2858 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2859 			{-1,-1,-1,-1,-1,-1,-1,25,-1,-1,},	/* Trophies / Live Head Bites */
2860 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2861 			-1,		/* Shots Fired */
2862 			-1,		/* Accuracy */
2863 			-1,		/* Spotted */
2864 			0,		/* Total Seconds (unsigned!) */
2865 			0,		/* Total Minutes (unsigned!) */
2866 			-1,		/* Total Hours */
2867 			0,		/* Cloaked Seconds */
2868 			0,		/* Cloaked Minutes */
2869 			-1,		/* Cloaked Hours */
2870 			-1,		/* Health Damage */
2871 			-1,		/* Armour Damage */
2872 			-1,		/* Average Speed */
2873 			-1,		/* Field Charge Used */
2874 			-1,		/* Head Shot Percentage */
2875 			{		/* Padding */
2876 				0,0,0,0,0,0,0,0,0,0,
2877 				0,0,0,0,0,0,0,0,0,0,
2878 				0,0,0,0,0,0,0,0,0,0,
2879 				0,0,0,0,0,0,0,0,0,0,
2880 			},
2881 		},
2882 		CHEATMODE_SUPERGORE,	/* Cheat to activate */
2883 	},
2884 	{
2885 		{	/* Vaults / Hard */
2886 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2887 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2888 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2889 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2890 			-1,		/* Shots Fired */
2891 			-1,		/* Accuracy */
2892 			-1,		/* Spotted */
2893 			0,		/* Total Seconds (unsigned!) */
2894 			0,		/* Total Minutes (unsigned!) */
2895 			-1,		/* Total Hours */
2896 			0,		/* Cloaked Seconds */
2897 			0,		/* Cloaked Minutes */
2898 			-1,		/* Cloaked Hours */
2899 			100,	/* Health Damage */
2900 			-1,		/* Armour Damage */
2901 			-1,		/* Average Speed */
2902 			-1,		/* Field Charge Used */
2903 			-1,		/* Head Shot Percentage */
2904 			{		/* Padding */
2905 				0,0,0,0,0,0,0,0,0,0,
2906 				0,0,0,0,0,0,0,0,0,0,
2907 				0,0,0,0,0,0,0,0,0,0,
2908 				0,0,0,0,0,0,0,0,0,0,
2909 			},
2910 		},
2911 		CHEATMODE_DISCOINFERNO,	/* Cheat to activate */
2912 	},
2913 	{
2914 		{	/* Fury161 / Hard */
2915 			{-1,40,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2916 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2917 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2918 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2919 			-1,		/* Shots Fired */
2920 			-1,		/* Accuracy */
2921 			-1,		/* Spotted */
2922 			0,		/* Total Seconds (unsigned!) */
2923 			0,		/* Total Minutes (unsigned!) */
2924 			-1,		/* Total Hours */
2925 			0,		/* Cloaked Seconds */
2926 			0,		/* Cloaked Minutes */
2927 			-1,		/* Cloaked Hours */
2928 			-1,		/* Health Damage */
2929 			-1,		/* Armour Damage */
2930 			-1,		/* Average Speed */
2931 			-1,		/* Field Charge Used */
2932 			-1,		/* Head Shot Percentage */
2933 			{		/* Padding */
2934 				0,0,0,0,0,0,0,0,0,0,
2935 				0,0,0,0,0,0,0,0,0,0,
2936 				0,0,0,0,0,0,0,0,0,0,
2937 				0,0,0,0,0,0,0,0,0,0,
2938 			},
2939 		},
2940 		CHEATMODE_BALLSOFFIRE,	/* Cheat to activate */
2941 	},
2942 	{
2943 		{	/* Caverns / Hard */
2944 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2945 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2946 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2947 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2948 			-1,		/* Shots Fired */
2949 			-1,		/* Accuracy */
2950 			15,		/* Spotted */
2951 			0,		/* Total Seconds (unsigned!) */
2952 			0,		/* Total Minutes (unsigned!) */
2953 			-1,		/* Total Hours */
2954 			0,		/* Cloaked Seconds */
2955 			0,		/* Cloaked Minutes */
2956 			-1,		/* Cloaked Hours */
2957 			-1,		/* Health Damage */
2958 			-1,		/* Armour Damage */
2959 			-1,		/* Average Speed */
2960 			-1,		/* Field Charge Used */
2961 			-1,		/* Head Shot Percentage */
2962 			{		/* Padding */
2963 				0,0,0,0,0,0,0,0,0,0,
2964 				0,0,0,0,0,0,0,0,0,0,
2965 				0,0,0,0,0,0,0,0,0,0,
2966 				0,0,0,0,0,0,0,0,0,0,
2967 			},
2968 		},
2969 		CHEATMODE_RAINBOWBLOOD,	/* Cheat to activate */
2970 	},
2971 	{
2972 		{	/* Battle / Hard */
2973 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
2974 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
2975 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
2976 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
2977 			-1,		/* Shots Fired */
2978 			-1,		/* Accuracy */
2979 			-1,		/* Spotted */
2980 			0,		/* Total Seconds (unsigned!) */
2981 			0,		/* Total Minutes (unsigned!) */
2982 			-1,		/* Total Hours */
2983 			0,		/* Cloaked Seconds */
2984 			0,		/* Cloaked Minutes */
2985 			-1,		/* Cloaked Hours */
2986 			-1,		/* Health Damage */
2987 			-1,		/* Armour Damage */
2988 			-1,		/* Average Speed */
2989 			-1,		/* Field Charge Used */
2990 			-1,		/* Head Shot Percentage */
2991 			{		/* Padding */
2992 				0,0,0,0,0,0,0,0,0,0,
2993 				0,0,0,0,0,0,0,0,0,0,
2994 				0,0,0,0,0,0,0,0,0,0,
2995 				0,0,0,0,0,0,0,0,0,0,
2996 			},
2997 		},
2998 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
2999 	},
3000 	{
3001 		{	/* Feraco / Hard */
3002 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3003 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3004 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3005 			{-1,-1,-1,-1,-1,-1,-1,-1,15,-1,},	/* Dead Head Bites */
3006 			-1,		/* Shots Fired */
3007 			-1,		/* Accuracy */
3008 			-1,		/* Spotted */
3009 			0,		/* Total Seconds (unsigned!) */
3010 			0,		/* Total Minutes (unsigned!) */
3011 			-1,		/* Total Hours */
3012 			0,		/* Cloaked Seconds */
3013 			0,		/* Cloaked Minutes */
3014 			-1,		/* Cloaked Hours */
3015 			-1,		/* Health Damage */
3016 			-1,		/* Armour Damage */
3017 			-1,		/* Average Speed */
3018 			-1,		/* Field Charge Used */
3019 			-1,		/* Head Shot Percentage */
3020 			{		/* Padding */
3021 				0,0,0,0,0,0,0,0,0,0,
3022 				0,0,0,0,0,0,0,0,0,0,
3023 				0,0,0,0,0,0,0,0,0,0,
3024 				0,0,0,0,0,0,0,0,0,0,
3025 			},
3026 		},
3027 		CHEATMODE_PIPECLEANER,	/* Cheat to activate */
3028 	},
3029 	{
3030 		{	/* Temple / Hard */
3031 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3032 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3033 			{-1,-1,-1,-1,-1,-1,-1,-1,10,-1,},	/* Trophies / Live Head Bites */
3034 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3035 			-1,		/* Shots Fired */
3036 			-1,		/* Accuracy */
3037 			-1,		/* Spotted */
3038 			0,		/* Total Seconds (unsigned!) */
3039 			0,		/* Total Minutes (unsigned!) */
3040 			-1,		/* Total Hours */
3041 			0,		/* Cloaked Seconds */
3042 			0,		/* Cloaked Minutes */
3043 			-1,		/* Cloaked Hours */
3044 			-1,		/* Health Damage */
3045 			-1,		/* Armour Damage */
3046 			-1,		/* Average Speed */
3047 			-1,		/* Field Charge Used */
3048 			-1,		/* Head Shot Percentage */
3049 			{		/* Padding */
3050 				0,0,0,0,0,0,0,0,0,0,
3051 				0,0,0,0,0,0,0,0,0,0,
3052 				0,0,0,0,0,0,0,0,0,0,
3053 				0,0,0,0,0,0,0,0,0,0,
3054 			},
3055 		},
3056 		CHEATMODE_SNIPERMUNCH,	/* Cheat to activate */
3057 	},
3058 	{
3059 		{	/* Gateway / Hard */
3060 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3061 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3062 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3063 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3064 			-1,		/* Shots Fired */
3065 			-1,		/* Accuracy */
3066 			-1,		/* Spotted */
3067 			(30*ONE_FIXED),	/* Total Seconds (unsigned!) */
3068 			4,		/* Total Minutes (unsigned!) */
3069 			0,		/* Total Hours */
3070 			0,		/* Cloaked Seconds */
3071 			0,		/* Cloaked Minutes */
3072 			-1,		/* Cloaked Hours */
3073 			-1,		/* Health Damage */
3074 			-1,		/* Armour Damage */
3075 			9000,	/* Average Speed */
3076 			-1,		/* Field Charge Used */
3077 			-1,		/* Head Shot Percentage */
3078 			{		/* Padding */
3079 				0,0,0,0,0,0,0,0,0,0,
3080 				0,0,0,0,0,0,0,0,0,0,
3081 				0,0,0,0,0,0,0,0,0,0,
3082 				0,0,0,0,0,0,0,0,0,0,
3083 			},
3084 		},
3085 		CHEATMODE_MOTIONBLUR,	/* Cheat to activate */
3086 	},
3087 	{
3088 		{	/* Escape / Hard */
3089 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3090 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3091 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3092 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3093 			-1,		/* Shots Fired */
3094 			-1,		/* Accuracy */
3095 			-1,		/* Spotted */
3096 			0,		/* Total Seconds (unsigned!) */
3097 			2,		/* Total Minutes (unsigned!) */
3098 			0,		/* Total Hours */
3099 			0,		/* Cloaked Seconds */
3100 			0,		/* Cloaked Minutes */
3101 			-1,		/* Cloaked Hours */
3102 			-1,		/* Health Damage */
3103 			-1,		/* Armour Damage */
3104 			-1,		/* Average Speed */
3105 			-1,		/* Field Charge Used */
3106 			-1,		/* Head Shot Percentage */
3107 			{		/* Padding */
3108 				0,0,0,0,0,0,0,0,0,0,
3109 				0,0,0,0,0,0,0,0,0,0,
3110 				0,0,0,0,0,0,0,0,0,0,
3111 				0,0,0,0,0,0,0,0,0,0,
3112 			},
3113 		},
3114 		CHEATMODE_NAUSEA,	/* Cheat to activate */
3115 	},
3116 	{
3117 		{	/* Earthbound / Hard */
3118 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3119 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3120 			{-1,-1,-1,-1,-1,-1, 1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3121 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3122 			-1,		/* Shots Fired */
3123 			-1,		/* Accuracy */
3124 			-1,		/* Spotted */
3125 			0,		/* Total Seconds (unsigned!) */
3126 			0,		/* Total Minutes (unsigned!) */
3127 			-1,		/* Total Hours */
3128 			0,		/* Cloaked Seconds */
3129 			0,		/* Cloaked Minutes */
3130 			-1,		/* Cloaked Hours */
3131 			-1,		/* Health Damage */
3132 			-1,		/* Armour Damage */
3133 			-1,		/* Average Speed */
3134 			-1,		/* Field Charge Used */
3135 			-1,		/* Head Shot Percentage */
3136 			{		/* Padding */
3137 				0,0,0,0,0,0,0,0,0,0,
3138 				0,0,0,0,0,0,0,0,0,0,
3139 				0,0,0,0,0,0,0,0,0,0,
3140 				0,0,0,0,0,0,0,0,0,0,
3141 			},
3142 		},
3143 		CHEATMODE_MIRROR,	/* Cheat to activate */
3144 	},
3145 	{
3146 		{	/* Sewer / Hard */
3147 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3148 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3149 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3150 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3151 			-1,		/* Shots Fired */
3152 			-1,		/* Accuracy */
3153 			-1,		/* Spotted */
3154 			0,		/* Total Seconds (unsigned!) */
3155 			0,		/* Total Minutes (unsigned!) */
3156 			-1,		/* Total Hours */
3157 			0,		/* Cloaked Seconds */
3158 			0,		/* Cloaked Minutes */
3159 			-1,		/* Cloaked Hours */
3160 			-1,		/* Health Damage */
3161 			-1,		/* Armour Damage */
3162 			-1,		/* Average Speed */
3163 			-1,		/* Field Charge Used */
3164 			-1,		/* Head Shot Percentage */
3165 			{		/* Padding */
3166 				0,0,0,0,0,0,0,0,0,0,
3167 				0,0,0,0,0,0,0,0,0,0,
3168 				0,0,0,0,0,0,0,0,0,0,
3169 				0,0,0,0,0,0,0,0,0,0,
3170 			},
3171 		},
3172 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3173 	},
3174 	{
3175 		{	/* Massacre / Hard */
3176 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3177 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3178 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3179 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3180 			-1,		/* Shots Fired */
3181 			-1,		/* Accuracy */
3182 			-1,		/* Spotted */
3183 			0,		/* Total Seconds (unsigned!) */
3184 			0,		/* Total Minutes (unsigned!) */
3185 			-1,		/* Total Hours */
3186 			0,		/* Cloaked Seconds */
3187 			0,		/* Cloaked Minutes */
3188 			-1,		/* Cloaked Hours */
3189 			-1,		/* Health Damage */
3190 			-1,		/* Armour Damage */
3191 			-1,		/* Average Speed */
3192 			-1,		/* Field Charge Used */
3193 			-1,		/* Head Shot Percentage */
3194 			{		/* Padding */
3195 				0,0,0,0,0,0,0,0,0,0,
3196 				0,0,0,0,0,0,0,0,0,0,
3197 				0,0,0,0,0,0,0,0,0,0,
3198 				0,0,0,0,0,0,0,0,0,0,
3199 			},
3200 		},
3201 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3202 	},
3203 	{
3204 		{	/* Statue / Hard */
3205 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3206 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3207 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3208 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3209 			-1,		/* Shots Fired */
3210 			-1,		/* Accuracy */
3211 			-1,		/* Spotted */
3212 			0,		/* Total Seconds (unsigned!) */
3213 			0,		/* Total Minutes (unsigned!) */
3214 			-1,		/* Total Hours */
3215 			0,		/* Cloaked Seconds */
3216 			0,		/* Cloaked Minutes */
3217 			-1,		/* Cloaked Hours */
3218 			-1,		/* Health Damage */
3219 			-1,		/* Armour Damage */
3220 			-1,		/* Average Speed */
3221 			-1,		/* Field Charge Used */
3222 			-1,		/* Head Shot Percentage */
3223 			{		/* Padding */
3224 				0,0,0,0,0,0,0,0,0,0,
3225 				0,0,0,0,0,0,0,0,0,0,
3226 				0,0,0,0,0,0,0,0,0,0,
3227 				0,0,0,0,0,0,0,0,0,0,
3228 			},
3229 		},
3230 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3231 	},
3232 	{
3233 		{	/* Jockey / Hard */
3234 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3235 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3236 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3237 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3238 			-1,		/* Shots Fired */
3239 			-1,		/* Accuracy */
3240 			-1,		/* Spotted */
3241 			0,		/* Total Seconds (unsigned!) */
3242 			0,		/* Total Minutes (unsigned!) */
3243 			-1,		/* Total Hours */
3244 			0,		/* Cloaked Seconds */
3245 			0,		/* Cloaked Minutes */
3246 			-1,		/* Cloaked Hours */
3247 			-1,		/* Health Damage */
3248 			-1,		/* Armour Damage */
3249 			-1,		/* Average Speed */
3250 			-1,		/* Field Charge Used */
3251 			-1,		/* Head Shot Percentage */
3252 			{		/* Padding */
3253 				0,0,0,0,0,0,0,0,0,0,
3254 				0,0,0,0,0,0,0,0,0,0,
3255 				0,0,0,0,0,0,0,0,0,0,
3256 				0,0,0,0,0,0,0,0,0,0,
3257 			},
3258 		},
3259 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3260 	},
3261 	{
3262 		{	/* Hive / Hard */
3263 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3264 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3265 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3266 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3267 			-1,		/* Shots Fired */
3268 			-1,		/* Accuracy */
3269 			-1,		/* Spotted */
3270 			0,		/* Total Seconds (unsigned!) */
3271 			0,		/* Total Minutes (unsigned!) */
3272 			-1,		/* Total Hours */
3273 			0,		/* Cloaked Seconds */
3274 			0,		/* Cloaked Minutes */
3275 			-1,		/* Cloaked Hours */
3276 			-1,		/* Health Damage */
3277 			-1,		/* Armour Damage */
3278 			-1,		/* Average Speed */
3279 			-1,		/* Field Charge Used */
3280 			-1,		/* Head Shot Percentage */
3281 			{		/* Padding */
3282 				0,0,0,0,0,0,0,0,0,0,
3283 				0,0,0,0,0,0,0,0,0,0,
3284 				0,0,0,0,0,0,0,0,0,0,
3285 				0,0,0,0,0,0,0,0,0,0,
3286 			},
3287 		},
3288 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3289 	},
3290 	{
3291 		{	/* Invasion_A / Hard */
3292 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3293 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3294 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3295 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3296 			-1,		/* Shots Fired */
3297 			-1,		/* Accuracy */
3298 			-1,		/* Spotted */
3299 			0,		/* Total Seconds (unsigned!) */
3300 			0,		/* Total Minutes (unsigned!) */
3301 			-1,		/* Total Hours */
3302 			0,		/* Cloaked Seconds */
3303 			0,		/* Cloaked Minutes */
3304 			-1,		/* Cloaked Hours */
3305 			-1,		/* Health Damage */
3306 			-1,		/* Armour Damage */
3307 			-1,		/* Average Speed */
3308 			-1,		/* Field Charge Used */
3309 			-1,		/* Head Shot Percentage */
3310 			{		/* Padding */
3311 				0,0,0,0,0,0,0,0,0,0,
3312 				0,0,0,0,0,0,0,0,0,0,
3313 				0,0,0,0,0,0,0,0,0,0,
3314 				0,0,0,0,0,0,0,0,0,0,
3315 			},
3316 		},
3317 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3318 	},
3319 	{
3320 		{	/* Derelict_A / Hard */
3321 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3322 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3323 			{-1,-1,-1,-1,-1,-1,-1,20,-1,-1,},	/* Trophies / Live Head Bites */
3324 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3325 			-1,		/* Shots Fired */
3326 			-1,		/* Accuracy */
3327 			-1,		/* Spotted */
3328 			0,		/* Total Seconds (unsigned!) */
3329 			0,		/* Total Minutes (unsigned!) */
3330 			-1,		/* Total Hours */
3331 			0,		/* Cloaked Seconds */
3332 			0,		/* Cloaked Minutes */
3333 			-1,		/* Cloaked Hours */
3334 			-1,		/* Health Damage */
3335 			-1,		/* Armour Damage */
3336 			-1,		/* Average Speed */
3337 			-1,		/* Field Charge Used */
3338 			-1,		/* Head Shot Percentage */
3339 			{		/* Padding */
3340 				0,0,0,0,0,0,0,0,0,0,
3341 				0,0,0,0,0,0,0,0,0,0,
3342 				0,0,0,0,0,0,0,0,0,0,
3343 				0,0,0,0,0,0,0,0,0,0,
3344 			},
3345 		},
3346 		CHEATMODE_IMPOSSIBLEMISSION,	/* Cheat to activate */
3347 	},
3348 	{
3349 		{	/* Tyrago_A / Hard */
3350 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3351 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3352 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3353 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3354 			-1,		/* Shots Fired */
3355 			-1,		/* Accuracy */
3356 			-1,		/* Spotted */
3357 			0,		/* Total Seconds (unsigned!) */
3358 			0,		/* Total Minutes (unsigned!) */
3359 			-1,		/* Total Hours */
3360 			0,		/* Cloaked Seconds */
3361 			0,		/* Cloaked Minutes */
3362 			-1,		/* Cloaked Hours */
3363 			-1,		/* Health Damage */
3364 			-1,		/* Armour Damage */
3365 			-1,		/* Average Speed */
3366 			-1,		/* Field Charge Used */
3367 			-1,		/* Head Shot Percentage */
3368 			{		/* Padding */
3369 				0,0,0,0,0,0,0,0,0,0,
3370 				0,0,0,0,0,0,0,0,0,0,
3371 				0,0,0,0,0,0,0,0,0,0,
3372 				0,0,0,0,0,0,0,0,0,0,
3373 			},
3374 		},
3375 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3376 	},
3377 	{
3378 		{	/* Fury161_A / Hard */
3379 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3380 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3381 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3382 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3383 			-1,		/* Shots Fired */
3384 			-1,		/* Accuracy */
3385 			-1,		/* Spotted */
3386 			0,		/* Total Seconds (unsigned!) */
3387 			0,		/* Total Minutes (unsigned!) */
3388 			-1,		/* Total Hours */
3389 			0,		/* Cloaked Seconds */
3390 			0,		/* Cloaked Minutes */
3391 			-1,		/* Cloaked Hours */
3392 			-1,		/* Health Damage */
3393 			-1,		/* Armour Damage */
3394 			-1,		/* Average Speed */
3395 			-1,		/* Field Charge Used */
3396 			-1,		/* Head Shot Percentage */
3397 			{		/* Padding */
3398 				0,0,0,0,0,0,0,0,0,0,
3399 				0,0,0,0,0,0,0,0,0,0,
3400 				0,0,0,0,0,0,0,0,0,0,
3401 				0,0,0,0,0,0,0,0,0,0,
3402 			},
3403 		},
3404 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3405 	},
3406 	{
3407 		{	/* Caverns_A / Hard */
3408 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3409 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3410 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3411 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3412 			-1,		/* Shots Fired */
3413 			-1,		/* Accuracy */
3414 			-1,		/* Spotted */
3415 			0,		/* Total Seconds (unsigned!) */
3416 			0,		/* Total Minutes (unsigned!) */
3417 			-1,		/* Total Hours */
3418 			0,		/* Cloaked Seconds */
3419 			0,		/* Cloaked Minutes */
3420 			-1,		/* Cloaked Hours */
3421 			-1,		/* Health Damage */
3422 			-1,		/* Armour Damage */
3423 			-1,		/* Average Speed */
3424 			-1,		/* Field Charge Used */
3425 			-1,		/* Head Shot Percentage */
3426 			{		/* Padding */
3427 				0,0,0,0,0,0,0,0,0,0,
3428 				0,0,0,0,0,0,0,0,0,0,
3429 				0,0,0,0,0,0,0,0,0,0,
3430 				0,0,0,0,0,0,0,0,0,0,
3431 			},
3432 		},
3433 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3434 	},
3435 	{
3436 		{	/* Invasion_P / Hard */
3437 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3438 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3439 			{-1,15,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3440 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3441 			-1,		/* Shots Fired */
3442 			-1,		/* Accuracy */
3443 			-1,		/* Spotted */
3444 			0,		/* Total Seconds (unsigned!) */
3445 			0,		/* Total Minutes (unsigned!) */
3446 			-1,		/* Total Hours */
3447 			0,		/* Cloaked Seconds */
3448 			0,		/* Cloaked Minutes */
3449 			-1,		/* Cloaked Hours */
3450 			-1,		/* Health Damage */
3451 			-1,		/* Armour Damage */
3452 			-1,		/* Average Speed */
3453 			-1,		/* Field Charge Used */
3454 			-1,		/* Head Shot Percentage */
3455 			{		/* Padding */
3456 				0,0,0,0,0,0,0,0,0,0,
3457 				0,0,0,0,0,0,0,0,0,0,
3458 				0,0,0,0,0,0,0,0,0,0,
3459 				0,0,0,0,0,0,0,0,0,0,
3460 			},
3461 		},
3462 		CHEATMODE_TICKERTAPE,	/* Cheat to activate */
3463 	},
3464 	{
3465 		{	/* Tyrago_P / Hard */
3466 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3467 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3468 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3469 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3470 			-1,		/* Shots Fired */
3471 			-1,		/* Accuracy */
3472 			-1,		/* Spotted */
3473 			0,		/* Total Seconds (unsigned!) */
3474 			0,		/* Total Minutes (unsigned!) */
3475 			-1,		/* Total Hours */
3476 			0,		/* Cloaked Seconds */
3477 			0,		/* Cloaked Minutes */
3478 			-1,		/* Cloaked Hours */
3479 			-1,		/* Health Damage */
3480 			-1,		/* Armour Damage */
3481 			-1,		/* Average Speed */
3482 			-1,		/* Field Charge Used */
3483 			-1,		/* Head Shot Percentage */
3484 			{		/* Padding */
3485 				0,0,0,0,0,0,0,0,0,0,
3486 				0,0,0,0,0,0,0,0,0,0,
3487 				0,0,0,0,0,0,0,0,0,0,
3488 				0,0,0,0,0,0,0,0,0,0,
3489 			},
3490 		},
3491 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3492 	},
3493 	{
3494 		{	/* Temple_P / Hard */
3495 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3496 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3497 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3498 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3499 			-1,		/* Shots Fired */
3500 			-1,		/* Accuracy */
3501 			-1,		/* Spotted */
3502 			0,		/* Total Seconds (unsigned!) */
3503 			0,		/* Total Minutes (unsigned!) */
3504 			-1,		/* Total Hours */
3505 			0,		/* Cloaked Seconds */
3506 			0,		/* Cloaked Minutes */
3507 			-1,		/* Cloaked Hours */
3508 			-1,		/* Health Damage */
3509 			-1,		/* Armour Damage */
3510 			-1,		/* Average Speed */
3511 			-1,		/* Field Charge Used */
3512 			-1,		/* Head Shot Percentage */
3513 			{		/* Padding */
3514 				0,0,0,0,0,0,0,0,0,0,
3515 				0,0,0,0,0,0,0,0,0,0,
3516 				0,0,0,0,0,0,0,0,0,0,
3517 				0,0,0,0,0,0,0,0,0,0,
3518 			},
3519 		},
3520 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3521 	},
3522 	{
3523 		{	/* Escape_P / Hard */
3524 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3525 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3526 			{-1,-1,-1,-1,-1,-1,-1,-1,10,-1,},	/* Trophies / Live Head Bites */
3527 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3528 			-1,		/* Shots Fired */
3529 			-1,		/* Accuracy */
3530 			-1,		/* Spotted */
3531 			0,		/* Total Seconds (unsigned!) */
3532 			0,		/* Total Minutes (unsigned!) */
3533 			-1,		/* Total Hours */
3534 			0,		/* Cloaked Seconds */
3535 			0,		/* Cloaked Minutes */
3536 			-1,		/* Cloaked Hours */
3537 			-1,		/* Health Damage */
3538 			-1,		/* Armour Damage */
3539 			-1,		/* Average Speed */
3540 			-1,		/* Field Charge Used */
3541 			-1,		/* Head Shot Percentage */
3542 			{		/* Padding */
3543 				0,0,0,0,0,0,0,0,0,0,
3544 				0,0,0,0,0,0,0,0,0,0,
3545 				0,0,0,0,0,0,0,0,0,0,
3546 				0,0,0,0,0,0,0,0,0,0,
3547 			},
3548 		},
3549 		CHEATMODE_TRIPTASTIC,	/* Cheat to activate */
3550 	},
3551 	{
3552 		{	/* Earthbound_P / Hard */
3553 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3554 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3555 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3556 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3557 			-1,		/* Shots Fired */
3558 			-1,		/* Accuracy */
3559 			-1,		/* Spotted */
3560 			0,		/* Total Seconds (unsigned!) */
3561 			0,		/* Total Minutes (unsigned!) */
3562 			-1,		/* Total Hours */
3563 			0,		/* Cloaked Seconds */
3564 			0,		/* Cloaked Minutes */
3565 			-1,		/* Cloaked Hours */
3566 			-1,		/* Health Damage */
3567 			-1,		/* Armour Damage */
3568 			-1,		/* Average Speed */
3569 			-1,		/* Field Charge Used */
3570 			-1,		/* Head Shot Percentage */
3571 			{		/* Padding */
3572 				0,0,0,0,0,0,0,0,0,0,
3573 				0,0,0,0,0,0,0,0,0,0,
3574 				0,0,0,0,0,0,0,0,0,0,
3575 				0,0,0,0,0,0,0,0,0,0,
3576 			},
3577 		},
3578 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3579 	},
3580 	{
3581 		{	/* Waterfall_M / Hard */
3582 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3583 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3584 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3585 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3586 			-1,		/* Shots Fired */
3587 			-1,		/* Accuracy */
3588 			-1,		/* Spotted */
3589 			0,		/* Total Seconds (unsigned!) */
3590 			0,		/* Total Minutes (unsigned!) */
3591 			-1,		/* Total Hours */
3592 			0,		/* Cloaked Seconds */
3593 			0,		/* Cloaked Minutes */
3594 			-1,		/* Cloaked Hours */
3595 			-1,		/* Health Damage */
3596 			-1,		/* Armour Damage */
3597 			-1,		/* Average Speed */
3598 			-1,		/* Field Charge Used */
3599 			-1,		/* Head Shot Percentage */
3600 			{		/* Padding */
3601 				0,0,0,0,0,0,0,0,0,0,
3602 				0,0,0,0,0,0,0,0,0,0,
3603 				0,0,0,0,0,0,0,0,0,0,
3604 				0,0,0,0,0,0,0,0,0,0,
3605 			},
3606 		},
3607 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3608 	},
3609 	{
3610 		{	/* Vaults_M / Hard */
3611 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3612 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3613 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3614 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3615 			-1,		/* Shots Fired */
3616 			-1,		/* Accuracy */
3617 			-1,		/* Spotted */
3618 			0,		/* Total Seconds (unsigned!) */
3619 			0,		/* Total Minutes (unsigned!) */
3620 			-1,		/* Total Hours */
3621 			0,		/* Cloaked Seconds */
3622 			0,		/* Cloaked Minutes */
3623 			-1,		/* Cloaked Hours */
3624 			60,		/* Health Damage */
3625 			-1,		/* Armour Damage */
3626 			-1,		/* Average Speed */
3627 			-1,		/* Field Charge Used */
3628 			-1,		/* Head Shot Percentage */
3629 			{		/* Padding */
3630 				0,0,0,0,0,0,0,0,0,0,
3631 				0,0,0,0,0,0,0,0,0,0,
3632 				0,0,0,0,0,0,0,0,0,0,
3633 				0,0,0,0,0,0,0,0,0,0,
3634 			},
3635 		},
3636 		CHEATMODE_UNDERWATER,	/* Cheat to activate */
3637 	},
3638 	{
3639 		{	/* Feraco_M / Hard */
3640 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3641 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3642 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3643 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3644 			-1,		/* Shots Fired */
3645 			-1,		/* Accuracy */
3646 			-1,		/* Spotted */
3647 			0,		/* Total Seconds (unsigned!) */
3648 			0,		/* Total Minutes (unsigned!) */
3649 			-1,		/* Total Hours */
3650 			0,		/* Cloaked Seconds */
3651 			0,		/* Cloaked Minutes */
3652 			-1,		/* Cloaked Hours */
3653 			-1,		/* Health Damage */
3654 			-1,		/* Armour Damage */
3655 			-1,		/* Average Speed */
3656 			-1,		/* Field Charge Used */
3657 			-1,		/* Head Shot Percentage */
3658 			{		/* Padding */
3659 				0,0,0,0,0,0,0,0,0,0,
3660 				0,0,0,0,0,0,0,0,0,0,
3661 				0,0,0,0,0,0,0,0,0,0,
3662 				0,0,0,0,0,0,0,0,0,0,
3663 			},
3664 		},
3665 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3666 	},
3667 	{
3668 		{	/* Temple_M / Hard */
3669 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3670 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3671 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3672 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3673 			-1,		/* Shots Fired */
3674 			-1,		/* Accuracy */
3675 			-1,		/* Spotted */
3676 			0,		/* Total Seconds (unsigned!) */
3677 			0,		/* Total Minutes (unsigned!) */
3678 			-1,		/* Total Hours */
3679 			0,		/* Cloaked Seconds */
3680 			0,		/* Cloaked Minutes */
3681 			-1,		/* Cloaked Hours */
3682 			100,	/* Health Damage */
3683 			-1,		/* Armour Damage */
3684 			-1,		/* Average Speed */
3685 			-1,		/* Field Charge Used */
3686 			-1,		/* Head Shot Percentage */
3687 			{		/* Padding */
3688 				0,0,0,0,0,0,0,0,0,0,
3689 				0,0,0,0,0,0,0,0,0,0,
3690 				0,0,0,0,0,0,0,0,0,0,
3691 				0,0,0,0,0,0,0,0,0,0,
3692 			},
3693 		},
3694 		CHEATMODE_FREEFALL,	/* Cheat to activate */
3695 	},
3696 	{
3697 		{	/* Gateway_M / Hard */
3698 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3699 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3700 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3701 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3702 			-1,		/* Shots Fired */
3703 			-1,		/* Accuracy */
3704 			-1,		/* Spotted */
3705 			0,		/* Total Seconds (unsigned!) */
3706 			0,		/* Total Minutes (unsigned!) */
3707 			-1,		/* Total Hours */
3708 			0,		/* Cloaked Seconds */
3709 			0,		/* Cloaked Minutes */
3710 			-1,		/* Cloaked Hours */
3711 			-1,		/* Health Damage */
3712 			-1,		/* Armour Damage */
3713 			-1,		/* Average Speed */
3714 			-1,		/* Field Charge Used */
3715 			-1,		/* Head Shot Percentage */
3716 			{		/* Padding */
3717 				0,0,0,0,0,0,0,0,0,0,
3718 				0,0,0,0,0,0,0,0,0,0,
3719 				0,0,0,0,0,0,0,0,0,0,
3720 				0,0,0,0,0,0,0,0,0,0,
3721 			},
3722 		},
3723 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3724 	},
3725 	{
3726 		{	/* Kens_Coop / Hard */
3727 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3728 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3729 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3730 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3731 			-1,		/* Shots Fired */
3732 			-1,		/* Accuracy */
3733 			-1,		/* Spotted */
3734 			0,		/* Total Seconds (unsigned!) */
3735 			0,		/* Total Minutes (unsigned!) */
3736 			-1,		/* Total Hours */
3737 			0,		/* Cloaked Seconds */
3738 			0,		/* Cloaked Minutes */
3739 			-1,		/* Cloaked Hours */
3740 			-1,		/* Health Damage */
3741 			-1,		/* Armour Damage */
3742 			-1,		/* Average Speed */
3743 			-1,		/* Field Charge Used */
3744 			-1,		/* Head Shot Percentage */
3745 			{		/* Padding */
3746 				0,0,0,0,0,0,0,0,0,0,
3747 				0,0,0,0,0,0,0,0,0,0,
3748 				0,0,0,0,0,0,0,0,0,0,
3749 				0,0,0,0,0,0,0,0,0,0,
3750 			},
3751 		},
3752 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3753 	},
3754 	{
3755 		{	/* Hive_Coop / Hard */
3756 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3757 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3758 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3759 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3760 			-1,		/* Shots Fired */
3761 			-1,		/* Accuracy */
3762 			-1,		/* Spotted */
3763 			0,		/* Total Seconds (unsigned!) */
3764 			0,		/* Total Minutes (unsigned!) */
3765 			-1,		/* Total Hours */
3766 			0,		/* Cloaked Seconds */
3767 			0,		/* Cloaked Minutes */
3768 			-1,		/* Cloaked Hours */
3769 			-1,		/* Health Damage */
3770 			-1,		/* Armour Damage */
3771 			-1,		/* Average Speed */
3772 			-1,		/* Field Charge Used */
3773 			-1,		/* Head Shot Percentage */
3774 			{		/* Padding */
3775 				0,0,0,0,0,0,0,0,0,0,
3776 				0,0,0,0,0,0,0,0,0,0,
3777 				0,0,0,0,0,0,0,0,0,0,
3778 				0,0,0,0,0,0,0,0,0,0,
3779 			},
3780 		},
3781 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3782 	},
3783 	{
3784 		{	/* Trapped_Coop / Hard */
3785 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3786 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3787 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3788 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3789 			-1,		/* Shots Fired */
3790 			-1,		/* Accuracy */
3791 			-1,		/* Spotted */
3792 			0,		/* Total Seconds (unsigned!) */
3793 			0,		/* Total Minutes (unsigned!) */
3794 			-1,		/* Total Hours */
3795 			0,		/* Cloaked Seconds */
3796 			0,		/* Cloaked Minutes */
3797 			-1,		/* Cloaked Hours */
3798 			-1,		/* Health Damage */
3799 			-1,		/* Armour Damage */
3800 			-1,		/* Average Speed */
3801 			-1,		/* Field Charge Used */
3802 			-1,		/* Head Shot Percentage */
3803 			{		/* Padding */
3804 				0,0,0,0,0,0,0,0,0,0,
3805 				0,0,0,0,0,0,0,0,0,0,
3806 				0,0,0,0,0,0,0,0,0,0,
3807 				0,0,0,0,0,0,0,0,0,0,
3808 			},
3809 		},
3810 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3811 	},
3812 	{
3813 		{	/* Als_DM_Coop / Hard */
3814 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3815 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3816 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3817 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3818 			-1,		/* Shots Fired */
3819 			-1,		/* Accuracy */
3820 			-1,		/* Spotted */
3821 			0,		/* Total Seconds (unsigned!) */
3822 			0,		/* Total Minutes (unsigned!) */
3823 			-1,		/* Total Hours */
3824 			0,		/* Cloaked Seconds */
3825 			0,		/* Cloaked Minutes */
3826 			-1,		/* Cloaked Hours */
3827 			-1,		/* Health Damage */
3828 			-1,		/* Armour Damage */
3829 			-1,		/* Average Speed */
3830 			-1,		/* Field Charge Used */
3831 			-1,		/* Head Shot Percentage */
3832 			{		/* Padding */
3833 				0,0,0,0,0,0,0,0,0,0,
3834 				0,0,0,0,0,0,0,0,0,0,
3835 				0,0,0,0,0,0,0,0,0,0,
3836 				0,0,0,0,0,0,0,0,0,0,
3837 			},
3838 		},
3839 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3840 	},
3841 	{
3842 		{	/* E3DemoSP / Hard */
3843 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3844 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3845 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3846 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3847 			-1,		/* Shots Fired */
3848 			-1,		/* Accuracy */
3849 			-1,		/* Spotted */
3850 			0,		/* Total Seconds (unsigned!) */
3851 			0,		/* Total Minutes (unsigned!) */
3852 			-1,		/* Total Hours */
3853 			0,		/* Cloaked Seconds */
3854 			0,		/* Cloaked Minutes */
3855 			-1,		/* Cloaked Hours */
3856 			-1,		/* Health Damage */
3857 			-1,		/* Armour Damage */
3858 			-1,		/* Average Speed */
3859 			-1,		/* Field Charge Used */
3860 			-1,		/* Head Shot Percentage */
3861 			{		/* Padding */
3862 				0,0,0,0,0,0,0,0,0,0,
3863 				0,0,0,0,0,0,0,0,0,0,
3864 				0,0,0,0,0,0,0,0,0,0,
3865 				0,0,0,0,0,0,0,0,0,0,
3866 			},
3867 		},
3868 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3869 	},
3870 },
3871 
3872 {
3873 	{
3874 		{	/* Derelict / Impossible */
3875 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3876 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3877 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3878 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3879 			-1,		/* Shots Fired */
3880 			-1,		/* Accuracy */
3881 			-1,		/* Spotted */
3882 			0,		/* Total Seconds (unsigned!) */
3883 			0,		/* Total Minutes (unsigned!) */
3884 			-1,		/* Total Hours */
3885 			0,		/* Cloaked Seconds */
3886 			0,		/* Cloaked Minutes */
3887 			-1,		/* Cloaked Hours */
3888 			-1,		/* Health Damage */
3889 			-1,		/* Armour Damage */
3890 			-1,		/* Average Speed */
3891 			-1,		/* Field Charge Used */
3892 			-1,		/* Head Shot Percentage */
3893 			{		/* Padding */
3894 				0,0,0,0,0,0,0,0,0,0,
3895 				0,0,0,0,0,0,0,0,0,0,
3896 				0,0,0,0,0,0,0,0,0,0,
3897 				0,0,0,0,0,0,0,0,0,0,
3898 			},
3899 		},
3900 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3901 	},
3902 	{
3903 		{	/* Colony / Impossible */
3904 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3905 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3906 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3907 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3908 			-1,		/* Shots Fired */
3909 			-1,		/* Accuracy */
3910 			-1,		/* Spotted */
3911 			0,		/* Total Seconds (unsigned!) */
3912 			0,		/* Total Minutes (unsigned!) */
3913 			-1,		/* Total Hours */
3914 			0,		/* Cloaked Seconds */
3915 			0,		/* Cloaked Minutes */
3916 			-1,		/* Cloaked Hours */
3917 			-1,		/* Health Damage */
3918 			-1,		/* Armour Damage */
3919 			-1,		/* Average Speed */
3920 			-1,		/* Field Charge Used */
3921 			-1,		/* Head Shot Percentage */
3922 			{		/* Padding */
3923 				0,0,0,0,0,0,0,0,0,0,
3924 				0,0,0,0,0,0,0,0,0,0,
3925 				0,0,0,0,0,0,0,0,0,0,
3926 				0,0,0,0,0,0,0,0,0,0,
3927 			},
3928 		},
3929 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3930 	},
3931 	{
3932 		{	/* Invasion / Impossible */
3933 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3934 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3935 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3936 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3937 			-1,		/* Shots Fired */
3938 			-1,		/* Accuracy */
3939 			-1,		/* Spotted */
3940 			0,		/* Total Seconds (unsigned!) */
3941 			0,		/* Total Minutes (unsigned!) */
3942 			-1,		/* Total Hours */
3943 			0,		/* Cloaked Seconds */
3944 			0,		/* Cloaked Minutes */
3945 			-1,		/* Cloaked Hours */
3946 			-1,		/* Health Damage */
3947 			-1,		/* Armour Damage */
3948 			-1,		/* Average Speed */
3949 			-1,		/* Field Charge Used */
3950 			-1,		/* Head Shot Percentage */
3951 			{		/* Padding */
3952 				0,0,0,0,0,0,0,0,0,0,
3953 				0,0,0,0,0,0,0,0,0,0,
3954 				0,0,0,0,0,0,0,0,0,0,
3955 				0,0,0,0,0,0,0,0,0,0,
3956 			},
3957 		},
3958 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3959 	},
3960 	{
3961 		{	/* Orbital / Impossible */
3962 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3963 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3964 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3965 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3966 			-1,		/* Shots Fired */
3967 			-1,		/* Accuracy */
3968 			-1,		/* Spotted */
3969 			0,		/* Total Seconds (unsigned!) */
3970 			0,		/* Total Minutes (unsigned!) */
3971 			-1,		/* Total Hours */
3972 			0,		/* Cloaked Seconds */
3973 			0,		/* Cloaked Minutes */
3974 			-1,		/* Cloaked Hours */
3975 			-1,		/* Health Damage */
3976 			-1,		/* Armour Damage */
3977 			-1,		/* Average Speed */
3978 			-1,		/* Field Charge Used */
3979 			-1,		/* Head Shot Percentage */
3980 			{		/* Padding */
3981 				0,0,0,0,0,0,0,0,0,0,
3982 				0,0,0,0,0,0,0,0,0,0,
3983 				0,0,0,0,0,0,0,0,0,0,
3984 				0,0,0,0,0,0,0,0,0,0,
3985 			},
3986 		},
3987 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
3988 	},
3989 	{
3990 		{	/* Tyrago / Impossible */
3991 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
3992 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
3993 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
3994 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
3995 			-1,		/* Shots Fired */
3996 			-1,		/* Accuracy */
3997 			-1,		/* Spotted */
3998 			0,		/* Total Seconds (unsigned!) */
3999 			0,		/* Total Minutes (unsigned!) */
4000 			-1,		/* Total Hours */
4001 			0,		/* Cloaked Seconds */
4002 			0,		/* Cloaked Minutes */
4003 			-1,		/* Cloaked Hours */
4004 			-1,		/* Health Damage */
4005 			-1,		/* Armour Damage */
4006 			-1,		/* Average Speed */
4007 			-1,		/* Field Charge Used */
4008 			-1,		/* Head Shot Percentage */
4009 			{		/* Padding */
4010 				0,0,0,0,0,0,0,0,0,0,
4011 				0,0,0,0,0,0,0,0,0,0,
4012 				0,0,0,0,0,0,0,0,0,0,
4013 				0,0,0,0,0,0,0,0,0,0,
4014 			},
4015 		},
4016 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4017 	},
4018 	{
4019 		{	/* Hangar / Impossible */
4020 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4021 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4022 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4023 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4024 			-1,		/* Shots Fired */
4025 			-1,		/* Accuracy */
4026 			-1,		/* Spotted */
4027 			0,		/* Total Seconds (unsigned!) */
4028 			0,		/* Total Minutes (unsigned!) */
4029 			-1,		/* Total Hours */
4030 			0,		/* Cloaked Seconds */
4031 			0,		/* Cloaked Minutes */
4032 			-1,		/* Cloaked Hours */
4033 			-1,		/* Health Damage */
4034 			-1,		/* Armour Damage */
4035 			-1,		/* Average Speed */
4036 			-1,		/* Field Charge Used */
4037 			-1,		/* Head Shot Percentage */
4038 			{		/* Padding */
4039 				0,0,0,0,0,0,0,0,0,0,
4040 				0,0,0,0,0,0,0,0,0,0,
4041 				0,0,0,0,0,0,0,0,0,0,
4042 				0,0,0,0,0,0,0,0,0,0,
4043 			},
4044 		},
4045 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4046 	},
4047 	{
4048 		{	/* Waterfall / Impossible */
4049 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4050 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4051 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4052 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4053 			-1,		/* Shots Fired */
4054 			-1,		/* Accuracy */
4055 			-1,		/* Spotted */
4056 			0,		/* Total Seconds (unsigned!) */
4057 			0,		/* Total Minutes (unsigned!) */
4058 			-1,		/* Total Hours */
4059 			0,		/* Cloaked Seconds */
4060 			0,		/* Cloaked Minutes */
4061 			-1,		/* Cloaked Hours */
4062 			-1,		/* Health Damage */
4063 			-1,		/* Armour Damage */
4064 			-1,		/* Average Speed */
4065 			-1,		/* Field Charge Used */
4066 			-1,		/* Head Shot Percentage */
4067 			{		/* Padding */
4068 				0,0,0,0,0,0,0,0,0,0,
4069 				0,0,0,0,0,0,0,0,0,0,
4070 				0,0,0,0,0,0,0,0,0,0,
4071 				0,0,0,0,0,0,0,0,0,0,
4072 			},
4073 		},
4074 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4075 	},
4076 	{
4077 		{	/* Area52 / Impossible */
4078 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4079 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4080 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4081 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4082 			-1,		/* Shots Fired */
4083 			-1,		/* Accuracy */
4084 			-1,		/* Spotted */
4085 			0,		/* Total Seconds (unsigned!) */
4086 			0,		/* Total Minutes (unsigned!) */
4087 			-1,		/* Total Hours */
4088 			0,		/* Cloaked Seconds */
4089 			0,		/* Cloaked Minutes */
4090 			-1,		/* Cloaked Hours */
4091 			-1,		/* Health Damage */
4092 			-1,		/* Armour Damage */
4093 			-1,		/* Average Speed */
4094 			-1,		/* Field Charge Used */
4095 			-1,		/* Head Shot Percentage */
4096 			{		/* Padding */
4097 				0,0,0,0,0,0,0,0,0,0,
4098 				0,0,0,0,0,0,0,0,0,0,
4099 				0,0,0,0,0,0,0,0,0,0,
4100 				0,0,0,0,0,0,0,0,0,0,
4101 			},
4102 		},
4103 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4104 	},
4105 	{
4106 		{	/* Vaults / Impossible */
4107 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4108 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4109 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4110 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4111 			-1,		/* Shots Fired */
4112 			-1,		/* Accuracy */
4113 			-1,		/* Spotted */
4114 			0,		/* Total Seconds (unsigned!) */
4115 			0,		/* Total Minutes (unsigned!) */
4116 			-1,		/* Total Hours */
4117 			0,		/* Cloaked Seconds */
4118 			0,		/* Cloaked Minutes */
4119 			-1,		/* Cloaked Hours */
4120 			-1,		/* Health Damage */
4121 			-1,		/* Armour Damage */
4122 			-1,		/* Average Speed */
4123 			-1,		/* Field Charge Used */
4124 			-1,		/* Head Shot Percentage */
4125 			{		/* Padding */
4126 				0,0,0,0,0,0,0,0,0,0,
4127 				0,0,0,0,0,0,0,0,0,0,
4128 				0,0,0,0,0,0,0,0,0,0,
4129 				0,0,0,0,0,0,0,0,0,0,
4130 			},
4131 		},
4132 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4133 	},
4134 	{
4135 		{	/* Fury161 / Impossible */
4136 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4137 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4138 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4139 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4140 			-1,		/* Shots Fired */
4141 			-1,		/* Accuracy */
4142 			-1,		/* Spotted */
4143 			0,		/* Total Seconds (unsigned!) */
4144 			0,		/* Total Minutes (unsigned!) */
4145 			-1,		/* Total Hours */
4146 			0,		/* Cloaked Seconds */
4147 			0,		/* Cloaked Minutes */
4148 			-1,		/* Cloaked Hours */
4149 			-1,		/* Health Damage */
4150 			-1,		/* Armour Damage */
4151 			-1,		/* Average Speed */
4152 			-1,		/* Field Charge Used */
4153 			-1,		/* Head Shot Percentage */
4154 			{		/* Padding */
4155 				0,0,0,0,0,0,0,0,0,0,
4156 				0,0,0,0,0,0,0,0,0,0,
4157 				0,0,0,0,0,0,0,0,0,0,
4158 				0,0,0,0,0,0,0,0,0,0,
4159 			},
4160 		},
4161 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4162 	},
4163 	{
4164 		{	/* Caverns / Impossible */
4165 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4166 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4167 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4168 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4169 			-1,		/* Shots Fired */
4170 			-1,		/* Accuracy */
4171 			-1,		/* Spotted */
4172 			0,		/* Total Seconds (unsigned!) */
4173 			0,		/* Total Minutes (unsigned!) */
4174 			-1,		/* Total Hours */
4175 			0,		/* Cloaked Seconds */
4176 			0,		/* Cloaked Minutes */
4177 			-1,		/* Cloaked Hours */
4178 			-1,		/* Health Damage */
4179 			-1,		/* Armour Damage */
4180 			-1,		/* Average Speed */
4181 			-1,		/* Field Charge Used */
4182 			-1,		/* Head Shot Percentage */
4183 			{		/* Padding */
4184 				0,0,0,0,0,0,0,0,0,0,
4185 				0,0,0,0,0,0,0,0,0,0,
4186 				0,0,0,0,0,0,0,0,0,0,
4187 				0,0,0,0,0,0,0,0,0,0,
4188 			},
4189 		},
4190 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4191 	},
4192 	{
4193 		{	/* Battle / Impossible */
4194 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4195 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4196 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4197 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4198 			-1,		/* Shots Fired */
4199 			-1,		/* Accuracy */
4200 			-1,		/* Spotted */
4201 			0,		/* Total Seconds (unsigned!) */
4202 			0,		/* Total Minutes (unsigned!) */
4203 			-1,		/* Total Hours */
4204 			0,		/* Cloaked Seconds */
4205 			0,		/* Cloaked Minutes */
4206 			-1,		/* Cloaked Hours */
4207 			-1,		/* Health Damage */
4208 			-1,		/* Armour Damage */
4209 			-1,		/* Average Speed */
4210 			-1,		/* Field Charge Used */
4211 			-1,		/* Head Shot Percentage */
4212 			{		/* Padding */
4213 				0,0,0,0,0,0,0,0,0,0,
4214 				0,0,0,0,0,0,0,0,0,0,
4215 				0,0,0,0,0,0,0,0,0,0,
4216 				0,0,0,0,0,0,0,0,0,0,
4217 			},
4218 		},
4219 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4220 	},
4221 	{
4222 		{	/* Feraco / Impossible */
4223 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4224 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4225 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4226 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4227 			-1,		/* Shots Fired */
4228 			-1,		/* Accuracy */
4229 			-1,		/* Spotted */
4230 			0,		/* Total Seconds (unsigned!) */
4231 			0,		/* Total Minutes (unsigned!) */
4232 			-1,		/* Total Hours */
4233 			0,		/* Cloaked Seconds */
4234 			0,		/* Cloaked Minutes */
4235 			-1,		/* Cloaked Hours */
4236 			-1,		/* Health Damage */
4237 			-1,		/* Armour Damage */
4238 			-1,		/* Average Speed */
4239 			-1,		/* Field Charge Used */
4240 			-1,		/* Head Shot Percentage */
4241 			{		/* Padding */
4242 				0,0,0,0,0,0,0,0,0,0,
4243 				0,0,0,0,0,0,0,0,0,0,
4244 				0,0,0,0,0,0,0,0,0,0,
4245 				0,0,0,0,0,0,0,0,0,0,
4246 			},
4247 		},
4248 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4249 	},
4250 	{
4251 		{	/* Temple / Impossible */
4252 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4253 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4254 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4255 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4256 			-1,		/* Shots Fired */
4257 			-1,		/* Accuracy */
4258 			-1,		/* Spotted */
4259 			0,		/* Total Seconds (unsigned!) */
4260 			0,		/* Total Minutes (unsigned!) */
4261 			-1,		/* Total Hours */
4262 			0,		/* Cloaked Seconds */
4263 			0,		/* Cloaked Minutes */
4264 			-1,		/* Cloaked Hours */
4265 			-1,		/* Health Damage */
4266 			-1,		/* Armour Damage */
4267 			-1,		/* Average Speed */
4268 			-1,		/* Field Charge Used */
4269 			-1,		/* Head Shot Percentage */
4270 			{		/* Padding */
4271 				0,0,0,0,0,0,0,0,0,0,
4272 				0,0,0,0,0,0,0,0,0,0,
4273 				0,0,0,0,0,0,0,0,0,0,
4274 				0,0,0,0,0,0,0,0,0,0,
4275 			},
4276 		},
4277 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4278 	},
4279 	{
4280 		{	/* Gateway / Impossible */
4281 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4282 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4283 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4284 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4285 			-1,		/* Shots Fired */
4286 			-1,		/* Accuracy */
4287 			-1,		/* Spotted */
4288 			0,		/* Total Seconds (unsigned!) */
4289 			0,		/* Total Minutes (unsigned!) */
4290 			-1,		/* Total Hours */
4291 			0,		/* Cloaked Seconds */
4292 			0,		/* Cloaked Minutes */
4293 			-1,		/* Cloaked Hours */
4294 			-1,		/* Health Damage */
4295 			-1,		/* Armour Damage */
4296 			-1,		/* Average Speed */
4297 			-1,		/* Field Charge Used */
4298 			-1,		/* Head Shot Percentage */
4299 			{		/* Padding */
4300 				0,0,0,0,0,0,0,0,0,0,
4301 				0,0,0,0,0,0,0,0,0,0,
4302 				0,0,0,0,0,0,0,0,0,0,
4303 				0,0,0,0,0,0,0,0,0,0,
4304 			},
4305 		},
4306 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4307 	},
4308 	{
4309 		{	/* Escape / Impossible */
4310 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4311 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4312 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4313 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4314 			-1,		/* Shots Fired */
4315 			-1,		/* Accuracy */
4316 			-1,		/* Spotted */
4317 			0,		/* Total Seconds (unsigned!) */
4318 			0,		/* Total Minutes (unsigned!) */
4319 			-1,		/* Total Hours */
4320 			0,		/* Cloaked Seconds */
4321 			0,		/* Cloaked Minutes */
4322 			-1,		/* Cloaked Hours */
4323 			-1,		/* Health Damage */
4324 			-1,		/* Armour Damage */
4325 			-1,		/* Average Speed */
4326 			-1,		/* Field Charge Used */
4327 			-1,		/* Head Shot Percentage */
4328 			{		/* Padding */
4329 				0,0,0,0,0,0,0,0,0,0,
4330 				0,0,0,0,0,0,0,0,0,0,
4331 				0,0,0,0,0,0,0,0,0,0,
4332 				0,0,0,0,0,0,0,0,0,0,
4333 			},
4334 		},
4335 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4336 	},
4337 	{
4338 		{	/* Earthbound / Impossible */
4339 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4340 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4341 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4342 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4343 			-1,		/* Shots Fired */
4344 			-1,		/* Accuracy */
4345 			-1,		/* Spotted */
4346 			0,		/* Total Seconds (unsigned!) */
4347 			0,		/* Total Minutes (unsigned!) */
4348 			-1,		/* Total Hours */
4349 			0,		/* Cloaked Seconds */
4350 			0,		/* Cloaked Minutes */
4351 			-1,		/* Cloaked Hours */
4352 			-1,		/* Health Damage */
4353 			-1,		/* Armour Damage */
4354 			-1,		/* Average Speed */
4355 			-1,		/* Field Charge Used */
4356 			-1,		/* Head Shot Percentage */
4357 			{		/* Padding */
4358 				0,0,0,0,0,0,0,0,0,0,
4359 				0,0,0,0,0,0,0,0,0,0,
4360 				0,0,0,0,0,0,0,0,0,0,
4361 				0,0,0,0,0,0,0,0,0,0,
4362 			},
4363 		},
4364 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4365 	},
4366 	{
4367 		{	/* Sewer / Impossible */
4368 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4369 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4370 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4371 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4372 			-1,		/* Shots Fired */
4373 			-1,		/* Accuracy */
4374 			-1,		/* Spotted */
4375 			0,		/* Total Seconds (unsigned!) */
4376 			0,		/* Total Minutes (unsigned!) */
4377 			-1,		/* Total Hours */
4378 			0,		/* Cloaked Seconds */
4379 			0,		/* Cloaked Minutes */
4380 			-1,		/* Cloaked Hours */
4381 			-1,		/* Health Damage */
4382 			-1,		/* Armour Damage */
4383 			-1,		/* Average Speed */
4384 			-1,		/* Field Charge Used */
4385 			-1,		/* Head Shot Percentage */
4386 			{		/* Padding */
4387 				0,0,0,0,0,0,0,0,0,0,
4388 				0,0,0,0,0,0,0,0,0,0,
4389 				0,0,0,0,0,0,0,0,0,0,
4390 				0,0,0,0,0,0,0,0,0,0,
4391 			},
4392 		},
4393 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4394 	},
4395 	{
4396 		{	/* Massacre / Impossible */
4397 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4398 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4399 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4400 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4401 			-1,		/* Shots Fired */
4402 			-1,		/* Accuracy */
4403 			-1,		/* Spotted */
4404 			0,		/* Total Seconds (unsigned!) */
4405 			0,		/* Total Minutes (unsigned!) */
4406 			-1,		/* Total Hours */
4407 			0,		/* Cloaked Seconds */
4408 			0,		/* Cloaked Minutes */
4409 			-1,		/* Cloaked Hours */
4410 			-1,		/* Health Damage */
4411 			-1,		/* Armour Damage */
4412 			-1,		/* Average Speed */
4413 			-1,		/* Field Charge Used */
4414 			-1,		/* Head Shot Percentage */
4415 			{		/* Padding */
4416 				0,0,0,0,0,0,0,0,0,0,
4417 				0,0,0,0,0,0,0,0,0,0,
4418 				0,0,0,0,0,0,0,0,0,0,
4419 				0,0,0,0,0,0,0,0,0,0,
4420 			},
4421 		},
4422 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4423 	},
4424 	{
4425 		{	/* Statue / Impossible */
4426 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4427 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4428 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4429 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4430 			-1,		/* Shots Fired */
4431 			-1,		/* Accuracy */
4432 			-1,		/* Spotted */
4433 			0,		/* Total Seconds (unsigned!) */
4434 			0,		/* Total Minutes (unsigned!) */
4435 			-1,		/* Total Hours */
4436 			0,		/* Cloaked Seconds */
4437 			0,		/* Cloaked Minutes */
4438 			-1,		/* Cloaked Hours */
4439 			-1,		/* Health Damage */
4440 			-1,		/* Armour Damage */
4441 			-1,		/* Average Speed */
4442 			-1,		/* Field Charge Used */
4443 			-1,		/* Head Shot Percentage */
4444 			{		/* Padding */
4445 				0,0,0,0,0,0,0,0,0,0,
4446 				0,0,0,0,0,0,0,0,0,0,
4447 				0,0,0,0,0,0,0,0,0,0,
4448 				0,0,0,0,0,0,0,0,0,0,
4449 			},
4450 		},
4451 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4452 	},
4453 	{
4454 		{	/* Jockey / Impossible */
4455 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4456 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4457 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4458 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4459 			-1,		/* Shots Fired */
4460 			-1,		/* Accuracy */
4461 			-1,		/* Spotted */
4462 			0,		/* Total Seconds (unsigned!) */
4463 			0,		/* Total Minutes (unsigned!) */
4464 			-1,		/* Total Hours */
4465 			0,		/* Cloaked Seconds */
4466 			0,		/* Cloaked Minutes */
4467 			-1,		/* Cloaked Hours */
4468 			-1,		/* Health Damage */
4469 			-1,		/* Armour Damage */
4470 			-1,		/* Average Speed */
4471 			-1,		/* Field Charge Used */
4472 			-1,		/* Head Shot Percentage */
4473 			{		/* Padding */
4474 				0,0,0,0,0,0,0,0,0,0,
4475 				0,0,0,0,0,0,0,0,0,0,
4476 				0,0,0,0,0,0,0,0,0,0,
4477 				0,0,0,0,0,0,0,0,0,0,
4478 			},
4479 		},
4480 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4481 	},
4482 	{
4483 		{	/* Hive / Impossible */
4484 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4485 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4486 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4487 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4488 			-1,		/* Shots Fired */
4489 			-1,		/* Accuracy */
4490 			-1,		/* Spotted */
4491 			0,		/* Total Seconds (unsigned!) */
4492 			0,		/* Total Minutes (unsigned!) */
4493 			-1,		/* Total Hours */
4494 			0,		/* Cloaked Seconds */
4495 			0,		/* Cloaked Minutes */
4496 			-1,		/* Cloaked Hours */
4497 			-1,		/* Health Damage */
4498 			-1,		/* Armour Damage */
4499 			-1,		/* Average Speed */
4500 			-1,		/* Field Charge Used */
4501 			-1,		/* Head Shot Percentage */
4502 			{		/* Padding */
4503 				0,0,0,0,0,0,0,0,0,0,
4504 				0,0,0,0,0,0,0,0,0,0,
4505 				0,0,0,0,0,0,0,0,0,0,
4506 				0,0,0,0,0,0,0,0,0,0,
4507 			},
4508 		},
4509 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4510 	},
4511 	{
4512 		{	/* Invasion_A / Impossible */
4513 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4514 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4515 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4516 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4517 			-1,		/* Shots Fired */
4518 			-1,		/* Accuracy */
4519 			-1,		/* Spotted */
4520 			0,		/* Total Seconds (unsigned!) */
4521 			0,		/* Total Minutes (unsigned!) */
4522 			-1,		/* Total Hours */
4523 			0,		/* Cloaked Seconds */
4524 			0,		/* Cloaked Minutes */
4525 			-1,		/* Cloaked Hours */
4526 			-1,		/* Health Damage */
4527 			-1,		/* Armour Damage */
4528 			-1,		/* Average Speed */
4529 			-1,		/* Field Charge Used */
4530 			-1,		/* Head Shot Percentage */
4531 			{		/* Padding */
4532 				0,0,0,0,0,0,0,0,0,0,
4533 				0,0,0,0,0,0,0,0,0,0,
4534 				0,0,0,0,0,0,0,0,0,0,
4535 				0,0,0,0,0,0,0,0,0,0,
4536 			},
4537 		},
4538 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4539 	},
4540 	{
4541 		{	/* Derelict_A / Impossible */
4542 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4543 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4544 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4545 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4546 			-1,		/* Shots Fired */
4547 			-1,		/* Accuracy */
4548 			-1,		/* Spotted */
4549 			0,		/* Total Seconds (unsigned!) */
4550 			0,		/* Total Minutes (unsigned!) */
4551 			-1,		/* Total Hours */
4552 			0,		/* Cloaked Seconds */
4553 			0,		/* Cloaked Minutes */
4554 			-1,		/* Cloaked Hours */
4555 			-1,		/* Health Damage */
4556 			-1,		/* Armour Damage */
4557 			-1,		/* Average Speed */
4558 			-1,		/* Field Charge Used */
4559 			-1,		/* Head Shot Percentage */
4560 			{		/* Padding */
4561 				0,0,0,0,0,0,0,0,0,0,
4562 				0,0,0,0,0,0,0,0,0,0,
4563 				0,0,0,0,0,0,0,0,0,0,
4564 				0,0,0,0,0,0,0,0,0,0,
4565 			},
4566 		},
4567 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4568 	},
4569 	{
4570 		{	/* Tyrago_A / Impossible */
4571 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4572 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4573 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4574 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4575 			-1,		/* Shots Fired */
4576 			-1,		/* Accuracy */
4577 			-1,		/* Spotted */
4578 			0,		/* Total Seconds (unsigned!) */
4579 			0,		/* Total Minutes (unsigned!) */
4580 			-1,		/* Total Hours */
4581 			0,		/* Cloaked Seconds */
4582 			0,		/* Cloaked Minutes */
4583 			-1,		/* Cloaked Hours */
4584 			-1,		/* Health Damage */
4585 			-1,		/* Armour Damage */
4586 			-1,		/* Average Speed */
4587 			-1,		/* Field Charge Used */
4588 			-1,		/* Head Shot Percentage */
4589 			{		/* Padding */
4590 				0,0,0,0,0,0,0,0,0,0,
4591 				0,0,0,0,0,0,0,0,0,0,
4592 				0,0,0,0,0,0,0,0,0,0,
4593 				0,0,0,0,0,0,0,0,0,0,
4594 			},
4595 		},
4596 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4597 	},
4598 	{
4599 		{	/* Fury161_A / Impossible */
4600 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4601 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4602 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4603 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4604 			-1,		/* Shots Fired */
4605 			-1,		/* Accuracy */
4606 			-1,		/* Spotted */
4607 			0,		/* Total Seconds (unsigned!) */
4608 			0,		/* Total Minutes (unsigned!) */
4609 			-1,		/* Total Hours */
4610 			0,		/* Cloaked Seconds */
4611 			0,		/* Cloaked Minutes */
4612 			-1,		/* Cloaked Hours */
4613 			-1,		/* Health Damage */
4614 			-1,		/* Armour Damage */
4615 			-1,		/* Average Speed */
4616 			-1,		/* Field Charge Used */
4617 			-1,		/* Head Shot Percentage */
4618 			{		/* Padding */
4619 				0,0,0,0,0,0,0,0,0,0,
4620 				0,0,0,0,0,0,0,0,0,0,
4621 				0,0,0,0,0,0,0,0,0,0,
4622 				0,0,0,0,0,0,0,0,0,0,
4623 			},
4624 		},
4625 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4626 	},
4627 	{
4628 		{	/* Caverns_A / Impossible */
4629 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4630 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4631 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4632 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4633 			-1,		/* Shots Fired */
4634 			-1,		/* Accuracy */
4635 			-1,		/* Spotted */
4636 			0,		/* Total Seconds (unsigned!) */
4637 			0,		/* Total Minutes (unsigned!) */
4638 			-1,		/* Total Hours */
4639 			0,		/* Cloaked Seconds */
4640 			0,		/* Cloaked Minutes */
4641 			-1,		/* Cloaked Hours */
4642 			-1,		/* Health Damage */
4643 			-1,		/* Armour Damage */
4644 			-1,		/* Average Speed */
4645 			-1,		/* Field Charge Used */
4646 			-1,		/* Head Shot Percentage */
4647 			{		/* Padding */
4648 				0,0,0,0,0,0,0,0,0,0,
4649 				0,0,0,0,0,0,0,0,0,0,
4650 				0,0,0,0,0,0,0,0,0,0,
4651 				0,0,0,0,0,0,0,0,0,0,
4652 			},
4653 		},
4654 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4655 	},
4656 	{
4657 		{	/* Invasion_P / Impossible */
4658 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4659 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4660 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4661 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4662 			-1,		/* Shots Fired */
4663 			-1,		/* Accuracy */
4664 			-1,		/* Spotted */
4665 			0,		/* Total Seconds (unsigned!) */
4666 			0,		/* Total Minutes (unsigned!) */
4667 			-1,		/* Total Hours */
4668 			0,		/* Cloaked Seconds */
4669 			0,		/* Cloaked Minutes */
4670 			-1,		/* Cloaked Hours */
4671 			-1,		/* Health Damage */
4672 			-1,		/* Armour Damage */
4673 			-1,		/* Average Speed */
4674 			-1,		/* Field Charge Used */
4675 			-1,		/* Head Shot Percentage */
4676 			{		/* Padding */
4677 				0,0,0,0,0,0,0,0,0,0,
4678 				0,0,0,0,0,0,0,0,0,0,
4679 				0,0,0,0,0,0,0,0,0,0,
4680 				0,0,0,0,0,0,0,0,0,0,
4681 			},
4682 		},
4683 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4684 	},
4685 	{
4686 		{	/* Tyrago_P / Impossible */
4687 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4688 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4689 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4690 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4691 			-1,		/* Shots Fired */
4692 			-1,		/* Accuracy */
4693 			-1,		/* Spotted */
4694 			0,		/* Total Seconds (unsigned!) */
4695 			0,		/* Total Minutes (unsigned!) */
4696 			-1,		/* Total Hours */
4697 			0,		/* Cloaked Seconds */
4698 			0,		/* Cloaked Minutes */
4699 			-1,		/* Cloaked Hours */
4700 			-1,		/* Health Damage */
4701 			-1,		/* Armour Damage */
4702 			-1,		/* Average Speed */
4703 			-1,		/* Field Charge Used */
4704 			-1,		/* Head Shot Percentage */
4705 			{		/* Padding */
4706 				0,0,0,0,0,0,0,0,0,0,
4707 				0,0,0,0,0,0,0,0,0,0,
4708 				0,0,0,0,0,0,0,0,0,0,
4709 				0,0,0,0,0,0,0,0,0,0,
4710 			},
4711 		},
4712 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4713 	},
4714 	{
4715 		{	/* Temple_P / Impossible */
4716 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4717 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4718 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4719 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4720 			-1,		/* Shots Fired */
4721 			-1,		/* Accuracy */
4722 			-1,		/* Spotted */
4723 			0,		/* Total Seconds (unsigned!) */
4724 			0,		/* Total Minutes (unsigned!) */
4725 			-1,		/* Total Hours */
4726 			0,		/* Cloaked Seconds */
4727 			0,		/* Cloaked Minutes */
4728 			-1,		/* Cloaked Hours */
4729 			-1,		/* Health Damage */
4730 			-1,		/* Armour Damage */
4731 			-1,		/* Average Speed */
4732 			-1,		/* Field Charge Used */
4733 			-1,		/* Head Shot Percentage */
4734 			{		/* Padding */
4735 				0,0,0,0,0,0,0,0,0,0,
4736 				0,0,0,0,0,0,0,0,0,0,
4737 				0,0,0,0,0,0,0,0,0,0,
4738 				0,0,0,0,0,0,0,0,0,0,
4739 			},
4740 		},
4741 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4742 	},
4743 	{
4744 		{	/* Escape_P / Impossible */
4745 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4746 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4747 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4748 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4749 			-1,		/* Shots Fired */
4750 			-1,		/* Accuracy */
4751 			-1,		/* Spotted */
4752 			0,		/* Total Seconds (unsigned!) */
4753 			0,		/* Total Minutes (unsigned!) */
4754 			-1,		/* Total Hours */
4755 			0,		/* Cloaked Seconds */
4756 			0,		/* Cloaked Minutes */
4757 			-1,		/* Cloaked Hours */
4758 			-1,		/* Health Damage */
4759 			-1,		/* Armour Damage */
4760 			-1,		/* Average Speed */
4761 			-1,		/* Field Charge Used */
4762 			-1,		/* Head Shot Percentage */
4763 			{		/* Padding */
4764 				0,0,0,0,0,0,0,0,0,0,
4765 				0,0,0,0,0,0,0,0,0,0,
4766 				0,0,0,0,0,0,0,0,0,0,
4767 				0,0,0,0,0,0,0,0,0,0,
4768 			},
4769 		},
4770 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4771 	},
4772 	{
4773 		{	/* Earthbound_P / Impossible */
4774 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4775 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4776 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4777 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4778 			-1,		/* Shots Fired */
4779 			-1,		/* Accuracy */
4780 			-1,		/* Spotted */
4781 			0,		/* Total Seconds (unsigned!) */
4782 			0,		/* Total Minutes (unsigned!) */
4783 			-1,		/* Total Hours */
4784 			0,		/* Cloaked Seconds */
4785 			0,		/* Cloaked Minutes */
4786 			-1,		/* Cloaked Hours */
4787 			-1,		/* Health Damage */
4788 			-1,		/* Armour Damage */
4789 			-1,		/* Average Speed */
4790 			-1,		/* Field Charge Used */
4791 			-1,		/* Head Shot Percentage */
4792 			{		/* Padding */
4793 				0,0,0,0,0,0,0,0,0,0,
4794 				0,0,0,0,0,0,0,0,0,0,
4795 				0,0,0,0,0,0,0,0,0,0,
4796 				0,0,0,0,0,0,0,0,0,0,
4797 			},
4798 		},
4799 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4800 	},
4801 	{
4802 		{	/* Waterfall_M / Impossible */
4803 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4804 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4805 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4806 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4807 			-1,		/* Shots Fired */
4808 			-1,		/* Accuracy */
4809 			-1,		/* Spotted */
4810 			0,		/* Total Seconds (unsigned!) */
4811 			0,		/* Total Minutes (unsigned!) */
4812 			-1,		/* Total Hours */
4813 			0,		/* Cloaked Seconds */
4814 			0,		/* Cloaked Minutes */
4815 			-1,		/* Cloaked Hours */
4816 			-1,		/* Health Damage */
4817 			-1,		/* Armour Damage */
4818 			-1,		/* Average Speed */
4819 			-1,		/* Field Charge Used */
4820 			-1,		/* Head Shot Percentage */
4821 			{		/* Padding */
4822 				0,0,0,0,0,0,0,0,0,0,
4823 				0,0,0,0,0,0,0,0,0,0,
4824 				0,0,0,0,0,0,0,0,0,0,
4825 				0,0,0,0,0,0,0,0,0,0,
4826 			},
4827 		},
4828 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4829 	},
4830 	{
4831 		{	/* Vaults_M / Impossible */
4832 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4833 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4834 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4835 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4836 			-1,		/* Shots Fired */
4837 			-1,		/* Accuracy */
4838 			-1,		/* Spotted */
4839 			0,		/* Total Seconds (unsigned!) */
4840 			0,		/* Total Minutes (unsigned!) */
4841 			-1,		/* Total Hours */
4842 			0,		/* Cloaked Seconds */
4843 			0,		/* Cloaked Minutes */
4844 			-1,		/* Cloaked Hours */
4845 			-1,		/* Health Damage */
4846 			-1,		/* Armour Damage */
4847 			-1,		/* Average Speed */
4848 			-1,		/* Field Charge Used */
4849 			-1,		/* Head Shot Percentage */
4850 			{		/* Padding */
4851 				0,0,0,0,0,0,0,0,0,0,
4852 				0,0,0,0,0,0,0,0,0,0,
4853 				0,0,0,0,0,0,0,0,0,0,
4854 				0,0,0,0,0,0,0,0,0,0,
4855 			},
4856 		},
4857 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4858 	},
4859 	{
4860 		{	/* Feraco_M / Impossible */
4861 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4862 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4863 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4864 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4865 			-1,		/* Shots Fired */
4866 			-1,		/* Accuracy */
4867 			-1,		/* Spotted */
4868 			0,		/* Total Seconds (unsigned!) */
4869 			0,		/* Total Minutes (unsigned!) */
4870 			-1,		/* Total Hours */
4871 			0,		/* Cloaked Seconds */
4872 			0,		/* Cloaked Minutes */
4873 			-1,		/* Cloaked Hours */
4874 			-1,		/* Health Damage */
4875 			-1,		/* Armour Damage */
4876 			-1,		/* Average Speed */
4877 			-1,		/* Field Charge Used */
4878 			-1,		/* Head Shot Percentage */
4879 			{		/* Padding */
4880 				0,0,0,0,0,0,0,0,0,0,
4881 				0,0,0,0,0,0,0,0,0,0,
4882 				0,0,0,0,0,0,0,0,0,0,
4883 				0,0,0,0,0,0,0,0,0,0,
4884 			},
4885 		},
4886 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4887 	},
4888 	{
4889 		{	/* Temple_M / Impossible */
4890 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4891 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4892 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4893 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4894 			-1,		/* Shots Fired */
4895 			-1,		/* Accuracy */
4896 			-1,		/* Spotted */
4897 			0,		/* Total Seconds (unsigned!) */
4898 			0,		/* Total Minutes (unsigned!) */
4899 			-1,		/* Total Hours */
4900 			0,		/* Cloaked Seconds */
4901 			0,		/* Cloaked Minutes */
4902 			-1,		/* Cloaked Hours */
4903 			-1,		/* Health Damage */
4904 			-1,		/* Armour Damage */
4905 			-1,		/* Average Speed */
4906 			-1,		/* Field Charge Used */
4907 			-1,		/* Head Shot Percentage */
4908 			{		/* Padding */
4909 				0,0,0,0,0,0,0,0,0,0,
4910 				0,0,0,0,0,0,0,0,0,0,
4911 				0,0,0,0,0,0,0,0,0,0,
4912 				0,0,0,0,0,0,0,0,0,0,
4913 			},
4914 		},
4915 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4916 	},
4917 	{
4918 		{	/* Gateway_M / Impossible */
4919 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4920 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4921 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4922 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4923 			-1,		/* Shots Fired */
4924 			-1,		/* Accuracy */
4925 			-1,		/* Spotted */
4926 			0,		/* Total Seconds (unsigned!) */
4927 			0,		/* Total Minutes (unsigned!) */
4928 			-1,		/* Total Hours */
4929 			0,		/* Cloaked Seconds */
4930 			0,		/* Cloaked Minutes */
4931 			-1,		/* Cloaked Hours */
4932 			-1,		/* Health Damage */
4933 			-1,		/* Armour Damage */
4934 			-1,		/* Average Speed */
4935 			-1,		/* Field Charge Used */
4936 			-1,		/* Head Shot Percentage */
4937 			{		/* Padding */
4938 				0,0,0,0,0,0,0,0,0,0,
4939 				0,0,0,0,0,0,0,0,0,0,
4940 				0,0,0,0,0,0,0,0,0,0,
4941 				0,0,0,0,0,0,0,0,0,0,
4942 			},
4943 		},
4944 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4945 	},
4946 	{
4947 		{	/* Kens_Coop / Impossible */
4948 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4949 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4950 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4951 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4952 			-1,		/* Shots Fired */
4953 			-1,		/* Accuracy */
4954 			-1,		/* Spotted */
4955 			0,		/* Total Seconds (unsigned!) */
4956 			0,		/* Total Minutes (unsigned!) */
4957 			-1,		/* Total Hours */
4958 			0,		/* Cloaked Seconds */
4959 			0,		/* Cloaked Minutes */
4960 			-1,		/* Cloaked Hours */
4961 			-1,		/* Health Damage */
4962 			-1,		/* Armour Damage */
4963 			-1,		/* Average Speed */
4964 			-1,		/* Field Charge Used */
4965 			-1,		/* Head Shot Percentage */
4966 			{		/* Padding */
4967 				0,0,0,0,0,0,0,0,0,0,
4968 				0,0,0,0,0,0,0,0,0,0,
4969 				0,0,0,0,0,0,0,0,0,0,
4970 				0,0,0,0,0,0,0,0,0,0,
4971 			},
4972 		},
4973 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
4974 	},
4975 	{
4976 		{	/* Hive_Coop / Impossible */
4977 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
4978 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
4979 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
4980 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
4981 			-1,		/* Shots Fired */
4982 			-1,		/* Accuracy */
4983 			-1,		/* Spotted */
4984 			0,		/* Total Seconds (unsigned!) */
4985 			0,		/* Total Minutes (unsigned!) */
4986 			-1,		/* Total Hours */
4987 			0,		/* Cloaked Seconds */
4988 			0,		/* Cloaked Minutes */
4989 			-1,		/* Cloaked Hours */
4990 			-1,		/* Health Damage */
4991 			-1,		/* Armour Damage */
4992 			-1,		/* Average Speed */
4993 			-1,		/* Field Charge Used */
4994 			-1,		/* Head Shot Percentage */
4995 			{		/* Padding */
4996 				0,0,0,0,0,0,0,0,0,0,
4997 				0,0,0,0,0,0,0,0,0,0,
4998 				0,0,0,0,0,0,0,0,0,0,
4999 				0,0,0,0,0,0,0,0,0,0,
5000 			},
5001 		},
5002 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
5003 	},
5004 	{
5005 		{	/* Trapped_Coop / Impossible */
5006 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
5007 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
5008 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
5009 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
5010 			-1,		/* Shots Fired */
5011 			-1,		/* Accuracy */
5012 			-1,		/* Spotted */
5013 			0,		/* Total Seconds (unsigned!) */
5014 			0,		/* Total Minutes (unsigned!) */
5015 			-1,		/* Total Hours */
5016 			0,		/* Cloaked Seconds */
5017 			0,		/* Cloaked Minutes */
5018 			-1,		/* Cloaked Hours */
5019 			-1,		/* Health Damage */
5020 			-1,		/* Armour Damage */
5021 			-1,		/* Average Speed */
5022 			-1,		/* Field Charge Used */
5023 			-1,		/* Head Shot Percentage */
5024 			{		/* Padding */
5025 				0,0,0,0,0,0,0,0,0,0,
5026 				0,0,0,0,0,0,0,0,0,0,
5027 				0,0,0,0,0,0,0,0,0,0,
5028 				0,0,0,0,0,0,0,0,0,0,
5029 			},
5030 		},
5031 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
5032 	},
5033 	{
5034 		{	/* Als_DM_Coop / Impossible */
5035 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
5036 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
5037 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
5038 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
5039 			-1,		/* Shots Fired */
5040 			-1,		/* Accuracy */
5041 			-1,		/* Spotted */
5042 			0,		/* Total Seconds (unsigned!) */
5043 			0,		/* Total Minutes (unsigned!) */
5044 			-1,		/* Total Hours */
5045 			0,		/* Cloaked Seconds */
5046 			0,		/* Cloaked Minutes */
5047 			-1,		/* Cloaked Hours */
5048 			-1,		/* Health Damage */
5049 			-1,		/* Armour Damage */
5050 			-1,		/* Average Speed */
5051 			-1,		/* Field Charge Used */
5052 			-1,		/* Head Shot Percentage */
5053 			{		/* Padding */
5054 				0,0,0,0,0,0,0,0,0,0,
5055 				0,0,0,0,0,0,0,0,0,0,
5056 				0,0,0,0,0,0,0,0,0,0,
5057 				0,0,0,0,0,0,0,0,0,0,
5058 			},
5059 		},
5060 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
5061 	},
5062 	{
5063 		{	/* Jockey_Coop / Impossible */
5064 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures Killed */
5065 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Creatures decapitated*/
5066 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Trophies / Live Head Bites */
5067 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,},	/* Dead Head Bites */
5068 			-1,		/* Shots Fired */
5069 			-1,		/* Accuracy */
5070 			-1,		/* Spotted */
5071 			0,		/* Total Seconds (unsigned!) */
5072 			0,		/* Total Minutes (unsigned!) */
5073 			-1,		/* Total Hours */
5074 			0,		/* Cloaked Seconds */
5075 			0,		/* Cloaked Minutes */
5076 			-1,		/* Cloaked Hours */
5077 			-1,		/* Health Damage */
5078 			-1,		/* Armour Damage */
5079 			-1,		/* Average Speed */
5080 			-1,		/* Field Charge Used */
5081 			-1,		/* Head Shot Percentage */
5082 			{		/* Padding */
5083 				0,0,0,0,0,0,0,0,0,0,
5084 				0,0,0,0,0,0,0,0,0,0,
5085 				0,0,0,0,0,0,0,0,0,0,
5086 				0,0,0,0,0,0,0,0,0,0,
5087 			},
5088 		},
5089 		CHEATMODE_NONACTIVE,	/* Cheat to activate */
5090 	},
5091 	{
5092 		{	/* E3DemoSP / Impossible */
5093 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures Killed */
5094 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Creatures decapitated*/
5095 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Trophies / Live Head Bites */
5096 			{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},	/* Dead Head Bites */
5097 			-1,		/* Shots Fired */
5098 			-1,		/* Accuracy */
5099 			-1,		/* Spotted */
5100 			0,		/* Total Seconds (unsigned!) */
5101 			0,		/* Total Minutes (unsigned!) */
5102 			-1,		/* Total Hours */
5103 			0,		/* Cloaked Seconds */
5104 			0,		/* Cloaked Minutes */
5105 			-1,		/* Cloaked Hours */
5106 			-1,		/* Health Damage */
5107 			-1,		/* Armour Damage */
5108 			-1,		/* Average Speed */
5109 			-1,		/* Field Charge Used */
5110 			-1,		/* Head Shot Percentage */
5111 			{		/* Padding */
5112 				0,0,0,0,0,0,0,0,0,0,
5113 				0,0,0,0,0,0,0,0,0,0,
5114 				0,0,0,0,0,0,0,0,0,0,
5115 				0,0,0,0,0,0,0,0,0,0
5116 			}
5117 		},
5118 		CHEATMODE_NONACTIVE	/* Cheat to activate */
5119 	}
5120 }
5121 
5122 };
5123 
SetLevelToLoadForAlien(int episode)5124 void SetLevelToLoadForAlien(int episode)
5125 {
5126 	strcpy(LevelName,RifNamesForEnvironments[AlienEpisodes[episode]]);
5127 }
SetLevelToLoadForPredator(int episode)5128 void SetLevelToLoadForPredator(int episode)
5129 {
5130 	strcpy(LevelName,RifNamesForEnvironments[PredatorEpisodes[episode]]);
5131 }
SetLevelToLoadForMarine(int episode)5132 void SetLevelToLoadForMarine(int episode)
5133 {
5134 	strcpy(LevelName,RifNamesForEnvironments[MarineEpisodes[episode]]);
5135 }
5136 
SetLevelToLoadForMultiplayer(int episode)5137 void SetLevelToLoadForMultiplayer(int episode)
5138 {
5139 	//is this a custom level?
5140 	if(episode>=MAX_NO_OF_MULTIPLAYER_EPISODES)
5141 	{
5142 		//it certainly is
5143 		//(the game type sent passed to the function doesn't really matter , as long as it isn't NGT_COOP)
5144 		sprintf(LevelName,"Custom/%s",GetCustomMultiplayerLevelName(episode,NGT_Individual));
5145 	}
5146 	else
5147 	{
5148 		strcpy(LevelName,RifNamesForEnvironments[MultiplayerEpisodes[episode]]);
5149 	}
5150 }
SetLevelToLoadForCooperative(int episode)5151 void SetLevelToLoadForCooperative(int episode)
5152 {
5153 	//is this a custom level?
5154 	if(episode>=MAX_NO_OF_COOPERATIVE_EPISODES)
5155 	{
5156 		//it certainly is
5157 		sprintf(LevelName,"Custom/%s",GetCustomMultiplayerLevelName(episode,NGT_Coop));
5158 	}
5159 	else
5160 	{
5161 		strcpy(LevelName,RifNamesForEnvironments[CooperativeEpisodes[episode]]);
5162 	}
5163 }
5164 
SetLevelToLoad(enum AVP_ENVIRONMENT_ID env)5165 void SetLevelToLoad(enum AVP_ENVIRONMENT_ID env)
5166 {
5167 	strcpy(LevelName,RifNamesForEnvironments[env]);
5168 }
SetLevelToLoadForCheatMode(int environment)5169 void SetLevelToLoadForCheatMode(int environment)
5170 {
5171 	if (environment<=10)
5172 	{
5173 		SetLevelToLoadForMarine(environment);
5174 	}
5175 	else if (environment>=22)
5176 	{
5177 		SetLevelToLoadForAlien(environment-22);
5178 	}
5179 	else
5180 	{
5181 		SetLevelToLoadForPredator(environment-11);
5182 	}
5183 }
5184 
NumberForCurrentLevel(void)5185 int NumberForCurrentLevel(void) {
5186 
5187 	int a;
5188 
5189 	for (a=0; a<AVP_ENVIRONMENT_END_OF_MULTIPACK_LIST; a++) {
5190 		if (strcmp(LevelName,RifNamesForEnvironments[a])==0) {
5191 			return(a);
5192 		}
5193 	}
5194 
5195 	return(a);
5196 }
5197 
5198 
5199 
DoesNamedLevelExist(const char * level_name)5200 static BOOL DoesNamedLevelExist(const char* level_name)
5201 {
5202 	FILE *file_handle;
5203 	char filename[200];
5204 
5205 	sprintf(filename, "avp_rifs/%s.rif", level_name);
5206 
5207 	file_handle = OpenGameFile(filename, FILEMODE_READONLY, FILETYPE_PERM);
5208 	if(file_handle == NULL)	return FALSE;
5209 	fclose(file_handle);
5210 
5211 	return TRUE;
5212 }
5213 
DoesMultiplayerLevelExist(int level)5214 BOOL DoesMultiplayerLevelExist(int level)
5215 {
5216 	/*
5217 	Check that the level number is valid , and the level actually exists on
5218 	the players hard drive.
5219 	*/
5220 	if(level<0 || level>=MAX_NO_OF_MULTIPLAYER_EPISODES) return FALSE;
5221 	return DoesNamedLevelExist(RifNamesForEnvironments[MultiplayerEpisodes[level]]);
5222 
5223 }
5224 
DoesCooperativeLevelExist(int level)5225 BOOL DoesCooperativeLevelExist(int level)
5226 {
5227 	/*
5228 	Check that the level number is valid , and the level actually exists on
5229 	the players hard drive.
5230 	*/
5231 	if(level<0 || level>=MAX_NO_OF_COOPERATIVE_EPISODES) return FALSE;
5232 	return DoesNamedLevelExist(RifNamesForEnvironments[CooperativeEpisodes[level]]);
5233 }
5234