This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathglobal_functions_log.txt
1193 lines (1193 loc) · 20 KB
/
global_functions_log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
HudConsoleMsg 258
String msgText 128
HudConsoleTest 258
HudConsoleCleanup 258
stats 258
CName tag 128
tut_scr 258
CName scriptName 128
logtutorialqueue 258
tut_alch 258
tut_alch_mut 258
tut_arm_upg 258
tut_chd 258
tut_ch_m 258
ESkillColor color 1152
Bool equipSkillsFirst 1152
tut_craft 258
tut_ft 258
tut_inv 258
jour 258
tut_oil 258
tut_pot 258
tut_runes 258
StartNewGamePlus 258
String filename 128
Drunk 258
Bool enabled 1152
Cat 258
Bool enabled 1152
acticon 258
CName contentToActivate 128
GameTimeTest 258
settime 258
Int32 day 128
Int32 hour 1152
Int32 minute 1152
Int32 second 1152
wait 258
Int32 days 128
Int32 hours 1152
Int32 minutes 1152
Int32 seconds 1152
telltime 258
Pvd 258
String host 128
CollectSoundStates 258
SetSoundState 258
String stateGroupName 128
String stateName 128
soundSequenceOne 258
String sequenceName 128
String sequenceElementOne 128
soundSequenceTwo 258
String sequenceName 128
String sequenceElementOne 128
String sequenceElementTwo 128
soundSequenceThree 258
String sequenceName 128
String sequenceElementOne 128
String sequenceElementTwo 128
String sequenceElementThree 128
soundSequenceFour 258
String sequenceName 128
String sequenceElementOne 128
String sequenceElementTwo 128
String sequenceElementThree 128
String sequenceElementFour 128
soundSequenceFive 258
String sequenceName 128
String sequenceElementOne 128
String sequenceElementTwo 128
String sequenceElementThree 128
String sequenceElementFour 128
String sequenceElementFive 128
ForceActorLOD 258
Bool enable 128
Int32 LODIndex 1152
AT 258
ShowPinsFTInfo 258
ShowPathsInfo 258
Bool show 128
ShowQuestAgents 258
Bool show 128
ShowShopkeepers 258
Bool show 128
ShowPinsInfo 258
Int32 value 128
exportglobalmappins 258
exportentitymappins 258
useinteriors 258
Bool use 128
testFT 258
ShowKnownPins 258
Bool show 128
ShowPins 258
Bool show 128
ShowAllFT 258
Bool show 128
AllowFT 258
Bool allow 128
gotoWyzima 258
gotoNovigrad 258
gotoSkellige 258
gotoKaerMohren 258
gotoProlog 258
gotoPrologWinter 258
knowMapPin 258
CName tag 128
discoverMapPin 258
CName tag 128
disableMapPin 258
CName tag 128
UnlockAllAchievements 258
achieve 258
EAchievement a 128
achievei 258
Int32 i 128
printach 258
fb2 258
Int32 level 128
CName path 1152
GetExpPoints 258
Int32 points 128
toggleqt 258
togglejdbg 258
showQuestGroups 258
showLoadingScreenVideo 258
Bool show 128
testMonsterFind 258
testMonsterAdvanced 258
testVoiceMap 258
testVoiceJournal 258
testVoiceInventory 258
testVoiceCharacter 258
testVoiceAlchemy 258
hintloc 258
tutico 258
Int32 num 1152
testLocKeyboardKeyNames 258
reduceitems 258
fillChest 258
CName tag 1152
fillShop 258
CName tag 1152
ListHair 258
OpenDoor 258
CName doorTag 128
FixNoticeboard 258
CName boardTag 128
SetHostile 258
CName ownerName 128
GetAtt 258
CName actor1Name 128
GetActorAtt 258
CName actor1Name 128
CName actor2Name 128
GetActorAttGroup 258
CName actor1Name 128
addrepairkits 258
invdebug 258
tuten 258
Bool e 1152
testtut 258
CName scriptTag 1152
Float x 1152
Float y 1152
Float dur 1152
Bool dontEnableMessages 1152
Bool fullscreen 1152
Bool noHorResize 1152
testtutanim 258
dicoverMappin 258
CName pinTag 128
closeUI 258
itemquality 258
addFTmaps 258
mutagentest 258
readabook 258
CName bookName 128
changeweather 258
CName weatherName 128
showhudmess 258
String message 128
testreward 258
untut 258
eqbomb 258
CName itemName 128
Int32 slotID 1152
FD 258
Float n 128
Float f 128
Float dt 128
Float ds 128
dismember 258
pb_test 258
boat_destr 258
Int32 idxParts 128
Int32 index 128
test_wound 258
CName wound 128
test_scent 258
EFocusEffectActivationAction actionType 128
CName effectName 128
CName entityTag 128
Float duration 128
r4quest 258
r4ryanalchemy 258
r4inventory 258
FDON 258
FDOFF 258
FON 258
FOFF 258
FMON 258
FMOFF 258
fhint 258
med 258
Bool val 128
addSkillPoints 258
Int32 amount 128
medthr 258
Float val 128
staticcam 258
gamecam 258
Float blend 128
Ciri 258
Geralt 258
replaceplayer 258
String who 128
TM 258
Float hoursPerMinute 128
TON 258
TOFF 258
SetMove 258
Bool flag 128
autoloot 258
SM 258
GT 258
FM 258
testtutorial 258
CName msgName 128
Bool isNotHint 1152
Float duration 1152
printability 258
CName tag 128
DebugActivateJournal 258
CostPlayer 258
CostActor 258
CName tag 128
CostCombat 258
String combatName 1152
Float range 1152
ActivateTeleport 258
CName teleportTag 128
TestAb 258
addabl 258
CName ablName 128
targetaddabl 258
CName ablName 128
CName tag 128
rmvabl 258
CName ablName 128
DispSkeleton 258
CName entTag 128
DispSkeletonAll 258
CName entTag 128
DispSkeletonAxis 258
CName entTag 128
Hour 258
addIngr 258
ParryStart 258
Bool flag 128
PerformParry 258
Bool flag 128
addFocus 258
FixMovement 258
addbombs 258
Bool notInfinite 1152
freezetodeath 258
addbolts 258
Bool infinite 1152
addcraft 258
addsteelswords 258
addsteelswords2 258
addwolfdlc 258
Bool dontOpenInv 1152
addsilverswords 258
Bool dontOpenInv 1152
addsilverswords2 258
addcrossbows 258
addarmor 258
addarmor2 258
addpants 258
addboots 258
addgloves 258
addsets 258
addbooks 258
addlore 258
addlore2 258
addfood 258
adddrinks 258
Int32 cnt 1152
Bool noMenu 1152
addtrophies 258
climb 258
addmisc 258
addhorseitems 258
WitcherHairstyle 258
Int32 number 128
addupgrades 258
Int32 count 1152
Bool dontOpenUI 1152
addcraftingingre 258
Int32 quantity 1152
addCraftingItem 258
Int32 item 128
learnallschematics 258
addcraftedsteel 258
testrune 258
addcraftedsilver 258
addcraftedsteelrelic 258
addcraftedsilverrelic 258
addcraftedranged 258
addcraftedboots 258
addschematicsboots 258
addschematicspants 258
addschematicsgloves 258
addschematicsarmor 258
addschematicscomponents 258
addschematicsupgrades 258
addschematicsbolts 258
addmutagens 258
addmutageningredients 258
addmutagenrecipes 258
addrecipesoils 258
addrecipesbombs 258
addrecipespotions 258
addrecipespotions2 258
addherbs 258
Int32 cnt 1152
Bool noMenu 1152
addkeys 258
addvaluables 258
addjunk 258
addjunk2 258
addquestitems1 258
fff 258
Float x 128
addquestitems2 258
addquestitems3 258
addtreasurehuntitems 258
addcharacterdecorations 258
recycle 258
printinv 258
Bool onlyEquipped 1152
printinv2 258
printinv2item 258
Int32 index 128
SuppressReactions 258
Bool toggle 128
CName areaTag 128
dressmeup 258
Int32 i 128
IsInInterior 258
CName tag 128
undressme 258
Int32 i 128
healme 258
Int32 perc 1152
playstation 258
Bool e 128
hitme 258
Int32 d 128
Bool playHitAnim 1152
hitstamina 258
Int32 d 128
drinkpots 258
Int32 index 128
drinkpot 258
CName potionName 128
Int32 slot 128
addalchrec 258
CName nam 128
addalch2 258
addalch3 258
addalch 258
Int32 quantity 1152
craft 258
CName schemName 128
Int32 level 128
Int32 type 128
testuroboros 258
unequipitem 258
CName n 128
hideitem 258
removeitem 258
CName n 128
equipitem 258
CName n 128
useoil 258
CName n 128
Int32 type 1152
oilstats 258
oilstatsciri 258
testoil 258
testoilciri 258
playerkill 258
Bool ignoreImmortalityMode 1152
PlayerKinematic 258
PlayerDynamic 258
Float weight 1152
itemattributes 258
CName itemName 128
additem 258
CName itemName 128
Int32 count 1152
Bool equip 1152
printfact 258
String id 128
addfact 258
String factID 128
Int32 value 1152
Int32 expires 1152
removefact 258
String factID 128
klapaucius 258
addmoney 258
Int32 val 128
removemoney 258
Int32 val 128
fadein 258
pc_snaptonavdata 258
Bool val 128
god 258
god2 258
god3 258
eatapple 258
gametestdummy 258
spamplayerspeed 258
Bool enable 1152
learnskill 258
CName skillName 128
statstarget 258
statsplayer 258
logstats 258
BlockRageOnTarget 258
Bool lock 128
Float time 1152
blockabilityontarget 258
CName abilityName 128
testpause 258
testunpause 258
testlosscontroller 258
testregainedcontroller 258
dodge 258
dcc 258
spawnRaw 258
CName nam 128
Int32 quantity 1152
Float distance 1152
Bool isHostile 1152
spawnBoat000 258
spawn 258
CName nam 128
Int32 quantity 1152
Float distance 1152
Bool isHostile 1152
likeaboss 258
dismounttest 258
sfmh 258
panic 258
freeze 258
Int32 off 1152
Float range 1152
CName tag 1152
twt 258
twr 258
ut 258
setpri 258
CName tag 128
Int32 value 128
SimulateDLCsAvailable 258
Bool value 128
setcol 258
Bool value 128
addpotions 258
addoils 258
logskills 258
obstacle 258
addstat 258
EBaseCharacterStats stat 128
Float val 128
drainstat 258
EBaseCharacterStats stat 128
Float val 128
printbuffs 258
spawnenemy 258
ApproachAttack 258
Int32 i 128
TReset 258
HPM 258
Int32 hpm 128
weak 258
instantMount 258
CName vehicleTag 128
mute 258
unmute 258
arcam 258
imback 258
idoeverything 258
resurrect 258
cleardevelop 258
InputLogging 258
Bool val 128
testdur 258
incdur 258
CName item 128
Int32 val 128
decdur 258
Int32 val 128
buffme 258
EEffectType type 128
Float duration 1152
CName src 1152
addtorch 258
spawnpukespot 258
durr 258
spawnbarrel 258
spawnbarrels 258
spawnbees 258
damageboat 258
Float dmg 128
Int32 index 128
iu 258
RainStrength 258
MegaBomb 258
LogInputContext 258
ResetInput 258
spawnwh 258
AddAttackMult 258
FB 258
Int32 level 128
RunGossip 258
debugtp 258
omnom 258
Int32 level 1152
stagger 258
CName tag 128
printstate 258
SetEasy 258
SetMedium 258
SetHard 258
SetHardcore 258
difflevel 258
EDifficultyMode i 128
printdiff 258
BlockAb 258
CName actorTag 128
CName abilityName 128
criticalboy 258
ProfilerInit 258
Int32 bufforSize 128
ProfilerInitEx 258
Int32 bufforSize 128
Int32 bufforSignalsSize 128
ProfilerInitMB 258
Int32 bufforSize 128
ProfilerInitExMB 258
Int32 bufforSize 128
Int32 bufforSignalsSize 128
ProfilerScriptEnable 258
ProfilerScriptDisable 258
ProfilerStart 258
ProfilerStop 258
ProfilerStore 258
String profileName 128
ProfilerStoreDef 258
ProfilerStoreInstrFuncList 258
ProfilerStartCatchBr 258
ProfilerStopCatchBr 258
ProfilerSetTimeBr 258
String instrFuncName 128
Float time 128
Bool stopOnce 128
ProfilerSetHitCountBr 258
String instrFuncName 128
Int32 counter 128
ProfilerDisableTimeBr 258
String instrFuncName 128
ProfilerDisableHitCountBr 258
String instrFuncName 128
MoveToPlayer 258
Float speed 128
CName actorTag 1152
MoveToPoint 258
Float speed 128
CName waypointTag 128
CName actorTag 1152
MoveAlongPath 258
Float speed 128
CName pathTag 128
CName actorTag 1152
nopolice 258
testdrownerswimming 258
CName actorTag 1152
dismantle 258
Skate 258
AltCombatCamera 258
Bool b 128
tuthack 258
togglemenus 258
toggleinput 258
interiorcam 258
Bool b 128
slow 258
Float factor 128
shakeoffgeralt 258
immunity 258
CName effectName 128
CName actorTag 1152
CryStart 258
ultrafix 258
CryStop 258
skillblock 258
ESkill skill 128
Bool block 128
Float cooldown 1152
skilleq 258
ESkill skill 128
Int32 id 1152
Int32 level 1152
skilluneq 258
Int32 id 128
skilleqtest 258
printeqskills 258
faction 258
Int32 i 128
actionBlock 258
EInputActionBlock action 128
Bool block 128
bft 258
uft 258
eqmut 258
uneqmut 258
EEquipmentSlots slot 128
medit 258
AddMeteorItem 258
ToggleCloseCombat 258
Panther 258
Bool enable 128
SecondaryItemTest 258
horseLowAtt 258
Bool val 128
horseLocalSpace 258
Bool toggle 128
horseSimpleStamina 258
Bool toggle 128
showAttRange 258
CName attRangeName 128
CName actorTag 1152
TestAdjustMove 258
Bool val 128
fadeout 258
eredins 258
settlement 258
MovePlayerFwd 258
Float distance 128
Float speed 128
Bool drawSteel 1152
Bool drawSilver 1152
followNPC 258
magicBubble 258
Bool toggle 128
CName actorTag 1152
upperBody 258
CName actorTag 1152
shootTest 258
CName targetTag 128
Bool xbow 1152
CName actorTag 1152
stopUncon 258
CName actorTag 1152
PlayerDebug 258
hidetut 258
itemkey 258
String localizedString 128
CamOffsetCorrection 258
Bool enable 1152
playcam 258
CName val 128
printabs 258
CName tag 1152
Bool fromItems 1152
Bool attributes 1152
printabstarget 258
Bool fromItems 1152
Bool attributes 1152
damageitem 258
EEquipmentSlots slot 128
Float perc 128
alert 258
muttest 258
CName mutPotName 1152
EEquipmentSlots slot 1152
cage 258
snowball 258
CName actorTag 1152
addtelemetrytag 258
String tag 128
remtelemetrytag 258
String tag 128
giveset 258
CName val 128
shieldApp 258
CName tag 128
SwitchAttach 258
Bool attach 128
CName parentEntityTag 128
CName childEntityTag 128
CName attachSlot 1152
slide 258
climbJump 258
savefix 258
Int32 lockedNr 128
hl 258
Float x 128
Float y 128
Float w 128
Float h 128
imlerithSecondStage 258
CName tag 128
changeStyle 258
addHair1 258
addHair2 258
addHair3 258
addHairDLC1 258
addHairDLC2 258
addHairDLC3 258
addLightArmors 258
addMediumArmors 258
addHeavyArmors 258
addBearArmors 258
addLynxArmors 258
addGryphonArmors 258
addViperArmors 258
addRelicArmors 258
addAllArmors 258
addCasualArmors 258
addAllGloves 258
addAllBoots 258
addAllPants 258
addHorseArmors 258
AddAllThMaps 258
addAllSkills 258
Int32 val 128
Int32 level 1152
secretgwint 258
Int32 deckIndex 1152
setAIDeck 258
CName deckName 128
secretgwintAI 258
secretdeckbuilder 258
resetDecks 258
winGwint 258
Bool result 128
unlockDeck 258
Int32 val 128
addCard 258
Int32 cardID 128
givecards 258
CName val 128
specials 258
Bool off 1152
remactlocks 258
EInputActionBlock action 1152
Bool all 1152
testhorse 258
Int32 level 128
additemhorse 258
CName itemName 128
Int32 cnt 128
printhorse 258
testBeast 258
scaleBubble 258
CName magicBubbleTag 128
Float desiredScale 128
Float scaleDuration 128
eq_silver 258
Int32 sword_id 128
CName dir 1152
eq_steel 258
Int32 sword_id 128
CName dir 1152
eq_steel_unique 258
Int32 sword_id 128
CName dir 1152
eq_silver_unique 258
Int32 sword_id 128
CName dir 1152
activateAllGlossaryCharacters 258
activateAllGlossaryEncyclopedia 258
activateAllGlossaryStorybook 258
activateAllGlossaryBeastiary 258
testJournal 258
openHorseInv 258
dealDamageToBoat 258
Float dmg 128
Int32 index 128
Vector globalHitPos 1152
EmitReactionEvent 258
CName reactionEventName 128
Float lifetime 128
Float distance 128
Float interval 128
Int32 recipients 128
test61257 258
SetRunType 258
Int32 runType 128
testunlockachievement 258
CName achievementName 128
sysmsg 258
Bool hide 1152
sysmsgtst 258
addgwintcards 258
testnotify 258
testsaveind 258
questProgress 258
ResetManualCamera 258
activateGate 258
CName tag 128
statstolog 258
showSafeRect 258
Bool value 128
ClearAndStopCanFindPathEnemiesListUpdate 258
Bool flag 128
kinecton 258
kinectoff 258
testgameprogress 258
Float perc 128
makeitrain 258
stoprain 258
witchcraft 258
vloot 258
Bool listAllItemDefs 128
vrecycling 258
Bool listAllItemDefs 128
vcrafting 258
Bool listAllItemDefs 128
gather 258
Float range 1152
hackknockdown 258
SoundEvent 258
String soundName 128
zzz 258
InvertCamera 258
Bool invert 128
balanceadapt 258
SSPrintJsonObjectsMemoryUsage 258
ForceHolster 258
Bool instant 1152
StartRumble 258
Float lowFreq 128
Float highFreq 128
Float time 128
StopRumble 258
PrintRumble 258
StopSpecificRumble 258
Float lowFreq 128
Float highFreq 128
PrintIsSpecificRumbleActive 258
Float lowFreq 128
Float highFreq 128
PrintContext 258
ToggleCameraAutoRotation 258
inputTreshold 258
Float _inputTreshold 128
horseCamMode 258
Int32 mode 128
gwentTournamentCards 258
Int32 val 1152
horsePanic 258
showMouse 258
Bool value 128
primarec 258
primabooks 258
testMessage 258
printtags 258
CName actorTag 128
testLoc 258
String key 128
testRescale 258
testGamma 258
spawnt 258
Int32 template_nbr 128
Float distance 1152
TestCustomAction 258
CName actorTag 1152
execSetLight 258
Bool value 128
CName tag 128
execIsLightOn 258
CName tag 128
execSetInteractive 258
Bool value 128
CName tag 128
blockbeard 258
Bool block 1152
settattoo 258
Bool hasTattoo 128
shave 258
setbeard 258
Bool maxBeard 128
Int32 stage 1152
setcustomhead 258
CName head 128
Bool barberSystem 1152
removecustomhead 258
Bool barberSystem 1152
mimictest 258
CName animName 1152
headname 258
slotTest 258
XDPPrintUserStats 258
String statisticName 128
XDPPrintUserAchievement 258
String achievementName 128
NewGamePlus 258
Bool flag 128
ForceGraphicalLOD 258
Int32 lodLevel 128
ForceCombatMode 258
Bool flag 128
CreateReactionEvent 258
CName tag 128
CName eventName 128
Float lifetime 128
Float broadcastInterval 128
RestoreHorseManager 258
appearance 258
CName app 128
proxy 258
attitude 258
CName tag 128
Bool flag 128
EnablePCMode 258
Bool flag 128
EnableLog 258
Bool enable 128
HideHorse 258
KillHorse 258
PerformCounter 258
Bool flag 128
Ragdoll 258
CName tag 128
OpenRift 258
CName tag 128
CloseRift 258
CName tag 128
EnableSnapToNavMesh 258
CName source 128
Bool enable 128
PlayCamAnim 258
Int32 i 1152
dbgskillslots 258
ToggleAll 258
Bool toggle 128
DumpCommunityAgents 258
ForceDismember 258
Bool b 128
Int32 chance 1152
CName n 1152
Bool e 1152
ForceFinisher 258
Bool b 128
CName n 1152
Bool rightStance 1152
testpest 258
reptest 258
Int32 i 128
reputationpoints 258
Int32 i 128
addreppoints 258
Int32 i 128
Int32 points 128
resetnegativepoints 258
Int32 i 128
bonusvalue 258
Int32 i 128
HideLayer 258
String layerName 128
mainmenu 258
exePopup 258
testBlockPrep 258
Bool block 128
testBlockMap 258
Bool block 128
testBlockInventory 258
Bool block 128
testBlockJournal 258
Bool block 128
testBlockCharacter 258