-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2133 lines (1560 loc) · 71.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<headd
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>EpochMod.com - Arma 3 Mod</title>
<meta name="description" content="Epoch Mod is a hybrid of genres with elements of science fiction and horror. Epoch is set in 2035, just two years after a massive world wide extinction. The exact cause is unknown and the only people left are clones with no memory of the past. Documents found in the world tell a us that before the mass extinction event, The largest technology corporation had made great breakthroughs. This technology changed the world in many ways and is thought to be the cause of the extinction.">
<link href='https://fonts.googleapis.com/css?family=Covered+By+Your+Grace' rel='stylesheet' type='text/css'>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap-theme.min.css">
<style>
body {
background-color: #000;
}
.topadsizelimit {
max-height: 100px;
}
.container-fluid,
.grid {
background-color: #000000;
}
.thumbnail {
display: block;
margin-bottom: 0;
line-height: 1.42857143;
border: 0;
border-radius: 0;
font-family: 'Covered By Your Grace', cursive;
font-size: 18px;
background-image: url("custom/polaroid1.png");
background-color: transparent;
background-size: 100%;
background-repeat: no-repeat;
padding: 3% 6% 3% 6%;
}
.thumbnail-sea {
background-image: url("custom/polaroid2.png");
}
.thumbnail .caption {
padding-left: 18%;
color: #333;
background-image: url("custom/YellowLegal.png");
background-color: transparent;
background-size: 100%;
background-repeat: repeat-y;
box-shadow: 1px 2px 2px 2px #888888;
}
</style>
</head>
<body>
<header>
<div class="container-fluid">
<div class="row">
<div class="col-xs-7"><a href="https://epochmod.com/index.php"><img class="img-responsive"
src="text_only.png" alt="Epoch Mod"/></a>
</div>
<div class="col-xs-5">
<div class="topadsizelimit">
<p align="center"><a href="https://www.GTXGaming.co.uk"><img width="300px" style="max-height:95px;" src="https://www.gtxgaming.co.uk/wp-content/uploads/2019/06/gtxgaming-logo-1024x532.png"/></a></p> </div>
</div>
</div>
</div>
</header>
<div class="container-fluid">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"
style="width: 100%;">
Current Version: 1.3.3.1 build: 1549
</div>
<!--
<div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="30" aria-valuemin="0"
aria-valuemax="10" style="width: 50%;">
Experimental: 1.0.1
</div>
-->
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<div class="button-group btn-group filter-button-group">
<button class="btn btn-default active" data-filter=".recent">Home</button>
<a class="btn btn-default" href="https://epochmod.com/forum">Forum</a>
<a class="btn btn-default" href="http://epochmod.gamepedia.com/A3Epoch:Arma_3_Epoch">Wiki</a>
<!--
<div class="btn-group">
<button data-filter=".twitch" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"
aria-expanded="false">
Social <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".twitch:not(.optional)" href="#" onclick="return false;">Twitch</a></li>
</ul>
</div>
-->
<div class="btn-group">
<button data-filter=".downloads:not(.optional)" type="button" class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-expanded="false">
Downloads <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".downloads.client" href="#" onclick="return false;">Client</a></li>
<li><a data-filter=".downloads.server" href="#" onclick="return false;">Server</a></li>
<li><a href="a2dayzepoch.php">DayZ Epoch</a></li>
</ul>
</div>
<button class="btn btn-default" data-filter=".story">Story</button>
<div class="btn-group">
<button data-filter=".player" type="button" class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-expanded="false">
Characters <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".player.female" href="#" onclick="return false;">Female</a></li>
<li><a data-filter=".player.male" href="#" onclick="return false;">Male</a></li>
<li><a data-filter=".player.apparel" href="#" onclick="return false;">Apparel</a></li>
</ul>
</div>
<div class="btn-group">
<button data-filter=".loot" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"
aria-expanded="false">
Looting <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".loot.land" href="#" onclick="return false;">Land</a></li>
<li><a data-filter=".loot.sea" href="#" onclick="return false;">Sea</a></li>
<!-- <li><a data-filter=".loot.air" href="#" onclick="return false;">Air</a></li> -->
<li><a data-filter=".loot.food" href="#" onclick="return false;">Food</a></li>
<li><a data-filter=".loot.drink" href="#" onclick="return false;">Drink</a></li>
<li><a data-filter=".loot.misc" href="#" onclick="return false;">Misc</a></li>
</ul>
</div>
<div class="btn-group">
<button data-filter=".vehicle" type="button" class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-expanded="false">
Vehicles <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".vehicle.land" href="#" onclick="return false;">Land</a></li>
<li><a data-filter=".vehicle.sea" href="#" onclick="return false;">Sea</a></li>
<li><a data-filter=".vehicle.air" href="#" onclick="return false;">Air</a></li>
</ul>
</div>
<!-- Single button -->
<div class="btn-group">
<button data-filter=".weapon" type="button" class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-expanded="false">
Weapons <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".weapon.rifle" href="#" onclick="return false;">Rifles</a></li>
<li><a data-filter=".weapon.pistol" href="#" onclick="return false;">Pistols</a></li>
<li><a data-filter=".weapon.melee" href="#" onclick="return false;">Melee</a></li>
</ul>
</div>
<div class="btn-group">
<button data-filter=".basebuilding" type="button" class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-expanded="false">
Bases <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".basebuilding.wood" href="#" onclick="return false;">Wood</a></li>
<li><a data-filter=".basebuilding.metal" href="#" onclick="return false;">Metal</a></li>
<li><a data-filter=".basebuilding.concrete" href="#" onclick="return false;">Concrete</a></li>
</ul>
</div>
<!-- Single button -->
<div class="btn-group">
<button data-filter=".antagonist" type="button" class="btn btn-default dropdown-toggle"
data-toggle="dropdown"
aria-expanded="false">
Antagonists <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a data-filter=".antagonist.land" href="#" onclick="return false;">Land</a></li>
<li><a data-filter=".antagonist.sea" href="#" onclick="return false;">Sea</a></li>
<li><a data-filter=".antagonist.air" href="#" onclick="return false;">Air</a></li>
<li class="divider"></li>
<li><a data-filter=".antagonist.human" href="#" onclick="return false;">Humanoid</a></li>
<li><a data-filter=".antagonist.animal" href="#" onclick="return false;">Fish</a></li>
<li><a data-filter=".antagonist.robot" href="#" onclick="return false;">Robot</a></li>
</ul>
</div>
<!-- Single button -->
<a class="btn btn-default" href="https://github.com/EpochModTeam/Epoch/blob/experimental/CREDITS.md">Credits</a>
<!-- <button class="btn btn-default" data-filter="*">Show All</button> -->
<!-- <button data-filter=".alkali, .alkaline-earth">alkali & alkaline-earth</button> -->
<!-- <button data-filter=":not(.transition)">not transition</button> -->
<!-- <button data-filter=".metal:not(.transition)">metal but not transition</button> -->
</div>
</div>
</div>
<br/>
<div class="grid row">
<!--
<div class="col-xs-8 grid-item about recent">
<div class="panel panel-default">
<div class="panel-body">
<div class="col-xs-9">
<p><b>The second design in our new line of Epoch Mod soda can T-shirts is here!</b> The <a href="https://goo.gl/jvjv5I"> Purple Nurple Soda shirt, mug or hoodie</a></p>
<p>The sales of these shirts support the development of Epoch Mod and you get a cool limited edition T-shirt!</p>
</div>
<div class="col-xs-3">
<a href="https://goo.gl/jvjv5I"><img class="img-responsive center-block" src="http://epochmod.com/EpochShirt_preview.png" alt= "Epoch Shirts"/></a>
</div>
</div>
</div>
</div>
-->
<div class="col-xs-8 grid-item about recent">
<div class="panel panel-default">
<div class="panel-body">
<b>Recent News:</b>
<a href="https://github.com/EpochModTeam/Epoch/releases">Arma 3: Epoch Mod 1.3.3.1 build(1549)</a> released 2020-09-01 -
<a href="https://epochmod.com/a2dayzepoch.php">Arma 2: DayZ Epoch Mod 1.0.7 </a> released 2021-04-29
<br/>
</div>
</div>
</div>
<div class="col-xs-8 grid-item about recent">
<div class="panel panel-default">
<div class="panel-body">
<p>Open world survival mod set just two years after the mass extinction of billions of people. Those that remain are left with remnants of a once technological society. Try to survive, build, or explore your way through the harsh dynamic environment.</p>
<b>Features</b>
<ul>
<li>Powerful persistence framework for Arma 3 with native Windows and Linux dedicated server support.</li>
<li>Fully configurable script based security checks.</li>
<li>Base Building re-envisioned for Arma 3 PhysX. Persistent secure and insecure storage
devices. Upgradeable locking doors.
</li>
<li>Barter based economy and trading systems backed a single currency ¤ called "Krypto".
</li>
<li>Hostile Environment with several different types of antagonists, Air and Water
temperature extremes, and Earthquakes.
</li>
<li>Hunting, Fishing, Tame Dogs, Explore & Loot: Wrecked ships, Abandoned vehicles and buildings, Perform
task based missions and more!
</li>
<li>Open source APL-SA <a href="https://github.com/EpochModTeam/Epoch">Epoch Survival</a> MP gamemode.</li>
<li>Open source APL-SA Modders resource <a href="https://github.com/EpochModTeam/EpochCore">configs</a> and <a href="https://epochmod.com/a3_epoch_classes.php">Class List</a>. Assets can be used as a mod dependency on <a href="https://steamcommunity.com/sharedfiles/filedetails/?id=421839251">Steam workshop</a>.</li>
</ul>
</div>
</div>
</div>
<div class="col-xs-4 grid-item downloads client recent">
<div class="panel panel-default">
<div class="panel-body">
<div class="row">
<div class="col-xs-6">
<h2>A3 Epoch <small>Client Files</small></h2>
<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=421839251"><img
class="img-responsive center-block" title="Steam Workshop" src="steamworkshop.jpg"></a>
<!--
<a href="https://a3cdn.com/"><img class="img-responsive center-block"
title="WS Launcher by ws.arma.su" src="ws.png"/></a>
<br/>
-->
<br/>
<a href="http://survivallauncher.com/"><img class="img-responsive center-block"
title="Survival Launcher"
src="survival_launcer.png"></a>
<br/>
<!-- <a href="http://a3launcher.com/"><img class="img-responsive center-block" title="A3Launcher by Maca134" src="need_logo.png"></a> -->
</div>
<div class="col-xs-6">
<a href="http://www.moddb.com/mods/epoch/downloads/epoch" title="Download Epoch - Mod DB"
target="_blank"><img class="img-responsive center-block"
src="moddb_88x31_v11.png"
alt="Epoch mod for ARMA 3" border="0" height="50"></a>
<br/>
<a href="http://www.armaholic.com/page.php?id=27245"><img class="img-responsive center-block"
title="Armaholic" src="download.jpg"></a>
<br/>
<div class="btn-group" role="group" aria-label="http">
</div>
<br/>
</div>
</div>
<div class="alert alert-info" role="alert">
<b>Manual Install Instructions:</b>
<p>Open your Arma 3 root directory and remove any @Epoch folders. Then simply extract the latest zip
file into your Arma 3 root directory. Path to Arma 3 is generally "C:\Program Files
(x86)\Steam\steamapps\common\Arma 3\"</p>
</div>
<h2>Arma 2 DayZ Epoch:</h2>
<a class="btn btn-default" href="https://epochmod.com/a2dayzepoch.php">Info and
Downloads</a>
<br/>
</div>
</div>
</div>
<div class="col-xs-4 grid-item downloads client">
<div class="panel panel-default">
<div class="panel-body">
<h4>Legacy Client Downloads:</h4>
<div class="btn-group" role="group" aria-label="http">
<a class="btn btn-success center-block"
href="https://github.com/EpochModTeam/EpochCore/releases/download/1.2.0.1271/Epoch_Client_1.2.0.0.zip"><span
class="glyphicon glyphicon-save"></span>1.2.0 #1</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_1.2.0.0.zip"><span
class="glyphicon glyphicon-save"></span>1.2.0 #2</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_1.1.0.0.zip"><span
class="glyphicon glyphicon-save"></span>1.1.0 #1</a>
<a class="btn btn-success center-block"
href="https://github.com/EpochModTeam/EpochCore/releases/download/1.1.0.1194/Epoch_Client_1.1.0.0.zip"><span
class="glyphicon glyphicon-save"></span>1.1.0 #2</a>
<a class="btn btn-success center-block"
href="https://github.com/EpochModTeam/EpochCore/releases/download/1.0.0.1070/Epoch_Client_1.0.0.0.zip"><span
class="glyphicon glyphicon-save"></span>1.0.0.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_1.0.0.0.zip"><span
class="glyphicon glyphicon-save"></span>1.0.0.0 #2</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.5.0.0.zip"><span
class="glyphicon glyphicon-save"></span>0.5.0.0 #2</a>
<a class="btn btn-success center-block"
href="https://github.com/EpochModTeam/EpochCore/releases/download/0.5.0.0/Epoch_Client_0.5.0.0.zip"><span
class="glyphicon glyphicon-save"></span>0.5.0.0 #1</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.4.0.0.zip"><span
class="glyphicon glyphicon-save"></span>0.4.0.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.9.0.zip"><span
class="glyphicon glyphicon-save"></span>0.3.9.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.8.0.zip"><span
class="glyphicon glyphicon-save"></span>0.3.8.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.7.0.zip"><span
class="glyphicon glyphicon-save"></span>0.3.7.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.6.0.zip"><span
class="glyphicon glyphicon-save"></span>0.3.6.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.5.0.zip"><span
class="glyphicon glyphicon-save"></span>0.3.5.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.4.0.zip"><span
class="glyphicon glyphicon-save"></span>0.3.4.0</a>
<a class="btn btn-success center-block"
href="https://cdn.whocaresabout.de/epoch/Epoch_Client_0.3.3.1.zip"><span
class="glyphicon glyphicon-save"></span>0.3.3.1</a>
</div>
<div class="btn-group" role="group" aria-label="legacy">
<a class="btn btn-default" href="https://epochmod.com/downloads/Epoch_Client_0.3.0.3.zip.torrent"><span
class="glyphicon glyphicon-cloud-download"></span> 0.3.0.2</a>
<a class="btn btn-default" href="https://epochmod.com/downloads/@Epoch_0.3.0.1.zip.torrent"><span
class="glyphicon glyphicon-cloud-download"></span> 0.3.0.1</a>
<a class="btn btn-default" href="https://epochmod.com/downloads/Epoch_0.2.5.2_RC1.zip.torrent"><span
class="glyphicon glyphicon-cloud-download"></span> 0.2.5.2</a>
</div>
<br/>
<br/>
<a class="btn btn-default" href="https://epochmod.com/a2dayzepoch.php">Arma 2: DayZ Epoch - Info and
Downloads</a>
<br/>
</div>
</div>
</div>
<div class="col-xs-8 grid-item downloads server recent">
<div class="panel panel-default">
<div class="panel-body">
<h3>Current Server Build: 1.3.3.1 build(1549) for Arma 3 v1.98+</h3><p>
<div class="btn-group" role="group" aria-label="serverfiles">
<a class="btn btn-success" href="https://api.github.com/repos/EpochModTeam/Epoch/zipball/1.3.3.1549"><span class="glyphicon glyphicon-save"></span> Download ZIP</a> <a class="btn btn-success" href="https://api.github.com/repos/EpochModTeam/Epoch/tarball/1.3.3.1549"><span class="glyphicon glyphicon-save"></span> Download tar.gz</a>
</div><br/><b>Created:</b> 2020-09-01 15:29:27<br/><b>Published:</b> 2020-09-01 15:30:52<br/><pre>## [1.3.3.1] - 2020-09-01
### Added
- Clear message that the server is not fully loaded when Players login to early
- Optional Black Market Traders
- Build in RyanZ Zombiespawner (when RyanZ is enabled on the Server)
- Trader Filter for useable items on currently equipped weapons
### Fixed
- On farming wracks / cinder, sometimes the more far away object was looted instead of the nearest
- Purchased Boats from Traders sometimes spawned damaged
- In some cases, purchased Vehicles spawned on top of already existing vehicles -> crashed
### Changed
### Server Owners
- Added missing predefined variable "Epoch_BaseSpawnSkips" (no issues, just a rpt error)
- Krypto Limit from 250000 to 1000000 to prevent unwanted bans
- Some loot positions were not in correct syntax
- Black Market Traders can be configured within CfgBlackMarket.hpp (within the mission file)
- RyanZ Zombiespawner can be configured within epoch_server_RyanZ_Spawner.pbo (server side)
- To disable this spawner, you can remove this pbo from your Server
</pre></p><a target="_blank" href="https://github.com/EpochModTeam/Epoch/releases/tag/1.3.3.1549">View on GitHub</a><br/><br/> </div>
</div>
</div>
<div class="col-xs-4 grid-item downloads server">
<div class="panel panel-default">
<div class="panel-body">
<h4>Helpful Links:</h4>
<a href="https://epochmod.com/forum/index.php?/topic/34938-epoch-server-0303-build-4-changelog/">0.3.x Server
Changelogs</a><br/>
<a href="http://epochmod.gamepedia.com/A3Epoch:Arma_3_Epoch#Server_Setup_.26_Information">Server Setup
Information (Wiki)</a><br/>
<a href="https://epochmod.com/forum/index.php?/forum/62-server-install-help/">Server Install Help (Forum)</a><br/>
<h4>Command Line Client Files Installer:</h4>
<!--
<a class="btn btn-default center-block"
href="https://a3cdn.com/launcher/download/ServerUpdater/ServerUpdater.zip"><span
class="glyphicon glyphicon-download-alt"></span> WS ServerUpdater</a>
-->
<br/>
<div class="alert alert-info" role="alert">
Arma 3 license and game usage restrictions from Bohemia Interactive: <br/>
<a class="alert-link" href="https://www.bistudio.com/community/licenses/arma3-end-user-license">Arma 3:
End User License</a> <br/>
<a class="alert-link" href="https://www.bistudio.com/community/game-content-usage-rules">Arma 3: Game
Content Rules</a> <br/>
<a class="alert-link" href="https://www.bistudio.com/monetization">Arma 3: Server Monetization Rules</a>
<br/>
</div>
</div>
</div>
</div>
<div class="col-xs-4 grid-item recent profile awol">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Credits/Changelogs</h3>
</div>
<div class="panel-body">
<p><a href="https://github.com/EpochModTeam/Epoch/blob/release/CREDITS.md">Credits</a></p>
<p><a href="https://github.com/EpochModTeam/Epoch/blob/release/changelog.md">Changelog</a></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/jack.png" alt="Hydraulic Jack">
<div class="caption">
<h3>Hydraulic Jack</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/cooler.png" alt="Cooler">
<div class="caption">
<h3>Cooler</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/document.png" alt="Document">
<div class="caption">
<h3>Document</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/circuitparts.png" alt="Electronic Circuit Parts">
<div class="caption">
<h3>Electronic Circuit Parts</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/cinder_blocks.png" alt="Cinder Blocks">
<div class="caption">
<h3>Cinder Blocks</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/gems.png" alt="Precious Gems">
<div class="caption">
<h3>Precious Gems</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/gold.png" alt="Gold">
<div class="caption">
<h3>Gold</h3>
<p>Stacks, Bars, and Ore</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/silver.png" alt="Silver">
<div class="caption">
<h3>Silver</h3>
<p>Bars and Ore</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/iron_ore.png" alt="Iron Ore">
<div class="caption">
<h3>Iron Ore</h3>
<p>Can be used to make steel</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/kilo_hemp.png" alt="Kilo Hemp">
<div class="caption">
<h3>Hemp</h3>
<p>One Kilo</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/supply_box.png" alt="Supply Box">
<div class="caption">
<h3>Supply Box</h3>
<p>Can hold many things</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/2cycleoil.png" alt="2-Cycle Oil">
<div class="caption">
<h3>2-Cycle Oil</h3>
<p>Used to make mixed gas for use with the chainsaw</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/vehicle_repair.png" alt="Vehicle Repair Parts">
<div class="caption">
<h3>Vehicle Repair Parts</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/scrap_metal.png" alt="Metal Scrap">
<div class="caption">
<h3>Metal Scrap</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/metal_pile_small.png" alt="Metal Scraps">
<div class="caption">
<h3>Salvage Metal (Small)</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/moist_towelett.png" alt="Moist Towelette">
<div class="caption">
<h3>Moist Towelette</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/paintcan.png" alt="Paint Cans">
<div class="caption">
<h3>Paint Cans</h3>
<p>Assorted colors and paint thinner.</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/mortar.png" alt="Mortar">
<div class="caption">
<h3>Mortar</h3>
<p>Expanding cementitious mortar, just add water.</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/heat_pack.png" alt="Heat Pack">
<div class="caption">
<h3>Heat/Cold Pack</h3>
<p>Used to warm you up quickly, There is also a cold pack version to reduce your fever</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/orange_soda.png" alt="Orange Soda">
<div class="caption">
<h3>Orange Soda</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink vbgreen">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/purple_soda.png" alt="Purple Nurple">
<div class="caption">
<h3>Purple Nurple Soda</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink vbgreen">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/burst_soda.png" alt="Burst Koke">
<div class="caption">
<h3>Burst Soda</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink vbgreen">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/rgull_soda.png" alt="Red Gull Soda">
<div class="caption">
<h3>Red Gull Soda</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink vbgreen">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/mocha_soda.png" alt="Mocha Soda">
<div class="caption">
<h3>Mocha Soda</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/walk_n_sons.png" alt="Walk n Sons Soda">
<div class="caption">
<h3>Walk n Sons Soda</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot drink sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/whiskeynoodle.png" alt="Whiskey Noodle Beer">
<div class="caption">
<h3>Whiskey Noodle Beer</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot food sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/snooters.png" alt="Snooters Candy">
<div class="caption">
<h3>Snooters Candy</h3>
<p>Not hungry? Grab a snooters</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot misc sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/pelt.png" alt="Pelt">
<div class="caption">
<h3>Pelt</h3>
<p></p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot food sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/mutton.png" alt="Mutton">
<div class="caption">
<h3>Goat / Sheep Leg</h3>
<p>Great cooked on an open fire</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot food sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/chicken.png" alt="Chicken">
<div class="caption">
<h3>Chicken</h3>
<p>Great cooked on an open fire</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot food sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/rabbit.png" alt="Rabbit">
<div class="caption">
<h3>Rabbit</h3>
<p>Great cooked on an open fire</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot food sequisha">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/snake_meat.png" alt="Snake Meat">
<div class="caption">
<h3>Snake meat and venom sac</h3>
<p>Meat is great cooked on an open fire, venom sac can be used as a anti venom to build tolerance</p>
</div>
</div>
</div>
<div class="col-xs-4 grid-item loot food kiory">
<div class="thumbnail thumbnail-land">
<img class="lazy" src="custom/blank.png" data-original="custom/scam.png" alt="Scam">
<div class="caption">
<h3>Scam</h3>
<p>World famous potted meat</p>
</div>
</div>