-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathscript.lua
More file actions
2525 lines (2473 loc) · 96.1 KB
/
script.lua
File metadata and controls
2525 lines (2473 loc) · 96.1 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
--[[
____________________________________________________________________________________________
/BEFORE USING A MACRO IN RUST, YOU NEED TO SELECT, WHAT YOU WANT TO PLAY./
/CHOOSE ONE OF THE GIVING SENSITIVITYS AND COPY & PASTE THEM IN RUST F1 CONSOLE./
____________________________________________________________________________________________
VARIANT 1:
/ADS-SENSITIVITY/ -> input.ads_sensitivity 0.8333
/SENSITIVITY/ -> YOU CAN SET YOUR OWN SENSITIVITY. BEST SENS TO USE IS 0.4 - 0.6. YOU HAVE TO GO TO LINE: 146 TO SETUP THE SENSITIVITY/
/FOV/ -> YOU CAN SET YOUR OWN FOV. YOU HAVE TO GOT TO LINE: 147/
____________________________________________________________________________________________
/SUPPORTED WINDOWS VERSIONS: WIN11, WIN10, WIN8, WIN7 (ver. 2H22 and lower)./
INSTRUCTION VIDEO: https://streamable.com/bc8xmm
____________________________________________________________________________________________
/FOR CORRECT WORK /RAPIDFIRE/ FOR SEMI-AUTOMATIC RIFLE/PISTOL, M92, M39, REVOLVER AND PHYTON/
/YOU HAVE TO GO IN RUST TO THE "CONTROLS" TAB AND BIND PRIMARY ATTACK/
/ON PAUSE/BREAK AND MOUSE0 /LEFTCLICK/
IT HAS TO LOOK EXACTLY THIS: https://i.imgur.com/nc947Nf.png
____________________________________________________________________________________________
/YOU HAVE TO BIND THE SCRIPTS ON A HOTKEY OF YOUR MOUSE./
/JUST SWITCH THE "nil" TO YOUR SELECTED MOUSE BUTTON./
/IF YOU WANT TO USE ATTACHMENTS THEN CHANGE THE "false" to "true"./
/DONT FORGET TO SAVE THE SCRIPT WITH "CTRL + S"./
/EXAMPLE: local AK47_2 = 5 <- MAIN GUN
/EXAMPLE: local AK47_2_HOLOSIGHT = true <- IF YOU WANT TO ADD ATTACHMENTS THEN SWITCH THE /false/ to /true/
____________________________________________________________________________________________
/IF YOU NEED HELP THEN FEEL FREE TO CONTACT ME!/
]]
--GUNS:
-----------------------------------------------------------------
---------------------------AK47----------------------------------
local AK47_2 = 4
local AK47_2_HOLOSIGHT = false
local AK47_2_X8_SCOPE = false
local AK47_2_X16_SCOPE = false
local AK47_2_HANDMADESIGHT = false
local AK47_2_SILENCER = false
local AK47_2_MUZZLEBOOST = false
-----------------------------------------------------------------
---------------------------LR300---------------------------------
local LR300_2 = nil
local LR300_2_HOLOSIGHT = false
local LR300_2_X8_SCOPE = false
local LR300_2_X16_SCOPE = false
local LR300_2_HANDMADESIGHT = false
local LR300_2_SILENCER = false
local LR300_2_MUZZLEBOOST = false
-----------------------------------------------------------------
---------------------------MP5A4---------------------------------
local MP5A4_2 = nil
local MP5A4_2_HOLOSIGHT = false
local MP5A4_2_X8_SCOPE = false
local MP5A4_2_X16_SCOPE = false
local MP5A4_2_HANDMADESIGHT = false
local MP5A4_2_SILENCER = false
local MP5A4_1_MUZZLEBOOST = false
local MP5A4_2_MUZZLEBOOST = false
-----------------------------------------------------------------
---------------------------THOMPSON------------------------------
local THOMPSON_2 = nil
local THOMPSON_2_HOLOSIGHT = false
local THOMPSON_2_X8_SCOPE = false
local THOMPSON_2_X16_SCOPE = false
local THOMPSON_2_HANDMADESIGHT = false
local THOMPSON_2_SILENCER = false
local THOMPSON_2_MUZZLEBOOST = false
-----------------------------------------------------------------
---------------------------SMG-----------------------------------
local SMG_2 = nil
local SMG_2_HOLOSIGHT = false
local SMG_2_X8_SCOPE = false
local SMG_2_X16_SCOPE = false
local SMG_2_HANDMADESIGHT = false
local SMG_2_SILENCER = false
local SMG_2_MUZZLEBOOST = false
-----------------------------------------------------------------
---------------------------HMLMG---------------------------------
local HMLMG_2 = nil
local HMLMG_2_HOLOSIGHT = false
local HMLMG_2_X8_SCOPE = false
local HMLMG_2_X16_SCOPE = false
local HMLMG_2_HANDMADESIGHT = false
local HMLMG_2_SILENCER = false
-----------------------------------------------------------------
---------------------------M249----------------------------------
local M249_2 = nil
local M249_2_HOLOSIGHT = false
local M249_2_X8_SCOPE = false
local M249_2_X16_SCOPE = false
local M249_2_HANDMADESIGHT = false
local M249_2_SILENCER = false
-----------------------------------------------------------------
---------------------------SAR-----------------------------------
local SAR_2 = nil
local SAR_2_HOLOSIGHT = false
local SAR_2_X8_SCOPE = false
local SAR_2_X16_SCOPE = false
local SAR_2_HANDMADESIGHT = false
local SAR_2_SILENCER = false
-----------------------------------------------------------------
---------------------------M39-----------------------------------
local M39_2 = nil
local M39_2_HOLOSIGHT = false
local M39_2_X8_SCOPE = false
local M39_2_X16_SCOPE = false
local M39_2_HANDMADESIGHT = false
local M39_2_SILENCER = false
-----------------------------------------------------------------
---------------------------SAP-----------------------------------
local SAP_2 = nil
local SAP_2_HOLOSIGHT = false
local SAP_2_X8_SCOPE = false
local SAP_2_X16_SCOPE = false
local SAP_2_HANDMADESIGHT = false
local SAP_2_SILENCER = false
-----------------------------------------------------------------
---------------------------M92-----------------------------------
local M92_2 = nil
local M92_2_HOLOSIGHT = false
local M92_2_X8_SCOPE = false
local M92_2_X16_SCOPE = false
local M92_2_HANDMADESIGHT = false
local M92_2_SILENCER = false
-----------------------------------------------------------------
---------------------------PYTHON--------------------------------
local PYTHON_2 = 5
local PYTHON_2_HOLOSIGHT = false
local PYTHON_2_X8_SCOPE = false
local PYTHON_2_X16_SCOPE = false
local PYTHON_2_HANDMADESIGHT = false
-----------------------------------------------------------------
---------------------------REVOLVER------------------------------
local REVOLVER_1 = nil
local REVOLVER_1_SILENCER = false
-----------------------------------------------------------------
--SETTINGS-------------------------------------------------------
local SENSITIVITY = 0.4 --set your own sensitivity
local FOV = 78 --set your own fov
local door_unlocker = nil --switch the "nil" to your preferred mouse button
local key_code = 0 --set your door code here: EXAMPLE: 1234
-----------------------------------------------------------------
--EXTRA_PART-----------------------------------------------------
function IsLeftNotPressed()return not IsMouseButtonPressed(1)end
function IsRightNotPressed()return not IsMouseButtonPressed(3)end
function sasd2441(a)local b=GetRunningTime()+a;repeat until GetRunningTime()>b-1 end
function round(x) return x>=0 and math.floor(x+0.5) or math.ceil(x-0.5) end
function Smoothing(a,b,c)x_=0;y_=0;t_=0;for d=1,a do xI=round(d*b/a)yI=round(d*c/a)tI=d*a/a;MoveMouseRelative(round(xI-x_),round(yI-y_))sasd2441(tI-t_)x_=xI;y_=yI;t_=tI end end
AK47_OFFSET_X = {"0", "0.196287718722224", "0.365188622188568", "0.508115456226468", "0.626480966663358", "0.721697899326678", "0.795179000043864", "0.848337014642358", "0.882584688949584", "0.899334768792984", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9", "0.9"}
AK47_OFFSET_Y = {"-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35", "-1.35"}
AK47_RPM = 133.3
AK47_BULLETS = #AK47_OFFSET_Y
LR300_OFFSET_X = {"0", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276", "0.017410668448276"}
LR300_OFFSET_Y = {"-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552", "-1.16853173596552"}
LR300_RPM = 120
LR300_BULLETS = #LR300_OFFSET_Y
MP5A4_OFFSET_X = {"0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0"}
MP5A4_OFFSET_Y = {"-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64", "-0.64"}
MP5A4_RPM = 100
MP5A4_BULLETS = #MP5A4_OFFSET_Y
THOMPSON_OFFSET_X = {"-0.085809965", "0.006514516", "0.007734019", "0.048618872", "0.078056445", "-0.066088665", "0.067429669", "0.02780332", "0.133849085", "0.025990565", "-0.061993655", "0.019162548", "0.061810655", "-0.092478981", "0.021123053", "-0.08800972", "-0.201583254", "-0.0398146", "0.003178508"}
THOMPSON_OFFSET_Y = {"-0.510477526", "-0.507449769", "-0.51212903", "-0.518510046", "-0.491714729", "-0.495322988", "-0.506388516", "-0.474468436", "-0.47605394", "-0.502083505", "-0.498620747", "-0.477474444", "-0.485339713", "-0.496579241", "-0.496766742", "-0.52010755", "-0.49584349", "-0.50812102", "-0.485279713"}
THOMPSON_RPM = 129.87013
THOMPSON_BULLETS = #THOMPSON_OFFSET_Y
SMG_OFFSET_X = {"-0.085810521", "0.006513752", "0.007734002", "0.048618762", "0.07805627", "-0.066088517", "0.067429517", "0.027803257", "0.133849533", "0.025989756", "-0.061993515", "0.019163255", "0.061809765", "-0.092478773", "0.021123005", "-0.088008772", "-0.2015828", "-0.03981451", "0.003178501", "0.010626753", "-0.007430252", "0.033057008", "-0.032390258"}
SMG_OFFSET_Y = {"-0.510476378", "-0.507447877", "-0.512127878", "-0.51850813", "-0.491712873", "-0.495321874", "-0.506387377", "-0.474467369", "-0.476052869", "-0.502083126", "-0.498620375", "-0.477473369", "-0.485338621", "-0.496578124", "-0.496765624", "-0.52010563", "-0.495841624", "-0.508119877", "-0.485277871", "-0.413580103", "-0.414059354", "-0.433270608", "-0.41218510"}
SMG_RPM = 100
SMG_BULLETS = #SMG_OFFSET_Y
HMLMG_OFFSET_X = {"0", "-0.536458333", "-0.536458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333", "-0.556458333"}
HMLMG_OFFSET_Y = {"-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375", "-1.047375"}
HMLMG_RPM = 125
HMLMG_BULLETS = #HMLMG_OFFSET_Y
M249_OFFSET_X = {"0", "0.39375", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525", "0.525"}
M249_OFFSET_Y = {"-0.81", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800", "-1.0800"}
M249_RPM = 120
M249_BULLETS = #M249_OFFSET_Y
SAR_OFFSET_X = {"0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"}
SAR_OFFSET_Y = {"-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775", "-0.8775"}
SAR_RPM = 174.927114
SAR_BULLETS = #SAR_OFFSET_Y
M39_OFFSET_X = {"0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5", "0.5"}
M39_OFFSET_Y = {"-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95", "-0.95"}
M39_RPM = 174.927114
M39_BULLETS = #M39_OFFSET_Y
SAP_OFFSET_X = {"0", "0", "0", "0", "0", "0", "0", "0", "0", "0"}
SAP_OFFSET_Y = {"-0.6075", "-0.6075", "-0.6075", "-0.6075", "-0.6075", "-0.6075", "-0.6075", "-0.6075", "-0.6075", "-0.6075"}
SAP_RPM = 174.927114
SAP_BULLETS = #SAP_OFFSET_Y
M92_OFFSET_X = {"0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"}
M92_OFFSET_Y = {"-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9", "-1.9"}
M92_RPM = 150
M92_BULLETS = #M92_OFFSET_Y
PYTHON_OFFSET_X = {"0", "0", "0", "0", "0", "0"}
PYTHON_OFFSET_Y = {"-3.5", "-3.5", "-3.5", "-3.5", "-3.5", "-3.5"}
PYTHON_RPM = 150
PYTHON_BULLETS = #PYTHON_OFFSET_Y
REVOLVER_OFFSET_X = {"0", "0", "0", "0", "0", "0", "0", "0"}
REVOLVER_OFFSET_Y = {"-1.1", "-1.1", "-1.1", "-1.1", "-1.1", "-1.1", "-1.1", "-1.1"}
REVOLVER_RPM = 174.927114
REVOLVER_BULLETS = #REVOLVER_OFFSET_Y
screenMultiplier = -0.03*(SENSITIVITY*3)*(FOV/100)
StandMultiplier = 1.89
StandMultiplier_HMLMG = 2
StandMultiplier_M2 = 1.93
scope_1_AK47_1 = 1
scope_1_AK47_2 = 1
scope_1_AK47_3 = 1
scope_1_AK47_4 = 1
barrel_1_AK47_1 = 1
barrel_1_AK47_2 = 1
if AK47_1_HOLOSIGHT == true then
scope_1_AK47_1 = 1.2
end
if AK47_1_X8_SCOPE == true then
scope_1_AK47_2 = 6.9
end
if AK47_1_X16_SCOPE == true then
scope_1_AK47_3 = 13.5
end
if AK47_1_HANDMADESIGHT == true then
scope_1_AK47_4 = 0.8
end
if AK47_1_SILENCER == true then
barrel_1_AK47_1 = 1
end
if AK47_1_MUZZLEBOOST == true then
barrel_1_AK47_2 = 0.9
end
scope_1_LR300_1 = 1
scope_1_LR300_2 = 1
scope_1_LR300_3 = 1
scope_1_LR300_4 = 1
barrel_1_LR300_1 = 1
barrel_1_LR300_2 = 1
if LR300_1_HOLOSIGHT == true then
scope_1_LR300_1 = 1.2
end
if LR300_1_X8_SCOPE == true then
scope_1_LR300_2 = 6.75
end
if LR300_1_X16_SCOPE == true then
scope_1_LR300_3 = 13.5
end
if LR300_1_HANDMADESIGHT == true then
scope_1_LR300_4 = 0.8
end
if LR300_1_SILENCER == true then
barrel_1_LR300_1 = 1
end
if LR300_1_MUZZLEBOOST == true then
barrel_1_LR300_2 = 0.9
end
scope_1_MP5A4_1 = 1
scope_1_MP5A4_2 = 1
scope_1_MP5A4_3 = 1
scope_1_MP5A4_4 = 1
barrel_1_MP5A4_1 = 1
if MP5A4_1_HOLOSIGHT == true then
scope_1_MP5A4_1 = 1.2
end
if MP5A4_1_X8_SCOPE == true then
scope_1_MP5A4_2 = 6.75
end
if MP5A4_1_X16_SCOPE == true then
scope_1_MP5A4_3 = 13.5
end
if MP5A4_1_HANDMADESIGHT == true then
scope_1_MP5A4_4 = 0.8
end
if MP5A4_1_SILENCER == true then
barrel_1_MP5A4_1 = 1
end
if MP5A4_1_MUZZLEBOOST == true then
barrel_1_MP5A4_2 = 0.9
end
scope_1_THOMPSON_1 = 1
scope_1_THOMPSON_2 = 1
scope_1_THOMPSON_3 = 1
scope_1_THOMPSON_4 = 1
barrel_1_THOMPSON_1 = 1
barrel_1_THOMPSON_2 = 1
if THOMPSON_1_HOLOSIGHT == true then
scope_1_THOMPSON_1 = 1.5
end
if THOMPSON_1_X8_SCOPE == true then
scope_1_THOMPSON_2 = 7.75
end
if THOMPSON_1_X16_SCOPE == true then
scope_1_THOMPSON_3 = 15.5
end
if THOMPSON_1_HANDMADESIGHT == true then
scope_1_THOMPSON_4 = 0.8
end
if THOMPSON_1_SILENCER == true then
if THOMPSON_1_HOLOSIGHT == true then
barrel_1_THOMPSON_1 = 0.9
else
barrel_1_THOMPSON_1 = 1
end
end
if THOMPSON_1_MUZZLEBOOST == true then
barrel_1_THOMPSON_2 = 0.9
end
scope_1_SMG_1 = 1
scope_1_SMG_2 = 1
scope_1_SMG_3 = 1
scope_1_SMG_4 = 1
barrel_1_SMG_1 = 1
barrel_1_SMG_2 = 1
if SMG_1_HOLOSIGHT == true then
scope_1_SMG_1 = 1.5
end
if SMG_1_X8_SCOPE == true then
scope_1_SMG_2 = 7.75
end
if SMG_1_X16_SCOPE == true then
scope_1_SMG_3 = 15.5
end
if SMG_1_HANDMADESIGHT == true then
scope_1_SMG_4 = 0.8
end
if SMG_1_SILENCER == true then
if SMG_1_HOLOSIGHT == true then
barrel_1_SMG_1 = 0.9
else
barrel_1_SMG_1 = 1
end
end
if SMG_1_MUZZLEBOOST == true then
barrel_1_SMG_2 = 0.9
end
scope_1_HMLMG_1 = 1
scope_1_HMLMG_2 = 1
scope_1_HMLMG_3 = 1
scope_1_HMLMG_4 = 1
barrel_1_HMLMG_1 = 1
if HMLMG_1_HOLOSIGHT == true then
scope_1_HMLMG_1 = 1.2
end
if HMLMG_1_X8_SCOPE == true then
scope_1_HMLMG_2 = 7
end
if HMLMG_1_X16_SCOPE == true then
scope_1_HMLMG_3 = 13.5
end
if HMLMG_1_HANDMADESIGHT == true then
scope_1_HMLMG_4 = 0.8
end
if HMLMG_1_SILENCER == true then
barrel_1_HMLMG_1 = 1
end
scope_1_M249_1 = 1
scope_1_M249_2 = 1
scope_1_M249_3 = 1
scope_1_M249_4 = 1
barrel_1_M249_1 = 1
if M249_1_HOLOSIGHT == true then
scope_1_M249_1 = 1.2
end
if M249_1_X8_SCOPE == true then
scope_1_M249_2 = 7
end
if M249_1_X16_SCOPE == true then
scope_1_M249_3 = 13.5
end
if M249_1_HANDMADESIGHT == true then
scope_1_M249_4 = 0.8
end
if M249_1_SILENCER == true then
barrel_1_M249_1 = 1
end
scope_1_SAR_1 = 1
scope_1_SAR_2 = 1
scope_1_SAR_3 = 1
scope_1_SAR_4 = 1
barrel_1_SAR_1 = 1
if SAR_1_HOLOSIGHT == true then
scope_1_SAR_1 = 1.2
end
if SAR_1_X8_SCOPE == true then
scope_1_SAR_2 = 6.75
end
if SAR_1_X16_SCOPE == true then
scope_1_SAR_3 = 13.5
end
if SAR_1_HANDMADESIGHT == true then
scope_1_SAR_4 = 0.8
end
if SAR_1_SILENCER == true then
barrel_1_SAR_1 = 1
end
scope_1_M39_1 = 1
scope_1_M39_2 = 1
scope_1_M39_3 = 1
scope_1_M39_4 = 1
barrel_1_M39_1 = 1
if M39_1_HOLOSIGHT == true then
scope_1_M39_1 = 1.5
end
if M39_1_X8_SCOPE == true then
scope_1_M39_2 = 9.75
end
if M39_1_X16_SCOPE == true then
scope_1_M39_3 = 13.5
end
if M39_1_HANDMADESIGHT == true then
scope_1_M39_4 = 0.9
end
if M39_1_SILENCER == true then
barrel_1_M39_1 = 1
end
scope_1_SAP_1 = 1
scope_1_SAP_2 = 1
scope_1_SAP_3 = 1
scope_1_SAP_4 = 1
barrel_1_SAP_1 = 1
if SAP_1_HOLOSIGHT == true then
scope_1_SAP_1 = 1.5
end
if SAP_1_X8_SCOPE == true then
scope_1_SAP_2 = 9.75
end
if SAP_1_X16_SCOPE == true then
scope_1_SAP_3 = 13.5
end
if SAP_1_HANDMADESIGHT == true then
scope_1_SAP_4 = 0.8
end
if SAP_1_SILENCER == true then
barrel_1_SAP_1 = 1
end
scope_1_M92_1 = 1
scope_1_M92_2 = 1
scope_1_M92_3 = 1
scope_1_M92_4 = 1
barrel_1_M92_1 = 1
if M92_1_HOLOSIGHT == true then
scope_1_M92_1 = 1.7
end
if M92_1_X8_SCOPE == true then
scope_1_M92_2 = 9.75
end
if M92_1_X16_SCOPE == true then
scope_1_M92_3 = 13.5
end
if M92_1_HANDMADESIGHT == true then
scope_1_M92_4 = 0.8
end
if M92_1_SILENCER == true then
barrel_1_M92_1 = 1
end
scope_1_PYTHON_1 = 1
scope_1_PYTHON_2 = 1
scope_1_PYTHON_3 = 1
scope_1_PYTHON_4 = 1
barrel_1_PYTHON_1 = 1
if PYTHON_1_HOLOSIGHT == true then
scope_1_PYTHON_1 = 1.5
end
if PYTHON_1_X8_SCOPE == true then
scope_1_PYTHON_2 = 9.75
end
if PYTHON_1_X16_SCOPE == true then
scope_1_PYTHON_3 = 13.5
end
if PYTHON_1_HANDMADESIGHT == true then
scope_1_PYTHON_4 = 0.8
end
scope_2_AK47_1 = 1
scope_2_AK47_2 = 1
scope_2_AK47_3 = 1
scope_2_AK47_4 = 1
barrel_2_AK47_1 = 1
barrel_2_AK47_2 = 1
if AK47_2_HOLOSIGHT == true then
scope_2_AK47_1 = 1.2
end
if AK47_2_X8_SCOPE == true then
scope_2_AK47_2 = 6.9
end
if AK47_2_X16_SCOPE == true then
scope_2_AK47_3 = 13.5
end
if AK47_2_HANDMADESIGHT == true then
scope_2_AK47_4 = 0.8
end
if AK47_2_SILENCER == true then
barrel_2_AK47_1 = 1
end
if AK47_2_MUZZLEBOOST == true then
barrel_2_AK47_2 = 0.9
end
scope_2_LR300_1 = 1
scope_2_LR300_2 = 1
scope_2_LR300_3 = 1
scope_2_LR300_4 = 1
barrel_2_LR300_1 = 1
if LR300_2_HOLOSIGHT == true then
scope_2_LR300_1 = 1.2
end
if LR300_2_X8_SCOPE == true then
scope_2_LR300_2 = 6.75
end
if LR300_2_X16_SCOPE == true then
scope_2_LR300_3 = 13.5
end
if LR300_2_HANDMADESIGHT == true then
scope_2_LR300_4 = 0.8
end
if LR300_2_SILENCER == true then
barrel_2_LR300_1 = 1
end
if LR300_2_MUZZLEBOOST == true then
barrel_2_LR300_2 = 0.9
end
scope_2_MP5A4_1 = 1
scope_2_MP5A4_2 = 1
scope_2_MP5A4_3 = 1
scope_2_MP5A4_4 = 1
barrel_2_MP5A4_1 = 1
if MP5A4_2_HOLOSIGHT == true then
scope_2_MP5A4_1 = 1.2
end
if MP5A4_2_X8_SCOPE == true then
scope_2_MP5A4_2 = 6.75
end
if MP5A4_2_X16_SCOPE == true then
scope_2_MP5A4_3 = 13.5
end
if MP5A4_2_HANDMADESIGHT == true then
scope_2_MP5A4_4 = 0.8
end
if MP5A4_2_SILENCER == true then
barrel_2_MP5A4_1 = 1
end
if MP5A4_2_MUZZLEBOOST == true then
barrel_2_MP5A4_2 = 0.9
end
scope_2_THOMPSON_1 = 1
scope_2_THOMPSON_2 = 1
scope_2_THOMPSON_3 = 1
scope_2_THOMPSON_4 = 1
barrel_2_THOMPSON_1 = 1
barrel_2_THOMPSON_2 = 1
if THOMPSON_2_HOLOSIGHT == true then
scope_2_THOMPSON_1 = 1.5
end
if THOMPSON_2_X8_SCOPE == true then
scope_2_THOMPSON_2 = 7.75
end
if THOMPSON_2_X16_SCOPE == true then
scope_2_THOMPSON_3 = 15.5
end
if THOMPSON_2_HANDMADESIGHT == true then
scope_2_THOMPSON_4 = 0.8
end
if THOMPSON_2_SILENCER == true then
if THOMPSON_2_HOLOSIGHT == true then
barrel_2_THOMPSON_1 = 0.9
else
barrel_2_THOMPSON_1 = 1
end
end
if THOMPSON_1_MUZZLEBOOST == true then
barrel_1_THOMPSON_2 = 0.9
end
scope_2_SMG_1 = 1
scope_2_SMG_2 = 1
scope_2_SMG_3 = 1
scope_2_SMG_4 = 1
barrel_2_SMG_1 = 1
if SMG_2_HOLOSIGHT == true then
scope_2_SMG_1 = 1.5
end
if SMG_2_X8_SCOPE == true then
scope_2_SMG_2 = 7.75
end
if SMG_2_X16_SCOPE == true then
scope_2_SMG_3 = 15.5
end
if SMG_2_HANDMADESIGHT == true then
scope_2_SMG_4 = 0.8
end
if SMG_2_SILENCER == true then
if SMG_2_HOLOSIGHT == true then
barrel_2_SMG_1 = 0.9
else
barrel_2_SMG_1 = 1
end
end
if SMG_2_MUZZLEBOOST == true then
barrel_2_SMG_2 = 0.9
end
scope_2_HMLMG_1 = 1
scope_2_HMLMG_2 = 1
scope_2_HMLMG_3 = 1
scope_2_HMLMG_4 = 1
barrel_2_HMLMG_1 = 1
if HMLMG_2_HOLOSIGHT == true then
scope_2_HMLMG_1 = 1.2
end
if HMLMG_2_X8_SCOPE == true then
scope_2_HMLMG_2 = 7
end
if HMLMG_2_X16_SCOPE == true then
scope_2_HMLMG_3 = 13.5
end
if HMLMG_2_HANDMADESIGHT == true then
scope_2_HMLMG_4 = 0.8
end
if HMLMG_2_SILENCER == true then
barrel_2_HMLMG_1 = 1
end
scope_2_M249_1 = 1
scope_2_M249_2 = 1
scope_2_M249_3 = 1
scope_2_M249_4 = 1
barrel_2_M249_1 = 1
if M249_2_HOLOSIGHT == true then
scope_2_M249_1 = 1.2
end
if M249_2_X8_SCOPE == true then
scope_2_M249_2 = 7
end
if M249_2_X16_SCOPE == true then
scope_2_M249_3 = 13.5
end
if M249_2_HANDMADESIGHT == true then
scope_2_M249_4 = 0.8
end
if M249_2_SILENCER == true then
barrel_2_M249_1 = 1
end
scope_2_SAR_1 = 1
scope_2_SAR_2 = 1
scope_2_SAR_3 = 1
scope_2_SAR_4 = 1
barrel_2_SAR_1 = 1
if SAR_2_HOLOSIGHT == true then
scope_2_SAR_1 = 1.2
end
if SAR_2_X8_SCOPE == true then
scope_2_SAR_2 = 6.75
end
if SAR_2_X16_SCOPE == true then
scope_2_SAR_3 = 13.5
end
if SAR_2_HANDMADESIGHT == true then
scope_2_SAR_4 = 0.8
end
if SAR_2_SILENCER == true then
barrel_2_SAR_1 = 1
end
scope_2_M39_1 = 1
scope_2_M39_2 = 1
scope_2_M39_3 = 1
scope_2_M39_4 = 1
barrel_2_M39_1 = 1
if M39_2_HOLOSIGHT == true then
scope_2_M39_1 = 1.5
end
if M39_2_X8_SCOPE == true then
scope_2_M39_2 = 9.75
end
if M39_2_X16_SCOPE == true then
scope_2_M39_3 = 13.5
end
if M39_2_HANDMADESIGHT == true then
scope_2_M39_4 = 0.9
end
if M39_2_SILENCER == true then
barrel_2_M39_1 = 1
end
scope_2_SAP_1 = 1
scope_2_SAP_2 = 1
scope_2_SAP_3 = 1
scope_2_SAP_4 = 1
barrel_2_SAP_1 = 1
if SAP_2_HOLOSIGHT == true then
scope_2_SAP_1 = 1.5
end
if SAP_2_X8_SCOPE == true then
scope_2_SAP_2 = 9.75
end
if SAP_2_X16_SCOPE == true then
scope_2_SAP_3 = 13.5
end
if SAP_2_HANDMADESIGHT == true then
scope_2_SAP_4 = 0.8
end
if SAP_2_SILENCER == true then
barrel_2_SAP_1 = 1
end
scope_2_M92_1 = 1
scope_2_M92_2 = 1
scope_2_M92_3 = 1
scope_2_M92_4 = 1
barrel_2_M92_1 = 1
if M92_2_HOLOSIGHT == true then
scope_2_M92_1 = 1.7
end
if M92_2_X8_SCOPE == true then
scope_2_M92_2 = 9.75
end
if M92_2_X16_SCOPE == true then
scope_2_M92_3 = 13.5
end
if M92_2_HANDMADESIGHT == true then
scope_2_M92_4 = 0.8
end
if M92_2_SILENCER == true then
barrel_2_M92_1 = 1
end
scope_2_PYTHON_1 = 1
scope_2_PYTHON_2 = 1
scope_2_PYTHON_3 = 1
scope_2_PYTHON_4 = 1
barrel_2_PYTHON_1 = 1
if PYTHON_2_HOLOSIGHT == true then
scope_2_PYTHON_1 = 1.5
end
if PYTHON_2_X8_SCOPE == true then
scope_2_PYTHON_2 = 9.75
end
if PYTHON_2_X16_SCOPE == true then
scope_2_PYTHON_3 = 13.5
end
if PYTHON_2_HANDMADESIGHT == true then
scope_2_PYTHON_4 = 0.8
end
--AK47
local bullet1 = 1
N1_AK47_C_X = {}
N1_AK47_C_Y = {}
N1_AK47_AT = {}
N1_AK47_ST = {}
for AK47_1st = bullet1, AK47_BULLETS do
local N1_C_X_AK47 = round((AK47_OFFSET_X[bullet1]/screenMultiplier)*scope_1_AK47_1*scope_1_AK47_2*scope_1_AK47_3*scope_1_AK47_4*barrel_1_AK47_1)
local N1_C_Y_AK47 = round((AK47_OFFSET_Y[bullet1]/screenMultiplier)*scope_1_AK47_1*scope_1_AK47_2*scope_1_AK47_3*scope_1_AK47_4*barrel_1_AK47_1)
if AK47_1_MUZZLEBOOST == false then
N1_AT_AK47 = 100
N1_ST_AK47 = AK47_RPM - N1_AT_AK47
else
N1_AT_AK47 = 100*barrel_1_AK47_2
N1_ST_AK47 = AK47_RPM*barrel_1_AK47_2 - N1_AT_AK47
end
N1_AK47_C_X[#N1_AK47_C_X+1] = N1_C_X_AK47
N1_AK47_C_Y[#N1_AK47_C_Y+1] = N1_C_Y_AK47
N1_AK47_AT[#N1_AK47_AT+1] = N1_AT_AK47
N1_AK47_ST[#N1_AK47_ST+1] = N1_ST_AK47
bullet1 = bullet1 + 1
end
--LR300
local bullet2 = 1
N1_LR300_C_X = {}
N1_LR300_C_Y = {}
N1_LR300_AT = {}
N1_LR300_ST = {}
for LR300_1st = bullet2, LR300_BULLETS do
local N1_C_X_LR300 = round((LR300_OFFSET_X[bullet2]/screenMultiplier)*scope_1_LR300_1*scope_1_LR300_2*scope_1_LR300_3*scope_1_LR300_4*barrel_1_LR300_1)
local N1_C_Y_LR300 = round((LR300_OFFSET_Y[bullet2]/screenMultiplier)*scope_1_LR300_1*scope_1_LR300_2*scope_1_LR300_3*scope_1_LR300_4*barrel_1_LR300_1)
if LR300_1_MUZZLEBOOST == false then
N1_AT_LR300 = 100
N1_ST_LR300 = LR300_RPM - N1_AT_LR300
else
N1_AT_LR300 = 100*barrel_1_LR300_2
N1_ST_LR300 = LR300_RPM*barrel_1_LR300_2 - N1_AT_LR300
end
N1_LR300_C_X[#N1_LR300_C_X+1] = N1_C_X_LR300
N1_LR300_C_Y[#N1_LR300_C_Y+1] = N1_C_Y_LR300
N1_LR300_AT[#N1_LR300_AT+1] = N1_AT_LR300
N1_LR300_ST[#N1_LR300_ST+1] = N1_ST_LR300
bullet2 = bullet2 + 1
end
--MP5A4
local bullet3 = 1
N1_MP5A4_C_X = {}
N1_MP5A4_C_Y = {}
N1_MP5A4_AT = {}
N1_MP5A4_ST = {}
for MP5A4_1st = bullet3, MP5A4_BULLETS do
local N1_C_X_MP5A4 = round((MP5A4_OFFSET_X[bullet3]/screenMultiplier)*scope_1_MP5A4_1*scope_1_MP5A4_2*scope_1_MP5A4_3*scope_1_MP5A4_4*barrel_1_MP5A4_1)
local N1_C_Y_MP5A4 = round((MP5A4_OFFSET_Y[bullet3]/screenMultiplier)*scope_1_MP5A4_1*scope_1_MP5A4_2*scope_1_MP5A4_3*scope_1_MP5A4_4*barrel_1_MP5A4_1)
if MP5A4_1_MUZZLEBOOST == false then
N1_AT_MP5A4 = 100
N1_ST_MP5A4 = MP5A4_RPM - N1_AT_MP5A4
else
N1_AT_MP5A4 = 100*barrel_1_MP5A4_2
N1_ST_MP5A4 = MP5A4_RPM*barrel_1_MP5A4_2 - N1_AT_MP5A4
end
N1_MP5A4_C_X[#N1_MP5A4_C_X+1] = N1_C_X_MP5A4
N1_MP5A4_C_Y[#N1_MP5A4_C_Y+1] = N1_C_Y_MP5A4
N1_MP5A4_AT[#N1_MP5A4_AT+1] = N1_AT_MP5A4
N1_MP5A4_ST[#N1_MP5A4_ST+1] = N1_ST_MP5A4
bullet3 = bullet3 + 1
end
--THOMPSON
local bullet4 = 1
N1_THOMPSON_C_X = {}
N1_THOMPSON_C_Y = {}
N1_THOMPSON_AT = {}
N1_THOMPSON_ST = {}
for THOMPSON_1st = bullet4, THOMPSON_BULLETS do
local N1_C_X_THOMPSON = round((THOMPSON_OFFSET_X[bullet4]/screenMultiplier)*scope_1_THOMPSON_1*scope_1_THOMPSON_2*scope_1_THOMPSON_3*scope_1_THOMPSON_4*barrel_1_THOMPSON_1)
local N1_C_Y_THOMPSON = round((THOMPSON_OFFSET_Y[bullet4]/screenMultiplier)*scope_1_THOMPSON_1*scope_1_THOMPSON_2*scope_1_THOMPSON_3*scope_1_THOMPSON_4*barrel_1_THOMPSON_1)
if THOMPSON_1_MUZZLEBOOST == false then
N1_AT_THOMPSON = 100
N1_ST_THOMPSON = THOMPSON_RPM - N1_AT_THOMPSON
else
N1_AT_THOMPSON = 100*barrel_1_THOMPSON_2
N1_ST_THOMPSON = THOMPSON_RPM*barrel_1_THOMPSON_2 - N1_AT_THOMPSON
end
N1_THOMPSON_C_X[#N1_THOMPSON_C_X+1] = N1_C_X_THOMPSON
N1_THOMPSON_C_Y[#N1_THOMPSON_C_Y+1] = N1_C_Y_THOMPSON
N1_THOMPSON_AT[#N1_THOMPSON_AT+1] = N1_AT_THOMPSON
N1_THOMPSON_ST[#N1_THOMPSON_ST+1] = N1_ST_THOMPSON
bullet4 = bullet4 + 1
end
--SMG
local bullet5 = 1
N1_SMG_C_X = {}
N1_SMG_C_Y = {}
N1_SMG_AT = {}
N1_SMG_ST = {}
for SMG_1st = bullet5, SMG_BULLETS do
local N1_C_X_SMG = round((SMG_OFFSET_X[bullet5]/screenMultiplier)*scope_1_SMG_1*scope_1_SMG_2*scope_1_SMG_3*scope_1_SMG_4*barrel_1_SMG_1)
local N1_C_Y_SMG = round((SMG_OFFSET_Y[bullet5]/screenMultiplier)*scope_1_SMG_1*scope_1_SMG_2*scope_1_SMG_3*scope_1_SMG_4*barrel_1_SMG_1)
if SMG_1_MUZZLEBOOST == false then
N1_AT_SMG = 100
N1_ST_SMG = SMG_RPM - N1_AT_SMG
else
N1_AT_SMG = 100*barrel_1_SMG_2
N1_ST_SMG = SMG_RPM*barrel_1_SMG_2 - N1_AT_SMG
end
N1_SMG_C_X[#N1_SMG_C_X+1] = N1_C_X_SMG
N1_SMG_C_Y[#N1_SMG_C_Y+1] = N1_C_Y_SMG
N1_SMG_AT[#N1_SMG_AT+1] = N1_AT_SMG
N1_SMG_ST[#N1_SMG_ST+1] = N1_ST_SMG
bullet5 = bullet5 + 1
end
--HMLMG
local bullet6 = 1
N1_HMLMG_C_X = {}
N1_HMLMG_C_Y = {}
N1_HMLMG_AT = {}
N1_HMLMG_ST = {}
for HMLMG_1st = bullet6, HMLMG_BULLETS do
local N1_C_X_HMLMG = round((HMLMG_OFFSET_X[bullet6]/screenMultiplier)*scope_1_HMLMG_1*scope_1_HMLMG_2*scope_1_HMLMG_3*scope_1_HMLMG_4*barrel_1_HMLMG_1)
local N1_C_Y_HMLMG = round((HMLMG_OFFSET_Y[bullet6]/screenMultiplier)*scope_1_HMLMG_1*scope_1_HMLMG_2*scope_1_HMLMG_3*scope_1_HMLMG_4*barrel_1_HMLMG_1)
local N1_AT_HMLMG = 125
local N1_ST_HMLMG = HMLMG_RPM - N1_AT_HMLMG
N1_HMLMG_C_X[#N1_HMLMG_C_X+1] = N1_C_X_HMLMG
N1_HMLMG_C_Y[#N1_HMLMG_C_Y+1] = N1_C_Y_HMLMG
N1_HMLMG_AT[#N1_HMLMG_AT+1] = N1_AT_HMLMG
N1_HMLMG_ST[#N1_HMLMG_ST+1] = N1_ST_HMLMG
bullet6 = bullet6 + 1
end
--M249
local bullet7 = 1
N1_M249_C_X = {}
N1_M249_C_Y = {}
N1_M249_AT = {}
N1_M249_ST = {}
for M249_1st = bullet7, M249_BULLETS do
local N1_C_X_M249 = round((M249_OFFSET_X[bullet7]/screenMultiplier)*scope_1_M249_1*scope_1_M249_2*scope_1_M249_3*scope_1_M249_4*barrel_1_M249_1)
local N1_C_Y_M249 = round((M249_OFFSET_Y[bullet7]/screenMultiplier)*scope_1_M249_1*scope_1_M249_2*scope_1_M249_3*scope_1_M249_4*barrel_1_M249_1)
local N1_AT_M249 = 120
local N1_ST_M249 = M249_RPM - N1_AT_M249
N1_M249_C_X[#N1_M249_C_X+1] = N1_C_X_M249
N1_M249_C_Y[#N1_M249_C_Y+1] = N1_C_Y_M249
N1_M249_AT[#N1_M249_AT+1] = N1_AT_M249
N1_M249_ST[#N1_M249_ST+1] = N1_ST_M249
bullet7 = bullet7 + 1
end
--SAR
local bullet8 = 1
N1_SAR_C_X = {}
N1_SAR_C_Y = {}
N1_SAR_AT = {}
N1_SAR_ST = {}
for SAR_1st = bullet8, SAR_BULLETS do
local N1_C_X_SAR = round((SAR_OFFSET_X[bullet8]/screenMultiplier)*scope_1_SAR_1*scope_1_SAR_2*scope_1_SAR_3*scope_1_SAR_4*barrel_1_SAR_1)
local N1_C_Y_SAR = round((SAR_OFFSET_Y[bullet8]/screenMultiplier)*scope_1_SAR_1*scope_1_SAR_2*scope_1_SAR_3*scope_1_SAR_4*barrel_1_SAR_1)
local N1_AT_SAR = 145
local N1_ST_SAR = SAR_RPM - N1_AT_SAR
N1_SAR_C_X[#N1_SAR_C_X+1] = N1_C_X_SAR
N1_SAR_C_Y[#N1_SAR_C_Y+1] = N1_C_Y_SAR
N1_SAR_AT[#N1_SAR_AT+1] = N1_AT_SAR
N1_SAR_ST[#N1_SAR_ST+1] = N1_ST_SAR
bullet8 = bullet8 + 1
end
--M39
local bullet9 = 1
N1_M39_C_X = {}
N1_M39_C_Y = {}
N1_M39_AT = {}
N1_M39_ST = {}
for M39_1st = bullet9, M39_BULLETS do
local N1_C_X_M39 = round((M39_OFFSET_X[bullet9]/screenMultiplier)*scope_1_M39_1*scope_1_M39_2*scope_1_M39_3*scope_1_M39_4*barrel_1_M39_1)
local N1_C_Y_M39 = round((M39_OFFSET_Y[bullet9]/screenMultiplier)*scope_1_M39_1*scope_1_M39_2*scope_1_M39_3*scope_1_M39_4*barrel_1_M39_1)
local N1_AT_M39 = 75
local N1_ST_M39 = M39_RPM - N1_AT_M39
N1_M39_C_X[#N1_M39_C_X+1] = N1_C_X_M39
N1_M39_C_Y[#N1_M39_C_Y+1] = N1_C_Y_M39
N1_M39_AT[#N1_M39_AT+1] = N1_AT_M39
N1_M39_ST[#N1_M39_ST+1] = N1_ST_M39
bullet9 = bullet9 + 1
end
--SAP
local bullet10 = 1
N1_SAP_C_X = {}
N1_SAP_C_Y = {}
N1_SAP_AT = {}
N1_SAP_ST = {}
for SAP_1st = bullet10, SAP_BULLETS do
local N1_C_X_SAP = round((SAP_OFFSET_X[bullet10]/screenMultiplier)*scope_1_SAP_1*scope_1_SAP_2*scope_1_SAP_3*scope_1_SAP_4*barrel_1_SAP_1)
local N1_C_Y_SAP = round((SAP_OFFSET_Y[bullet10]/screenMultiplier)*scope_1_SAP_1*scope_1_SAP_2*scope_1_SAP_3*scope_1_SAP_4*barrel_1_SAP_1)
local N1_AT_SAP = 140
local N1_ST_SAP = SAP_RPM - N1_AT_SAP
N1_SAP_C_X[#N1_SAP_C_X+1] = N1_C_X_SAP
N1_SAP_C_Y[#N1_SAP_C_Y+1] = N1_C_Y_SAP
N1_SAP_AT[#N1_SAP_AT+1] = N1_AT_SAP
N1_SAP_ST[#N1_SAP_ST+1] = N1_ST_SAP
bullet10 = bullet10 + 1
end
--M92
local bullet11 = 1
N1_M92_C_X = {}
N1_M92_C_Y = {}
N1_M92_AT = {}
N1_M92_ST = {}
for M92_1st = bullet11, M92_BULLETS do
local N1_C_X_M92 = round((M92_OFFSET_X[bullet11]/screenMultiplier)*scope_1_M92_1*scope_1_M92_2*scope_1_M92_3*scope_1_M92_4*barrel_1_M92_1)
local N1_C_Y_M92 = round((M92_OFFSET_Y[bullet11]/screenMultiplier)*scope_1_M92_1*scope_1_M92_2*scope_1_M92_3*scope_1_M92_4*barrel_1_M92_1)
local N1_AT_M92 = 150
local N1_ST_M92 = M92_RPM - N1_AT_M92
N1_M92_C_X[#N1_M92_C_X+1] = N1_C_X_M92
N1_M92_C_Y[#N1_M92_C_Y+1] = N1_C_Y_M92
N1_M92_AT[#N1_M92_AT+1] = N1_AT_M92
N1_M92_ST[#N1_M92_ST+1] = N1_ST_M92
bullet11 = bullet11 + 1
end
--PYTHON
local bullet12 = 1
N1_PYTHON_C_X = {}
N1_PYTHON_C_Y = {}
N1_PYTHON_AT = {}
N1_PYTHON_ST = {}
for PYTHON_1st = bullet12, PYTHON_BULLETS do
local N1_C_X_PYTHON = round((PYTHON_OFFSET_X[bullet12]/screenMultiplier)*scope_1_PYTHON_1*scope_1_PYTHON_2*scope_1_PYTHON_3*scope_1_PYTHON_4*barrel_1_PYTHON_1)
local N1_C_Y_PYTHON = round((PYTHON_OFFSET_Y[bullet12]/screenMultiplier)*scope_1_PYTHON_1*scope_1_PYTHON_2*scope_1_PYTHON_3*scope_1_PYTHON_4*barrel_1_PYTHON_1)
local N1_AT_PYTHON = 145
local N1_ST_PYTHON = PYTHON_RPM - N1_AT_PYTHON