forked from BlueMountainsIO/OnsetLuaScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeapons.lua
More file actions
1229 lines (1164 loc) · 66.5 KB
/
Weapons.lua
File metadata and controls
1229 lines (1164 loc) · 66.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
--[[
This script contains the initial weapon configuration for the client.
Addtional configuration on the server is necessary.
]]--
AddEvent("OnPackageStart", function()
local Weapon = GetWeaponIdentifier():NewWeapon(1)
Weapon:SetWeaponType(0)
Weapon:SetWeaponSubType(0)
Weapon:SetWeaponModel(nil)
Weapon:SetStaticWeaponModel(nil)
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.0)
Weapon:SetUnequipTime(0.0)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(100.000000, 40.000000, 10.000000))
Weapon:SetCameraAimFoV(80.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(50.0)
Weapon:SetRecoil(0.0)
Weapon:SetCameraShake(0.0)
Weapon:SetCameraShakeCrouching(0.0)
Weapon:SetSpreadMin(0.0)
Weapon:SetSpreadMax(0.0)
Weapon:SetSpreadMovementModifier(0.0)
Weapon:SetSpreadCrouchingModifier(0.0)
Weapon:SetRateOfFire(120.0)
Weapon:SetMagazineModel(nil)
Weapon:SetMagazineSize(0)
Weapon:SetMagazineDropTime(0.0)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZFist_Cue"))
Weapon:SetShotAnimation(nil)
Weapon:SetShotAnimationTime(0.32)
Weapon:SetMuzzleFlash(nil)
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(nil)
Weapon:SetShellSmoke(nil)
Weapon:SetAttachmentLocationModifier(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetAttachmentRotationModifier(FRotator(0.000000, 0.000000, 0.000000))
Weapon:SetReloadAnimation(nil)
Weapon:SetReloadAnimationTime(0.0)
Weapon:SetCharacterReloadAnimation(nil)
Weapon:SetLeftHandIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Fist"))
Weapon:SetAllowAimWhileCrouching(false)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(nil)
Weapon:SetUnequipSound(nil)
Weapon:SetReloadStartSound(nil)
Weapon:SetReloadEndSound(nil)
Weapon:SetNoAmmoSound(nil)
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(2)
Weapon:SetWeaponType(1)
Weapon:SetWeaponSubType(1)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol01/SK_Pistol01"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol01/SM_Pistol01"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.23)
Weapon:SetUnequipTime(0.45)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(6500.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(90.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol01/SM_Pistol01_Mag"))
Weapon:SetMagazineSize(8)
Weapon:SetMagazineDropTime(0.32)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZPistol01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol01_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Pistol01"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.640888, 3.386111, 2.424174))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol01_Reload"))
Weapon:SetReloadAnimationTime(0.96)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/Handgun/A_HG_Reload"))
Weapon:SetLeftHandIKLocation(FVector(-2.000000, 8.000000, -5.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Pistol01"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(3)
Weapon:SetWeaponType(1)
Weapon:SetWeaponSubType(1)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol02/SK_Pistol02"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol02/SM_Pistol02"))
Weapon:SetMeshScale(FVector(1.100000, 1.100000, 1.100000))
Weapon:SetEquipTime(0.23)
Weapon:SetUnequipTime(0.45)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(7100.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(130.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol02/SM_Pistol02_Mag"))
Weapon:SetMagazineSize(10)
Weapon:SetMagazineDropTime(0.32)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZPistol02_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Pistol"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-9.619288, 3.477018, 1.700000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol_Reload"))
Weapon:SetReloadAnimationTime(0.96)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/Handgun/A_HG_Reload"))
Weapon:SetLeftHandIKLocation(FVector(-2.000000, 8.000000, -5.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Pistol02"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(4)
Weapon:SetWeaponType(1)
Weapon:SetWeaponSubType(1)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol03/SK_Pistol03"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol03/SM_Pistol03"))
Weapon:SetMeshScale(FVector(1.100000, 1.100000, 1.100000))
Weapon:SetEquipTime(0.23)
Weapon:SetUnequipTime(0.45)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(7400.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(150.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol03/SM_Pistol03_Mag"))
Weapon:SetMagazineSize(14)
Weapon:SetMagazineDropTime(0.32)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZPistol03_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol03_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Pistol"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-9.619288, 3.477018, 1.700000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol03_Reload"))
Weapon:SetReloadAnimationTime(0.96)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/Handgun/A_HG_Reload"))
Weapon:SetLeftHandIKLocation(FVector(-2.000000, 9.000000, -5.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Pistol03"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(5)
Weapon:SetWeaponType(1)
Weapon:SetWeaponSubType(1)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol04/SK_Pistol04"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol04/SM_Pistol04"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.23)
Weapon:SetUnequipTime(0.45)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(7000.0)
Weapon:SetRecoil(0.2)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(100.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Pistol04/SK_Pistol04_Mag"))
Weapon:SetMagazineSize(9)
Weapon:SetMagazineDropTime(0.32)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZPistol01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol04_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_DesertEagle"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.000000, 3.700000, 0.850000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Pistol04_Reload"))
Weapon:SetReloadAnimationTime(0.96)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/Handgun/A_HG_Reload"))
Weapon:SetLeftHandIKLocation(FVector(-2.000000, 8.000000, -5.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Pistol04"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(6)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(3)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Shotgun01/SK_Shotgun01"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Shotgun01/SM_Shotgun01"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(3000.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(1.0)
Weapon:SetSpreadMax(2.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.4)
Weapon:SetRateOfFire(50.0)
Weapon:SetMagazineModel(nil)
Weapon:SetMagazineSize(12)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZShotgun01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Shotgun01_Fire"))
Weapon:SetShotAnimationTime(1.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Shotgun01"))
Weapon:SetShellDelay(0.6)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_SG_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-5.915855, 5.356018, -5.895868))
Weapon:SetAttachmentRotationModifier(FRotator(10.565264, 87.000000, 12.500009))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Shotgun01_Reload"))
Weapon:SetReloadAnimationTime(3.5)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/Shotgun/A_SG_Reload"))
Weapon:SetLeftHandIKLocation(FVector(-38.000000, 9.500000, -6.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-39.000000, 13.000000, 3.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Shotgun01"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(nil)
Weapon:SetReloadEndSound(nil)
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(7)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(3)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Shotgun02/SK_Shotgun02"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Shotgun02/SM_Shotgun02"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(3100.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(1.0)
Weapon:SetSpreadMax(2.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.4)
Weapon:SetRateOfFire(60.0)
Weapon:SetMagazineModel(nil)
Weapon:SetMagazineSize(10)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZShotgun02_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Shotgun02_Fire"))
Weapon:SetShotAnimationTime(1.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Shotgun02"))
Weapon:SetShellDelay(0.6)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_SG_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-3.416316, 3.430033, 4.629849))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Shotgun02_Reload"))
Weapon:SetReloadAnimationTime(3.5)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/Shotgun/A_SG_Reload"))
Weapon:SetLeftHandIKLocation(FVector(-33.000000, 9.700000, -5.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-39.000000, 14.500000, 2.500000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Shotgun02"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(nil)
Weapon:SetReloadEndSound(nil)
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(8)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG01/SK_SMG01"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG01/SM_SMG01"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(7500.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.4)
Weapon:SetRateOfFire(500.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG01/SM_SMG01_Mag"))
Weapon:SetMagazineSize(40)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZSMG01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_SMG01_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_SMG01"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_SM_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-7.966965, 3.240994, 1.650000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_SMG01_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_SMG01"))
Weapon:SetLeftHandIKLocation(FVector(-28.000000, 7.700000, -1.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-30.000000, 12.500000, 8.800000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_SMG01"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(9)
Weapon:SetWeaponType(1)
Weapon:SetWeaponSubType(2)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG02/SK_SMG02"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG02/SM_SMG02"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.23)
Weapon:SetUnequipTime(0.45)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(6000.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.3)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.4)
Weapon:SetRateOfFire(550.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG02/SM_SMG02_Mag"))
Weapon:SetMagazineSize(50)
Weapon:SetMagazineDropTime(0.32)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZSMG02_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_SMG02_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_SMG02"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_SM_Shell"))
Weapon:SetShellSmoke(nil)
Weapon:SetAttachmentLocationModifier(FVector(-9.923766, 3.422809, 1.278691))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_SMG02_Reload"))
Weapon:SetReloadAnimationTime(2.16)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_SMG02"))
Weapon:SetLeftHandIKLocation(FVector(-8.000000, 10.000000, -5.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(0.000000, 0.000000, 0.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_SMG02"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZReloadSMG_Cue"))
Weapon:SetReloadEndSound(nil)
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(10)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG03/SK_SMG03"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG03/SM_SMG03"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(9000.0)
Weapon:SetRecoil(0.33)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(1.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(500.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/SMG03/SM_SMG03_Mag"))
Weapon:SetMagazineSize(35)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle04_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_SMG03_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle04"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_SM_Shell"))
Weapon:SetShellSmoke(nil)
Weapon:SetAttachmentLocationModifier(FVector(-7.910569, 4.222422, 1.833357))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_SMG03_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_SMG03"))
Weapon:SetLeftHandIKLocation(FVector(-29.000000, 8.500000, -1.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-29.000000, 12.700000, 5.500000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_SMG03"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(11)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle01/SK_Rifle01"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle01/SM_Rifle01"))
Weapon:SetMeshScale(FVector(1.050000, 1.050000, 1.050000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(10000.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(430.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle01/SM_Rifle01_Mag"))
Weapon:SetMagazineSize(31)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle01_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_M4A1"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.165839, 3.072069, 2.615357))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle01_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle01"))
Weapon:SetLeftHandIKLocation(FVector(-29.000000, 10.000000, -0.700000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-32.000000, 13.000000, 7.500000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle01"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(12)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle02/SK_Rifle02"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle02/SM_Rifle02"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(8700.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(450.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle02/SM_Rifle02_Mag"))
Weapon:SetMagazineSize(31)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle02_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle02_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle02"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.000000, 3.700000, 0.850000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle02_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle02"))
Weapon:SetLeftHandIKLocation(FVector(-32.500000, 8.000000, -3.500000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-35.000000, 11.800000, 5.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle02"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(13)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle02/SK_Rifle02_Gold"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle02/SM_Rifle02_Gold"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(8700.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(450.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle02/SM_Rifle02_Mag_Gold"))
Weapon:SetMagazineSize(31)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle02_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle02_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle02"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.000000, 3.700000, 0.850000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle02_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle02"))
Weapon:SetLeftHandIKLocation(FVector(-32.500000, 8.000000, -3.500000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-35.000000, 11.800000, 5.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle02"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(14)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle03/SK_Rifle03"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle03/SM_Rifle03"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(8800.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(2.0)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(440.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle03/SM_Rifle03_Mag"))
Weapon:SetMagazineSize(31)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle03_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle03_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle03"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.200000, 3.531074, 1.700000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle03_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle03"))
Weapon:SetLeftHandIKLocation(FVector(-29.000000, 8.500000, -1.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-33.000000, 12.500000, 6.200000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle03"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(15)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle04/SK_Rifle04"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle04/SM_Rifle04"))
Weapon:SetMeshScale(FVector(1.050000, 0.980000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(9800.0)
Weapon:SetRecoil(0.3)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(1.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(240.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle04/SM_Rifle04_Mag"))
Weapon:SetMagazineSize(20)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle04_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle04_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle04"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-7.569214, 3.578846, -0.280712))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711197, 10.886045))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle04_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle04"))
Weapon:SetLeftHandIKLocation(FVector(-27.000000, 8.500000, -3.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-29.000000, 12.700000, 5.500000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle04"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(16)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle05/SK_Rifle05"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle05/SM_Rifle05"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(9400.0)
Weapon:SetRecoil(0.37)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(1.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(600.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle05/SM_Rifle05_Mag"))
Weapon:SetMagazineSize(36)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle02_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle05_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle04"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.000000, 3.600000, 1.300000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711304, 10.800000))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle05_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle05"))
Weapon:SetLeftHandIKLocation(FVector(-30.000000, 9.500000, -2.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-30.000000, 13.500000, 7.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle05"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(17)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle06/SK_Rifle06"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle06/SM_Rifle06"))
Weapon:SetMeshScale(FVector(1.100000, 0.880000, 0.950000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(11500.0)
Weapon:SetRecoil(0.25)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(1.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(240.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle06/SM_Rifle06_Mag"))
Weapon:SetMagazineSize(20)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZSMG01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle06_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle04"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-7.205023, 3.339036, 2.000000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711304, 11.000000))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle06_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle06"))
Weapon:SetLeftHandIKLocation(FVector(-31.000000, 10.000000, -1.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-30.000000, 13.500000, 9.000000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle06"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(18)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle07/SK_Rifle07"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle07/SM_Rifle07"))
Weapon:SetMeshScale(FVector(0.910000, 0.910000, 0.910000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(9800.0)
Weapon:SetRecoil(0.31)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(1.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(450.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle07/SM_Rifle07_Mag"))
Weapon:SetMagazineSize(30)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle03_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle07_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle04"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.183026, 3.430278, 1.600000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 86.711304, 11.000000))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle07_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle07"))
Weapon:SetLeftHandIKLocation(FVector(-30.000000, 8.000000, -1.000000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-31.000000, 13.000000, 7.500000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle07"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(19)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle08/SK_Rifle08"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle08/SM_Rifle08"))
Weapon:SetMeshScale(FVector(0.980000, 0.980000, 0.980000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(170.000000, 65.000000, 14.000000))
Weapon:SetCameraAimFoV(65.0)
Weapon:SetAimBlendTime(0.35)
Weapon:SetRange(11000.0)
Weapon:SetRecoil(0.33)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.2)
Weapon:SetSpreadMax(1.5)
Weapon:SetSpreadMovementModifier(0.2)
Weapon:SetSpreadCrouchingModifier(-0.3)
Weapon:SetRateOfFire(550.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Rifle08/SM_Rifle08_Mag"))
Weapon:SetMagazineSize(20)
Weapon:SetMagazineDropTime(0.53)
Weapon:SetScope(false)
Weapon:SetShotSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRifle01_Cue"))
Weapon:SetShotAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle08_Fire"))
Weapon:SetShotAnimationTime(0.3)
Weapon:SetMuzzleFlash(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Weapons/PS_Rifle04"))
Weapon:SetShellDelay(0.0)
Weapon:SetProjectileShell(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Particles/Shells/P_AR_Shell"))
Weapon:SetShellSmoke(UParticleSystem.LoadFromAsset("/Game/Weapons/VFX/Impacts/Particles/P_ShellSmoke"))
Weapon:SetAttachmentLocationModifier(FVector(-8.000000, 4.500000, -0.350000))
Weapon:SetAttachmentRotationModifier(FRotator(10.565318, 85.000000, 10.800000))
Weapon:SetReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Weapons/Animations/A_Rifle08_Reload"))
Weapon:SetReloadAnimationTime(1.8)
Weapon:SetCharacterReloadAnimation(UAnimSequence.LoadFromAsset("/Game/Character/Animations/AssaultRifle/Reload/A_AR_Reload_Rifle08"))
Weapon:SetLeftHandIKLocation(FVector(-30.000000, 9.500000, -1.500000))
Weapon:SetLeftHandARIdleIKLocation(FVector(-31.000000, 13.000000, 6.500000))
Weapon:SetLeftHandARIdleIKLocationCrouching(FVector(-29.000000, 9.200000, 4.000000))
Weapon:SetHUDImage(UTexture2D.LoadFromAsset("/Game/Weapons/Images/T_Rifle08"))
Weapon:SetAllowAimWhileCrouching(true)
Weapon:SetZoomInSound(nil)
Weapon:SetZoomOutSound(nil)
Weapon:SetEquipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/Equip_Fabric_1_A_Cue"))
Weapon:SetUnequipSound(USoundCue.LoadFromAsset("/Game/Character/Sounds/Holster/UnEquip_Fabric_1_A_Cue1"))
Weapon:SetReloadStartSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZRemoveMag_Cue"))
Weapon:SetReloadEndSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZInsertMag_Cue"))
Weapon:SetNoAmmoSound(USoundCue.LoadFromAsset("/Game/Weapons/Sounds/Cues/HZEmptyMag_Cue"))
GetWeaponIdentifier():RegisterWeapon(Weapon)
Weapon = GetWeaponIdentifier():NewWeapon(20)
Weapon:SetWeaponType(2)
Weapon:SetWeaponSubType(4)
Weapon:SetWeaponModel(USkeletalMesh.LoadFromAsset("/Game/Weapons/Meshes/Sniper/SK_Sniper"))
Weapon:SetStaticWeaponModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Sniper/SM_Sniper"))
Weapon:SetMeshScale(FVector(1.000000, 1.000000, 1.000000))
Weapon:SetEquipTime(0.66)
Weapon:SetUnequipTime(0.66)
Weapon:SetAimWalkSpeed(170.0)
Weapon:SetCameraAimTargetOffset(FVector(320.000000, 18.000000, 0.000000))
Weapon:SetCameraAimFoV(72.0)
Weapon:SetAimBlendTime(0.2)
Weapon:SetRange(13000.0)
Weapon:SetRecoil(0.4)
Weapon:SetCameraShake(1.0)
Weapon:SetCameraShakeCrouching(0.5)
Weapon:SetSpreadMin(0.1)
Weapon:SetSpreadMax(1.0)
Weapon:SetSpreadMovementModifier(0.4)
Weapon:SetSpreadCrouchingModifier(-0.2)
Weapon:SetRateOfFire(60.0)
Weapon:SetMagazineModel(UStaticMesh.LoadFromAsset("/Game/Weapons/Meshes/Sniper/SM_Sniper_Mag"))