-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbot_notes.txt
3966 lines (3955 loc) · 192 KB
/
bot_notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Quake Bot Research
This file represents the research notes used while identifying and locating quake bots.
It contains mostly useful links and snippets of information discovered along the way.
I expect this information will be useful for future research into specific quake bots or to locate additional quake bots that may be identified.
ADDED
--------------------------------------------------------------------------------
Omicron Bot
https://mrelusive.com/oldprojects/obots/obots.html
https://mrelusive.com/oldprojects/obots/ObotDoc/index.htm
https://mrelusive.com/oldprojects/obots/ftp/obots102.zip
https://neogeographica.com/site/pages/mods/obots.html
also H2SO4
Miklos de Rijk aka "H2SO4"
https://doomwiki.org/wiki/Miklos_de_Rijk_(H2SO4)
https://www.linkedin.com/in/miklos-de-rijk-07360630/
old versions or old docs?
https://web.archive.org/web/19980614160554/http://www.inside3d.com/dec10.shtml
v0.81
v0.83
v1.00 released dec 4th 1997
https://web.archive.org/web/19980614160451/http://www.inside3d.com/dec04-dec05.shtml
https://www.bluesnews.com/archives/nov97-5.html
https://www.bluesnews.com/files/patches/obots100.zip
http://www.ritual.com/shack_files/quakec/obots100.zip
ftp://ftp.cdrom.com/pub/idgames2/planetquake/ramshackle/OBOTS100.ZIP
ftp://ftp.telefragged.com/pub/swtc/obots100.zip
https://web.archive.org/web/19990829162357/http://sunsite.org.uk/packages/idgames2/planetquake/ramshackle/
http://www.hipnotic.com/shack_files/quakec/obots100.zip
v1.01 Monday, December 15, 1997
https://www.bluesnews.com/archives/dec97-2.html
https://web.archive.org/web/19980614160658/http://planetquake.com/ramshackle/omidlf.htm
ftp://ftp.cdrom.com/pub/idgames2/planetquake/ramshackle/OBOTS101.ZIP
https://mrelusive.com/oldprojects/obots/Reviews/Metropolis/obots101.zip
https://usuaris.tinet.cat/dummies/files/obots101.zip
http://mamuka.narod.ru/files/bots/OBOTS101.ZIP
http://quakeintosh.com/files/Paks%20-%20Maps%20-%20Mods%20/Quake%20Bots/%20Omicron%20Bot/OBOTS101.sit
ftp://ftp.grayphics.com/pub/frigid/botblast/obots101.hqx
http://gocompupro.com/cqf/files/obots101.zip
http://www.cdrom.com/pub/idgames2/planetquake/ramshackle/OBOTS101.ZIP
v1.02 3/24/98 (march 24)
https://web.archive.org/web/19980614161915/http://www.inside3d.com/mar24-mar25.html
https://dukeworld.com/planetquake/jvox/obots102.zip
https://dukeworld.com/planetquake/jvox/obots102.sit
http://www.geocities.ws/pilxtc/mods/obots/Obots102.zip
https://www.quaddicted.com/webarchive/ftp.clan-rum.org/quake/bots/obots102.zip
https://mrelusive.com/oldprojects/obots/ftp/obots102.zip
https://mrelusive.com/oldprojects/obots/ftp/obots102.sit
http://www.planetquake.com/dl/dl.asp?skorpion/files/obots102.zip
ftp://ftp.cdrom.com/pub/planetquake/jvox/obots102.sit
http://www.planetquake.com/cdrom/ramshackle/obots102.zip
http://www.telefragged.com/mirrors/mirror.pl?be/gladiator/obots102.zip
https://dukeworld.duke4.net/planetquake/skorpion/files/obots102.zip
http://www.xs4all.nl/~elusive/projects/Obots/Obots102.zip
https://www.gamers.org/pub/idgames2/planetquake/jvox/obots102.zip
https://www.gamers.org/pub/idgames2/planetquake/jvox/obots102.sit
http://www.fileplanet.com/dl.aspx?ramshackle/Obots102.zip
ftp://sunsite.doc.ic.ac.uk/packages/idgames2/planetquake/ramshackle/Obots102.zip
https://cs08.spac.me/f/046006066143136197125049135109122007137232040151223033169236/1630273405/60155795/0/040b8b2710ddb93e442ce9abdced22d8/obots102-spaces.im.zip
http://www.geocities.ws/fragtown/bots/obots102.zip
http://www.demigod.demon.nl/
https://web.archive.org/web/19991111071544/http://www.demigod.demon.nl/
dead
http://www.demigod.demon.nl/omibots1.html
https://web.archive.org/web/19981207061921/http://www.demigod.demon.nl/omibots1.html
no src ever
https://web.archive.org/web/19980614160949/http://www.inside3d.com/jan05-jan06.shtml
omicron bot blast
https://web.archive.org/web/19990128151537/http://www.visi.com/~zappa/quake/quake.html
https://web.archive.org/web/19990218061242/http://www.visi.com/~zappa/quake/faq.html
https://web.archive.org/web/19990218085647/http://www.visi.com/~zappa/quake/links.html
blast.quakeintosh.com
https://web.archive.org/web/*/blast.quakeintosh.com/*
https://web.archive.org/web/19980213185455/http://www2.arkansas.net/~bnapier/
https://web.archive.org/web/19980128215009/http://www.grayphics.com/~frigid/botblast/index.shtml
Reaper / ReaperBot / Reaper Bot
Steven Polge
v0.81
http://easttown.co.uk/quake/download.php?file=reaprb81.zip&size=167024
http://www.mindspring.com/~win32ch/reaprb81.zip
http://www.mindspring.com/~win32ch/Source.zip
https://web.archive.org/web/2017*/http://www.mindspring.com/~win32ch/Source.zip
unofficial source code
http://botarea51.impulse9.net/mirror/bot/reaprb81.zip
http://www.fileplanet.com/dl.aspx?/planetquake/botarea51/bot/reaprb81.zip
https://dukeworld.com/planetquake/renegade/reaprb81.zip
https://www.quaddicted.com/files/idgames2/planetquake/renegade/reaprb81.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/reaper/reaprb81.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/reaper/reaprb81.txt
https://www.gamers.org/pub/idgames2/quakec/bots/reaper/reaprb81.zip
ftp://ftp.cdrom.com/pub/idgames2/quakec/bots/reaper/reaprb81.zip
http://postmortem.www2.50megs.com/links/reaprb81.zip
http://www.joz3d.net/files/Games/Quake/1/reaprb81.zip
ftp://ftp.stomped.com/pub/redwood/bots/reaprb81.zip
https://ftp.zx.net.nz/pub/archive/ftp.gamers.org/pub/mirrors/ftp.planetquake.com/renegade/reaprb81.zip
http://www.gamers.org/pub/idgames2/quakec/bots/reaper/reaprb81.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/reaper/reaprb81.zip
ftp://ftp.cdrom.com/pub/idgames2/quakec/bots/reaper/reaprb81.zip
http://www.cdrom.com/pub/idgames2/quakec/bots/reaper/reaprb81.txt
ftp://sunsite.doc.ic.ac.uk/packages/idgames2/quakec/bots/reaper/reaprb81.zip
ftp://sunsite.doc.ic.ac.uk/packages/idgames2/quakec/bots/reaper/reaprb81.txt
ftp://ftp.elogica.com.br/pub/warlock/ant/reaprb81.zip
ftp://ftp.pk.edu.pl/pub/games/id/quaketoys/mods/reaprb81.zip
http://first.quakegate.ru/bots/reaprb81.zip
http://mirror.its.dal.ca/freebsd/distfiles/reaprb81.zip
http://www.gnu-darwin.org/distfiles/reaprb81.zip
http://www.planetquake.com/skins/files/reaprb81.zip
ftp://ftp.planetquake.com/pub/academy/reaprb81.zip
http://ftp.cdrom.com/pub/quake/planetquake/qca/reaprb81.zip
http://www.planetquake.com/qca/reviews/patch65.txt
ftp://quake.mtu.ru/pub/quake/bots/reaper.zip
http://www-personal.engin.umich.edu/~stimpson/archives/mac/game/reaper-081.hqx
http://www.foobar.co.uk/users/macnet/rpbot/downloads/reaprb81.zip
https://groups.google.com/g/fido7.spb.files/c/AsDRP9l2s70/m/O0qPkTdH7V8J
REAPER.RAR
https://groups.google.com/g/lucky.freebsd.ports.bugs/c/QljC18AOsT0/m/xz5-zfFrTNMJ
quake-reaper.shar
http://bluesnews.com/files/reaprb81.zip
ftp://ftp.sunet.se/pub2/pc/games/idgames2/quakec/bots/reaper/reaprb81.zip
http://www.imaxx.net/~dakota/capture/FILES/reaprb81.zip
http://quakemecca.simplenet.com/files/downloads/reaprb81.zip
http://gocompupro.com/cqf/files/reaprb81.zip
http://www.violent.demon.co.uk/links/download/reaprb81.zip
http://www.geocities.ws/fragtown/bots/reaprb81.zip
v0.80
http://www.cdrom.com/pub/quake/quakec/bots/reaprb80.zip
https://groups.google.com/g/rec.games.computer.quake.editing/c/G0n9wNw1F0I/m/xwwZ7LJTnw4J
reaprb80.zip
https://groups.google.com/g/fido7.game.design/c/_7D-NR4jNN4/m/QfSK_4bDRtEJ
reaprb80.zip
ftp://ftp.cdrom.com/quake/quakec/bots/reaper/reaprb80.zip
http://www.nlink.com.br/quake/reaper80.zip
ftp://bluesnews.com/pub/bots/reaprb80.zip
http://orca.ucd.ie/~gilligan/reaper.zip
https://web.archive.org/web/19970709060246/http://orca.ucd.ie/~gilligan/reaper.zip
https://www.iconbar.com/downloads/quake/reapers.zip
https://archive.org/download/PCZoneCompleteQuakeCD/PC%20Zone%20Complete%20Quake%20CD/PCZoneCompleteQuakeCD.iso/Tc%2FReaper%2FSETUP.EXE
https://lambert.jeanphilippe.free.fr/DownLoad/ReaperBot.zip
http://www.lavite.net/misc/q1/rpbot.zip
http://www.bluesnews.com/b08chg.txt
https://web.archive.org/web/20050422011117/http://www.acornarcade.com/downloads/quake/reapers.zip
ftp://ftp.grayphics.com/pub/frigid/botblast/reaper08.sit.hqx
v0.75
ftp://ftp.pk.edu.pl/pub/games/id/quaketoys/mods/reaprb75.zip
ftp://bluesnews.com/pub/bots/reaprb75.zip
https://www.bluesnews.com/archives/nov96-1.html
release info
https://groups.google.com/g/rec.games.computer.quake.misc/c/2-SabLnSA70/m/3hZnYijdOVQJ
http://quakemecca.simplenet.com/files/downloads/reaprb75.txt
http://aapo.iki.fi/aisuom.html
https://web.archive.org/web/19970530203249/http://quakemecca.simplenet.com/files/downloads/reaprb75.txt
https://groups.google.com/g/rec.games.computer.quake.playing/c/Ck1NbL0LWck/m/VtwKoqdrwjEJ
Reaprb75.txt
http://home.sol.no/hestokke/bots/reaprb75.zip
v0.70
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog2/reaprb07.zip
https://www.quaddicted.com/files/commercial/Toolkit%20For%20Quake%202nd%20Edition%20(QTool_0197).7z
has a copy of reaprb07.zip
http://cd.textfiles.com/pdsl/HELP/GAMERTK.TXT
reaprb07.zip
https://groups.google.com/g/rec.games.computer.quake.playing/c/bfg0Ttu5mpg/m/ISosuMPKsk8J
usenet announcement
ftp://bluesnews.com/pub/bots/reaprb07.zip
http://www.bluesnews.com/reaprb07.txt
https://web.archive.org/web/20010506061717/http://www.geocities.com/TimesSquare/6514/oct18.htm
v0.60
https://groups.google.com/g/rec.games.computer.quake.editing/c/s70A0DBLMxI/m/gvG-48rcmpoJ
http://www.excalibur.net/~kinglink/king/quake/quakec/bots/reaprb06.zip
https://groups.google.com/g/rec.games.computer.quake.misc/c/WSHE5tUDvEs/m/9p--I5G6vJ4J
https://groups.google.com/g/rec.games.computer.quake.editing/c/VxLR6uaDg-Q/m/ICB1EcRZPOkJ
reaprb06.zip
https://groups.google.com/g/alt.retromod/c/IjqcE1Tr-3k/m/VPaYvam4D7UJ
https://groups.google.com/g/news.admin.net-abuse.announce/c/F1sVGhoMXZU/m/VPaYvam4D7UJ
reaprb06.zip
https://groups.google.com/g/rec.games.computer.quake.playing/c/3Zhx62Et-O4/m/mrf3h8CuKJAJ
usenet announcement
http://www.quakehole.com/files/quakec/reaprb06.zip
https://web.archive.org/web/19961221053200/http://www.quakehole.com/files/quakec/reaprb06.zip
https://web.archive.org/web/19961221053200/http://www.gamesmania.com/english/quake/quakec.htm
ftp://bluesnews.com/pub/quakec/bots/reaprb06.zip
http://www.bluesnews.com/reaprb06.txt
https://web.archive.org/web/20010505143115/http://www.geocities.com/TimesSquare/6514/oct3.htm
ftp://ftp.dragonfire.net/users/c/chriscon/reaprb06.zip
http://www.planetquake.com/qca/patch10.txt
v0.50 (first version...)
ftp://ftp.cdrom.com/pub/idgames2/quakec/bots/reaprb05.zip
ftp://ftp.canvasnet.com/quake/qc/bots/reaprb05.zip
https://web.archive.org/web/19990223203945/http://www.canvasnet.com/quake/qc.htm
https://www.bluesnews.com/archives/sept96-5.html
release info
https://www.bluesnews.com/archives/reaper.txt
https://web.archive.org/web/19990825015752/https://www.bluesnews.com/archives/reaper.txt
(not archived)
http://cd.textfiles.com/swextrav8/swextrav8-2/disc2.bbs
MSKIN1.ZIP, MSKIN2.ZIP, MSKIN3.ZIP, MSKIN4.ZIP
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog2/mskin1.zip
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog2/mskin2.zip
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog2/mskin3.zip
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog2/mskin4.zip
Player-Bot (Very Intelligent)
has the bot, reaprb05.txt and progs.dat
https://groups.google.com/g/spk.file/c/IMPklo6HC-s/m/RmTFwJzM0owJ
REAPRB05.ZIP
https://www.teletec.it/software/software.php?q=2438
REAPRB05.ZIP
https://groups.google.com/g/alt.games.quake/c/TTGu2u6r-N0/m/OT4cdHSjA0gJ
v0.5 on stomped
decompiled src
rec.games.computer.quake.quake-c
pqccreap.zip, Ken Alverson
https://groups.google.com/g/rec.games.computer.quake.quake-c/c/pb_PTSRMLts/m/KFLhdrajAcUJ
https://groups.google.com/g/rec.games.computer.quake.editing/c/c_8W-xBCc0g/m/abTNOXhICkAJ
other
http://easttown.co.uk/quake/reaper.html
https://quake.fandom.com/wiki/The_Reaper_Bot
https://mrelusive.com/oldprojects/obots/Comments/Acumen/Reapers.html
http://www.mindspring.com/~win32ch/Reaper.htm
https://web.archive.org/web/20000117231057/http://www.mindspring.com/~win32ch/Reaper.htm
https://en.wikipedia.org/wiki/Steve_Polge
https://www.quakewiki.net/quake-1-bots/
https://www.quakewiki.net/archives/botarea51/main/qbot87f1.html?id=14
http://www.insideqc.com/modindex/qreview/patch2.shtml
https://riad.pk.edu.pl/~pmj/quake/news_old1.html
https://riad.pk.edu.pl/~pmj/quake/contest_rules1.html
http://www.planetquake.com/skins/Reaper.htm
https://web.archive.org/web/19970611194258/http://www.planetquake.com/skins/Reaper.htm
http://www.planetquake.com/qca/reviews/patch65.htm
https://web.archive.org/web/20021019163323/http://www.planetquake.com/qca/reviews/patch65.htm
https://www.bluesnews.com/archives/sept96-5.html
https://www.bluesnews.com/archives/reaper.txt
release oct 3rd, likely v0.5.
https://www.bluesnews.com/archives/dec96-1.html
https://www.bluesnews.com/archives/sept97-1.html
https://www.bluesnews.com/archives/aug97-5.html
never release the source
https://www.iconbar.com/articles/Arcquake_and_QuakeC_patches/index1010.html
http://www.geocities.com/TimesSquare/Arcade/1975/quake.htm
https://web.archive.org/web/19990203053917/http://www.geocities.com/TimesSquare/Arcade/1975/quake.htm
v0.5 on Oct 3rd
http://canvasnet.com/quake/qc.htm
https://web.archive.org/web/19990116234332/http://canvasnet.com/quake/qc.htm
http://www.stomped.com/quakebot/
https://web.archive.org/web/19970626130200/http://www.stomped.com/quakebot/
http://www.kinglink.com/qhq/reaper.html
official?!
http://www.planetquake.com/ramshackle/reap.htm
https://web.archive.org/web/19990117055626/http://www.planetquake.com/ramshackle/reap.htm
http://www.planetquake.com/qng/bots.htm
https://web.archive.org/web/19970607135102/http://www.planetquake.com/qng/bots.htm
http://web.ukonline.co.uk/e.campbell/quake/quakec.htm
https://web.archive.org/web/19990221184113/http://web.ukonline.co.uk/e.campbell/quake/quakec.htm
https://web.archive.org/web/19990221184113/http://web.ukonline.co.uk/e.campbell/quake/quakec/reaper.zip
ZeusBot / ZEUSbot
Jonathan E. Wright aka Nelno the Amoeba
https://www.quaddicted.com/files/idgames2/quakec/bots/zeus205.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/zeus205s.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/zeus_src.zip
archive:
http://trailerpark.com/phase1/nelno
https://web.archive.org/web/19990701000000*/http://trailerpark.com/phase1/nelno
http://www.qchq.com/zeus
https://web.archive.org/web/19990701000000*/http://www.qchq.com/zeus
http://planetquake.com/qca/zeus/
https://web.archive.org/web/19990701000000*/http://www.planetquake.com/qca/zeus
https://web.archive.org/web/19970309231443/http://www.planetquake.com/qca/zeus/
http://www.planetquake.com/qca/reviews/patch52.htm
https://web.archive.org/web/20020821003701/http://www.planetquake.com/qca/reviews/patch52.htm
http://nelno.freeservers.com/
http://nelno.freeservers.com/contact.htm
other
https://www.bluesnews.com/archives/jan97-1.html
https://www.quakewiki.net/archives/botarea51/main/qbot2728.html?id=16
https://www.angelfire.com/wa/chrisquast/qbots.html
https://dukeworld.com/idgames2/quakec/bots/
ftp://ftp.cdrom.com/pub/idgames2/quakec/bots/zeus205.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/zeus205.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/zeus205.zip
https://quake.fandom.com/wiki/Zeus_Bot
http://easttown.co.uk/quake/zeus.html
https://web.archive.org/web/19981203131409/http://www.planetquake.com/design/bots.html
versions
2.05s, 2.05, 2.042, 2.041, 2.04, 2.03, 2.02, 2.01, 2.0, 1.0
old versions
https://www.bluesnews.com/files/zeus2042.zip
https://www.bluesnews.com/files/zeus204.zip
http://cd.textfiles.com/cream/cream24/doom/zeus2042.zip
http://annex.retroarchive.org/cdrom/cotc-24/DOOM/ZEUS2042.ZIP
http://annex.retroarchive.org/cdrom/cotc-24/DOOM/ZEUS2042/
ftp://ftp.cdrom.com/.1/idgames2/quakec/bots/zeus205s.zip
https://archives.fidobbs.net/pub/bbs/1701/ZEUS2042.ZIP
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog2/zeus10.zip
https://www.bluesnews.com/files/zeus204.zip
https://www.bluesnews.com/files/zb204new.txt
usenet
ZEUS202B.ZIP
Frogbot
http://www.telefragged.com/metro
1998-2000
https://web.archive.org/web/20030908211402/prime.telefragged.com/metro/frogbot_intro.shtml
https://web.archive.org/web/19981202161907/http://abone.turk.net/bear/frogbot012.zip
https://www.quaddicted.com/webarchive/ftp.clan-rum.org/quake/bots/frogbot012.zip
https://www.angelfire.com/pe/pent3/images/frogbot011.zip
https://www.angelfire.com/pe/pent3/images/frogbot013.zip
http://www.randars.com/bots/frogbot013.zip
http://www.telefragged.com/mirrors/mirror.pl?metro/frogbot013.zip
http://www.telefragged.com/mirrors/mirror.pl?metro/frogbot012.zip
ftp://ftp.telefragged.com/pub/metro/
Robert Field aka Frog
https://www.mobygames.com/developer/sheet/view/developerId,42907/
https://www.linkedin.com/in/robert-field-1235686/ ?
GPL
https://www.quakeworld.nu/news/177/frogbot-gets-gpl
https://web.archive.org/web/19980626082929/ftp://ftp.telefragged.com/pub/metro/frogbot009.zip
many versions
https://groups.google.com/g/fido7.ru.game.quake/c/P2YAtD9RQYc/m/eRJfv4QtTHEJ
https://web.archive.org/web/19991008150945/http://ftp.telepac.pt/pub/idgames2/telefragged/metro/
many versions
https://web.archive.org/web/20020214103406/http://www.botepidemic.com/fmods/ofiles.htm
interview
https://web.archive.org/web/20000607213411fw_/http://www.macquakeinfinity.com/frog.htm
All the "frogbot012.zip" out there are actually frogbot012c.zip
Can we find a real frogbot012.zip ????
Do we just host "frogbot012.zip" and ignore the issue?
interview
https://web.archive.org/web/19981206021000/http://www.telefragged.com/metro/interview_frog.html
physics
https://web.archive.org/web/19980614161031/http://www.inside3d.com/jan09-jan10.shtml
https://web.archive.org/web/19991018233525fw_/http://www.planetquake.com/botshop/
news/1998-01.html
https://web.archive.org/web/19990221165445fw_/http://www.planetquake.com/botshop/code/index.html
https://web.archive.org/web/19980614161135/http://www.inside3d.com/jan19-jan24.shtml
ftp://ftp.cdrom.com/pub/idgames2/planetquake/botshop/frogphys01.zip
ftp://ftp.cdrom.com/pub/idgames2/planetquake/botshop/frogphys00.zip
frogbot005.zip 23rd-march-98
https://web.archive.org/web/19990428214630/http://www.telefragged.com/metro/q1bot_frogbot.html
https://web.archive.org/web/19980614161937/http://www.inside3d.com/mar26-mar29.html
bot board
https://web.archive.org/web/20001205062300/http://www.telefragged.com/metro/botboard/index.shtml
v009
http://members.multimania.nl/nqeu/files/bots/frogbot.zip
Optimized Frogbot
http://aminet.net/package/game/patch/frogbot
Christian Michael aka "surgeon"
http://aminet.net/game/patch/frogbot.lha
BGBot
https://www.quaddicted.com/files/idgames2/quakec/bots/bgbot16.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/bgbot20a.zip
https://dukeworld.com/idgames2/quakec/bots/bgbot20a.zip
https://dukeworld.com/idgames2/quakec/bots/bgbot16.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/bgbot16.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/bgbot20a.zip
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog1/bgbot16.zip
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog1/bgbot20a.zip
http://annex.retroarchive.org/cdrom/nightowl-023/022A/BGBOT20A.ZIP
http://www.neta.com/~punisher/files/bgbot16.zip
http://botarea51.impulse9.net/mirror/bot/bgbot16_src.zip
http://www.fileplanet.com/dl.aspx?/planetquake/botarea51/bot/bgbot16_src.zip
http://www2.passagen.se/spel/quake/filer/bgbot20a.zip
versions
1.0, 1.1, 1.2, 1.25, 1.3, 1.4 (not public), 1.5, 1.6, 2.00a
who
Punisher / BiG HuRT / Robert DeFilippo III
https://quake.fandom.com/wiki/Robert_DeFilippo_III
https://www.quaddicted.com/files/idgames2/quakec/weapons/punish.txt
archive
http://www.neta.com/~punisher/quakec.htm
http://www.neta.com/~punisher/bgbot.htm
http://www.neta.com/~punisher/
https://web.archive.org/web/19990428034406/http://www.neta.com/~punisher/quakec.htm
other
https://web.archive.org/web/20030310034438/http://www.planetquake.com/qca/reviews/patch8.htm
https://www.quakewiki.net/archives/botarea51/main/qbotea25.html?id=24
usenet
rec.games.computer.quake.editing
many announcements as "BiG HuRT"
bgbot1.zip
bgbot11.zip
bgbot12.zip
bgbot125.zip
bgbot13.zip
bgbot15.zip
bgbot16.zip
Cronos Bot / Cronosbot
http://www.clovenhoof.freeserve.co.uk/
https://web.archive.org/web/19991127073931/http://www.clovenhoof.freeserve.co.uk/
https://web.archive.org/web/19991127073931/http://www.planetquake.com/cronos/
http://www.planetquake.com/cronos
https://web.archive.org/web/20000815211132if_/http://www.planetquake.com:80/cronos/
https://web.archive.org/web/20041216152813if_/http://www.planetquake.com/cronos/
news -> source code
Update 28th July 2002
https://web.archive.org/web/20050112053556/http://dl.fileplanet.com/dl/dl.asp?cronos/hd_qcc.zip
https://web.archive.org/web/20050112053556/http://dl.fileplanet.com/dl/dl.asp?cronos/hd_cbots_hd.zip
https://web.archive.org/web/20050112053556/http://dl.fileplanet.com/dl/dl.asp?cronos/hd_hcbots.zip
https://web.archive.org/web/20050112053556/http://dl.fileplanet.com/dl/dl.asp?cronos/hd_cbots.zip
download
https://web.archive.org/web/20050112044123/http://dl.fileplanet.com/dl/dl.asp?cronos/hd_pak0.zip
https://web.archive.org/web/20050112044123/http://dl.fileplanet.com/dl/dl.asp?cronos/hd_progs.zip
https://web.archive.org/web/20050112044123/http://dl.fileplanet.com/dl/dl.asp?cronos/cronobot.zip
https://web.archive.org/web/20050112044123/http://dl.fileplanet.com/dl/dl.asp?cronos/cbotpak.zip
https://web.archive.org/web/20050112044123/http://dl.fileplanet.com/dl/dl.asp?cronos/ceqcc.zip
https://www.quakewiki.net/archives/cronos/
mirror
http://dl.fileplanet.com/dl/dl.asp?cronos/hd_cbots_hd.zip
http://dl.fileplanet.com/dl/dl.asp?cronos/hd_cbots.zip
"Cronos"
http://www.planetquake.com/dl/dl.asp?cronos/hd_pak0.zip
http://www.planetquake.com/dl/dl.asp?cronos/hd_progs.zip
http://www.planetquake.com/dl/dl.asp?cronos/cronobot.zip
http://www.planetquake.com/dl/dl.asp?cronos/cbotpak.zip
files
hd_pak0.zip
hd_progs.zip
cronobot.zip
cbotpak.zip
https://dukeworld.com/planetquake/cronos/cronobot.zip
1.07a
https://www.gamers.org/pub/idgames2/planetquake/cronos/cronobot.zip
1.07a
https://www.quaddicted.com/files/idgames2/quakec/bots/cronobot.zip
1.01
https://www.gamers.org/pub/idgames2/quakec/bots/cronobot.zip
1.01
https://dukeworld.com/planetquake/cronos/cbotpak.zip
1.06
https://www.gamers.org/pub/idgames2/planetquake/cronos/cbotpak.zip
1.06
http://botarea51.impulse9.net/mirror/bot/cbotpak.zip
dead
https://www.gamers.org/pub/idgames2/planetquake/cronos/
https://dukeworld.com/planetquake/cronos/
https://web.archive.org/web/20100123221300/http://botepidemic.no-origin.net/quake.shtml.htm
lots of cronos bot news...
there was an 0.5 release... it was the first release after the move to planet quake
https://web.archive.org/web/20020211234942/http://www.botepidemic.com/archives/4nov98-25nov98.shtml
?
Arwing
Chronobot
nope
http://dynamic.gamespy.com/~cronos/board/
https://web.archive.org/web/20000831090658/http://dynamic.gamespy.com/~cronos/board/
https://web.archive.org/web/20020612213456/http://dynamic.gamespy.com/~cronos/board/
Oak Bot
https://dukeworld.com/idgames2/quakec/bots/oak0405.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/oak0405.zip
none of the versions work...
http://web.ukonline.co.uk/johnc/oak.htm
http://web.ukonline.co.uk/neil.henderson/theoak/
https://web.archive.org/web/19990225102735/http://web.ukonline.co.uk/neil.henderson/theoak/
http://quake.extreme3d.com/theoak/
http://www.cvnet.co.uk/theoak/
more...
https://www.bluesnews.com/archives/may97-1.html
http://botarea51.impulse9.net/mirror/bot/oak0405_fixed.zip
ftp://ftp.stomped.com/pub/redwood/bots/oak0405.zip
ftp://ftp.stomped.com/pub/redwood/bots/oak0855.zip
https://www.bluesnews.com/files/patches/bots/oak083.zip
https://www.bluesnews.com/files/patches/bots/oak084.zip
https://www.bluesnews.com/files/patches/bots/oak085.zip
https://www.bluesnews.com/files/patches/bots/oak0405.zip
http://www.telefragged.com/oak/
https://web.archive.org/web/19970529162802/http://quakemecca.simplenet.com/quakec.htm
https://web.archive.org/web/19970529162802/http://quakemecca.simplenet.com/files/downloads/oak081.zip
Oak II (quake II)
https://www.linkedin.com/in/johncrickett/
[contacted author directly via linked in]
Tutor Bot / AI cafe / Coffee
Darryl Atchison aka "coffee"
http://planetquake.com/minion/
https://web.archive.org/web/19980113014328/http://planetquake.com/minion/
https://web.archive.org/web/19981206132716/http://www.planetquake.com:80/minion/
https://web.archive.org/web/19991011225135/http://www.planetquake.com/minion/tutorial/main.htm
https://web.archive.org/web/19981205020902/http://www.planetquake.com/minion/news.htm
https://web.archive.org/web/19990224021540/http://www.planetquake.com:80/minion/news.htm
https://web.archive.org/web/20000831171304/http://www.planetquake.com:80/minion/news.htm
news?
mirrors
https://www.quaddicted.com/webarchive/minion.planetquake.gamespy.com/tutor.htm
https://www.quaddicted.com/webarchive/minion.planetquake.gamespy.com/files/tutor.zip
Roambot
CARSON SUTTON ("Gwynn" on irc, "Crimson" to quake victims)
Carson Sutton aka "Crimson"
https://www.quaddicted.com/files/idgames2/quakec/bots/roambot1.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/roambot1.zip
needed a small fix, make progs directory...
Dark Bot / Darkbot
https://web.archive.org/web/20020124063252/http://www.planetquake.com/botshop/
https://web.archive.org/web/20010723184032/http://www.planetquake.com/botshop/code/
https://www.quaddicted.com/files/idgames2/quakec/bots/drkbt11b.zip
how to use?
Terry Hendrix aka "Dark_Skye"
got it to work
old versions here???? newer by date inside the zip I think
https://dukeworld.com/planetquake/botshop/
https://web.archive.org/web/19980614160302/http://www.inside3d.com/nov24-nov25.shtml
DarkBOT release - Dark_Skye has released v0.13.1 of DarkBOT.
Dark_Skye has released v0.13.7 beta of DarkBO
https://web.archive.org/web/19980614160345/http://www.inside3d.com/nov28-nov29.shtml
Dark_Skye of Scrap Heap has released v0.13.8 of DarkBot
https://web.archive.org/web/19980614160658/http://www.inside3d.com/dec16-dec17.shtml
v0.9
https://web.archive.org/web/19970605145825/http://www.cdrom.com/pub/idgames2/newstuff/
DM Bot
https://www.gamers.org/pub/idgames2/quakec/bots/dmbot1.zip
basis for bg bot
https://quake.fandom.com/wiki/DM_Bot
Nathaniel Gorham
BGADM Bot
Detour
https://www.gamers.org/pub/idgames2/quakec/bots/bgadm101.txt
https://www.gamers.org/pub/idgames2/quakec/bots/bgadm101.zip
I had to compile manually qith qcc...
https://groups.google.com/g/dfw.jobs/c/9WYm6XtoefA/m/vjfzY8p-BoQJ
George Leithner
BPLAYER - Bot Player
https://www.quaddicted.com/files/idgames2/quakec/bots/bplayer2.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/bplayer2.zip
Wolf
Wolfgang Lehrach
http://www.pro-net.co.uk/home/wolfg_l
related to tfbot? oh yes!
There was a v1.0
Swimming Bot
baloo the bear (Greg Fukui aka julias_child)
https://www.quaddicted.com/files/idgames2/quakec/bots/swbot104.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/swbot104.zip
had to add shell casing like roambot
https://web.archive.org/web/19990223195820/http://www.iinet.net.au/~den/swimbot.html
https://web.archive.org/web/19990223195820/http://www.iinet.net.au/~den/sbotstuf.zip
TM Bot
https://quake.fandom.com/wiki/TM_Bot
https://www.quaddicted.com/files/idgames2/quakec/bots/
https://www.quaddicted.com/files/idgames2/quakec/bots/tmbot11.zip
Cujo Bot (single player)
(also author of zeus bot)
https://www.quaddicted.com/files/idgames2/quakec/bots/cujo14.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/cujo14.txt
https://dukeworld.com/idgames2/quakec/bots/cujo14.zip
https://ftp.zx.net.nz/pub/archive/ftp.gamers.org/pub/idgames2/quakec/bots/cujo14.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/cujo14.zip
https://www.gamers.org/pub/idgames2/quakec/bots/cujo14.zip
https://www.quakewiki.net/archives/qca/reviews/patch104.htm
ftp://ftp.cdrom.com/pub/quake/planetquake/qca/cujo14.zip
Jonathan E. Wright
old pages
http://www.trailerpark.com/phase1/nelno/
http://www.planetquake.com/zeus
old versions:
1.4, 1.3, 1.2c, 1.2b, 1.2a, 1.2, 1.1, 1.0
archive
https://web.archive.org/web/19981201033343/http://www.trailerpark.com/phase1/nelno/
https://web.archive.org/web/20021030231204/http://www.planetquake.com/qca/reviews/patch104.htm
http://www.planetquake.com/qca/zeus/
http://www.planetquake.com/qca/zeus/cujo14.zip
https://web.archive.org/web/19970309231443/http://www.planetquake.com/qca/zeus/
other
https://www.quakewiki.net/archives/qca/reviews/patch31.txt
CUJO12C.ZIP
http://web.archive.org/web/19961225222615/http://www.cdrom.com/pub/idgames2/quakec/monsters/
http://www.cdrom.com/pub/idgames2/quakec/monsters/cujo13.zip
usenet
cujo12c.zip
Ogre Bot
https://web.archive.org/web/20020821004023/http://www.planetquake.com/qca/reviews/patch102.htm
https://www.quaddicted.com/files/idgames2/quakec/bots/ogrebot.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/ogrebot.txt
Lava Man
HTTP://www.geocities.com/TimesSquare/Lair/1074/index.html
https://web.archive.org/web/20000125213405/http://www.geocities.com/TimesSquare/Lair/1074/news.html
Trevor McDoanld Bot (TrevBot)
http://dukeworld.com/idgames2/quakec/bots/trevbot.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/trevbot.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/trevbot.zip
Kris O'Shea
WarBot / QuakeBot / QBot
Muhammad Hidayat Bin Sman aka "Grinder"
WarBot -> QBot
http://web.singnet.com.sg/~mhidayat/WarBot/warbot.htm
http://web.singnet.com.sg/~mhidayat/WarBot/botmania.htm
https://web.archive.org/web/20000520094056/http://web.singnet.com.sg/~mhidayat/WarBot/warbot.htm
https://web.archive.org/web/20010520040437/http://web.singnet.com.sg/~mhidayat/
https://web.archive.org/web/*/web.singnet.com.sg/*
not archived
http://homer.pacific.net.sg/~grinder/warbot.htm
https://web.archive.org/web/20001022191246/http://homer.pacific.net.sg/~grinder/warbot.htm
https://web.archive.org/web/19981206075751/http://homer.pacific.net.sg/~grinder/
https://web.archive.org/web/*/http://homer.pacific.net.sg:80/~grinder/qbot11.zip
https://web.archive.org/web/*/homer.pacific.net.sg/*
not archived
v1.3
https://groups.google.com/g/rec.games.computer.quake.playing/c/ggQQDWM6Or8/m/Jm7YatYR_4MJ
13 Oct 1997
WarBot v1.3a
warbt13a.zip
warbotpk.zip
v1.4
https://www.iconbar.com/articles/Arcquake_and_QuakeC_patches/index1010.html
https://www.iconbar.com/downloads/quake/warbot.zip
warbot14_dat.zip
warbot14_pak.zip
https://web.archive.org/web/20050422011117/http://www.acornarcade.com/downloads/quake/warbot.zip
v2.0
https://groups.google.com/g/rec.games.computer.quake.misc/c/KPk8rgz9VzQ/m/Kfd1s4jgOWMJ
https://groups.google.com/g/rec.games.computer.quake.playing/c/3vT56IWT6JI/m/3pgH0X7gqQ0J
24 Nov 1997
most likely:
warbot2.zip
https://groups.google.com/g/alt.games.quake/c/Bf8A9OR-tNQ/m/cX2RwBydGccJ
v?
https://web.archive.org/web/20050206210523/http://nygmafiles.essentrix.net/bots/
http://nygmafiles.essentrix.net/bots/warbot.zip
qbot v1.1
Dec 8 1997
http://homer.pacific.net.sg/~grinder/qbot11.zip
https://web.archive.org/web/20010713110110fw_/http://www.users.qwest.net/~mimpchnk/files.htm
http://www.ionet.net/~mimpchnk/qbot11.zip
http://home.earthlink.net/~gbppap/qbot11.zip
http://www.users.qwest.net/~mimpchnk/qbot11.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/qbot11.zip
ftp://ftp.cdrom.com/pub/quake/quakec/bots/qbot11.txt
ftp://sunsite.doc.ic.ac.uk/packages/idgames2/quakec/bots/qbot11.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/qbot11.zip
https://www.quaddicted.com/files/idgames2/quakec/bots/qbot11.txt
https://dukeworld.com/idgames2/quakec/bots/qbot11.zip
https://dukeworld.com/idgames2/quakec/bots/qbot11.txt
http://www.fileplanet.com/dl.aspx?/planetquake/botarea51/bot/qbot11.zip
http://botarea51.impulse9.net/mirror/bot/qbot11.zip
general
http://www.randars.com/bots/news4.html
http://www.randars.com/bots/review.html
http://www.gweb.me.uk/gweb/quake.htm
https://www.quakewiki.net/archives/eoc/articles/cheating/index.shtml
http://games.s3n.com/quake/q_bots.htm
https://www.quakewiki.net/archives/botshop/quake.html
https://www.quakewiki.net/archives/botshop/news/quake-2.html
http://orca.ucd.ie/~gilligan/bots.html
https://web.archive.org/web/19970708154938/http://orca.ucd.ie/~gilligan/
http://orca.ucd.ie/~gilligan/warbot.zip
https://web.archive.org/web/19970708182911/http://orca.ucd.ie/~gilligan/quake.html
https://web.archive.org/web/19970709001141/http://orca.ucd.ie/~gilligan/qpatches.html
https://web.archive.org/web/*/orca.ucd.ie/*
https://www.quakewiki.net/archives/botarea51/main/qbot9c8a.html?id=23
https://web.archive.org/web/19980614160719/http://www.inside3d.com/dec18-dec19.shtml
Xreaper (reaper bot)
http://www.rmbwenw.nl/botarea51/
https://web.archive.org/web/20010504230805/http://www.rmbwenw.nl/botarea51/
https://web.archive.org/web/20100123221300/http://www.rmbwenw.nl/botarea51/files/xreaper/setup.exe
setup.exe
circa 2001
Mephisto
1.21 to 1.22
http://www.planetquake.com/botarea51/main/xreaper/index.asp
http://web.archive.org/web/20020214000745/http://www.planetquake.com/botarea51/main/xreaper/index.asp
130
http://www.planetquake.com/botarea51/main/download.asp?name=xreaperb130.zip
xreaperb130.zip
https://web.archive.org/web/20030306124958/http://www.planetquake.com/botarea51/main/xreaper/default.asp
http://hosted.planetquake.gamespy.com/botarea51/main/xreaper/default.asp
http://hosted.planetquake.gamespy.com/botarea51/main/download.asp?name=xreaperb130.zip
http://hosted.planetquake.gamespy.com/botarea51/main/downloadmirror.asp?name=xreaperb130.zip
(mirror)
http://botarea51.impulse9.net/mirror/xreaper/xreaperb130.zip
(mirror)
http://botepidemic.no-origin.net/quake.shtml.htm
https://web.archive.org/web/20100123221300/http://botepidemic.no-origin.net/quake.shtml.htm
(mirror)
https://www.quakewiki.net/archives/botarea51/main/xreaper/default.html
https://www.quakewiki.net/archives/botarea51/main/xreaper/revision.html
http://www.fileplanet.com/dl.aspx?/planetquake/botarea51/xreaper/xreaperb130.zip
versions
1.00, 1.10, 1.20, 1.21, 1.22, 1.23, 1.30
https://spac1.net/files/view/xreaper-32896240/?Li=2319856&Lii=32896240&Link_id=1719241&Lt=1&Sn=15
(bad copy of the mod...)
Ruud 'Mephisto' Heemskerk
Ruud Heemskerk
https://web.archive.org/web/20110604154841/http://members.cox.net/gbppap/xreaperb130.zip
Estep Bot (EsTePBot)
by "EsTePaRiO"
reaper
https://www.gamers.org/pub/idgames2/quakec/bots/estepbot2eng.txt
https://www.gamers.org/pub/idgames2/quakec/bots/estepbot2eng.zip
Enrique Gonzalez Alonso
https://cs10.spac.me/f/046006066143136197125049135109122007137232040151223033169236/1630273999/42289501/0/f03c03c8fce7f01e99d4e70b76464aaa/estepbot_%28bot_quake1%29-spaces.im.zip
http://members.xoom.com/_XOOM/OrbScript/estbt/estepboti.htm
not archived
https://web.archive.org/web/19991115222222/http://members.xoom.com/OrbScript/estbt/estepbot.htm
http://members.cox.net/randar/estepbot2eng.zip
https://demob.ru/content/files/42289501-estepbot-bot-quake1
http://usuarios.airastur.es/quaked/estbt/estepboti.htm
not archived
ReaperFX Bot
http://www.randars.com/bots/bots1.html
http://www.gamers.org/pub/idgames2/quakec/bots/
A. W. Johnstone aka "Pob the Impaler"
https://www.gamers.org/pub/idgames2/quakec/bots/reaper/reaperfx.txt
https://www.gamers.org/pub/idgames2/quakec/bots/reaper/reaperfx.zip
http://www.rmbwenw.nl/botarea51/
https://web.archive.org/web/20011215073721/http://www.rmbwenw.nl/botarea51/
http://www.btinternet.com/~impaler/
https://web.archive.org/web/20030709093254/http://www.btinternet.com/~impaler/
https://web.archive.org/web/20060527122327fw_/http://www.btinternet.com/~impaler/files/reaperfx.zip
http://www.btinternet.com/~impaler/files/reaperfx.zip
Gideon Bot
reaper clone
http://www.randars.com/bots/bots1.html
https://www.gamers.org/pub/idgames2/quakec/bots/gidbot.txt
https://www.gamers.org/pub/idgames2/quakec/bots/gidbot.zip
Matthew Turvey
Squirt Bot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
based on tutor
https://web.archive.org/web/20010114035500/http://www.geocities.com/TimesSquare/Hangar/8961/
https://web.archive.org/web/20010507114916fw_/http://www.geocities.com/TimesSquare/Hangar/8961/squirt13.zip
Michael Buettner aka "Squirt"
https://www.oocities.org/timessquare/hangar/8961/downloads.html
https://www.oocities.org/timessquare/hangar/8961/
(geocities mirror)
v1.0
http://www.fileplanet.com/index.asp?file=22736
https://www.oocities.org/timessquare/hangar/8961/index.html
Paddybot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
based on tutor
https://web.archive.org/web/20010114035500/http://members.tripod.lycos.nl/koolpaddy/paddybot/paddybot.htm
https://web.archive.org/web/20010622014753/http://members.tripod.lycos.nl/koolpaddy/zips/paddybot02.zip
https://web.archive.org/web/20001213060000/http://www.fileplanet.com/index.asp?section=66
https://web.archive.org/web/20010110032600/http://www.fileplanet.com/index.asp?section=66&file=28002
Cannot find file...
https://web.archive.org/web/20000815235932/http://www.botepidemic.com/quake.shtml
Patrick Stimson
https://web.archive.org/web/20000815235932/http://www.isleofmull56.freeserve.co.uk/
https://web.archive.org/web/20000815235932/http://www.isleofmull56.freeserve.co.uk/paddybot.zip
https://web.archive.org/web/20000818041929/http://modcentral.stomped.com/
???
Looks like koolio, paddy and squirt bot projects were all friends...
elf bot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
based on tutor
https://web.archive.org/web/20010114035500/http://www.planetquake.com/elf/
https://web.archive.org/web/20010226150238/http://www.planetquake.com/elf/mods.htm
https://web.archive.org/web/20010228173520/http://www.planetquake.com/elf/elfbot.htm
elfbot.zip
https://www.quaddicted.com/files/idgames2/planetquake/elf/
http://www.conversions.net/elf/elfbot.zip
Koolio Bot / KoolioBot / Koolio Arena Bot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
based on tutor
https://web.archive.org/web/20010114035500/http://www.botepidemic.com/koolio/
"Koolio"
https://www.quaddicted.com/webarchive/minion.planetquake.gamespy.com/tutorial/locdam.htm
http://www.planetkoolio.com/
https://web.archive.org/web/20010304020445/http://www.planetkoolio.com/projects.shtml
https://web.archive.org/web/20000815235932/http://www.botepidemic.com/quake.shtml
1.0.1
https://web.archive.org/web/20000815235932/http://tux.telefragged.com/file.pl?filename=kooliobot.zip&dir=telefragged/be/koolio/
http://www.angelfire.com/co2/kooliobot/
https://web.archive.org/web/20020213013855/http://www.angelfire.com/co2/kooliobot/
https://web.archive.org/web/20020411053258/http://www.angelfire.com/co2/kooliobot/images/koolio.zip
https://web.archive.org/web/20011021092620fw_/http://www.angelfire.com/co2/kooliobot/info.html
https://web.archive.org/web/20010304020445/http://www.planetkoolio.com/projects.shtml
???
https://web.archive.org/web/20010413025038/http://www.thebackburner.com/interviews/interviews.cgi?countera
"17 year old guy from the Netherlands"
https://web.archive.org/web/20000818201342/http://heffoquake.quakesrc.org/
DOBBSBot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
based on tutor
https://web.archive.org/web/20010114035500/http://www.dobbsnet.co.uk/dobbsbot.htm
http://www.dobbsnet.btinternet.co.uk/downloads/quake/dobbsbot15b.zip
http://www.dobbsnet.btinternet.co.uk/downloads/quake/dobbsbot15a.zip
https://web.archive.org/web/20100123221300/http://botepidemic.no-origin.net/quake.shtml.htm
DOBBSbot v1.5b
cannot locate
???
https://web.archive.org/web/20100123221300/http://www.dobbsnet.btinternet.co.uk/downloads/quake/dobbsbot15bwp.zip
GYPOBot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
based on tutor
https://web.archive.org/web/20010114035500/http://www.dobbsnet.co.uk/gypobot.htm
https://web.archive.org/web/20010501075107/http://www.dobbsnet.co.uk/add-ons/quake/gypobot.htm
https://web.archive.org/web/20010501075107/http://www.dobbsnet.btinternet.co.uk/downloads/quake/gypobot.zip
Square Bot / SquareBot
https://web.archive.org/web/20010129031600fw_/http://www.users.qwest.net/~mimpchnk/review.htm
based on tutor
https://www.quaddicted.com/webarchive/minion.planetquake.gamespy.com/news.htm
ZeO
https://www.quake-info-pool.net/news1999.htm
http://www.botepidemic.com/square/
was hosted, but was removed...
https://web.archive.org/web/19990208011826/http://www.botepidemic.com/
????
https://web.archive.org/web/20000303070145/http://www.botepidemic.com/bots/quake.shtml
Ashley Reynolds aka "Ze0"
webmaster of bot epidemic
https://web.archive.org/web/20000815235244/http://www.botepidemic.com/about/
Interview about square bot
https://web.archive.org/web/20011128092319fw_/http://www.planetquake.com/maxtron/interviews/ze0.shtml
First tutor bot...
v0.1a
https://web.archive.org/web/20020211235848/http://www.botepidemic.com/archives/10mar99-25mar99.shtml
Drastic Reaper Bot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
- reaper
https://web.archive.org/web/20010114035500/ftp://ftp.cdrom.com/pub/quake/quakec/bots/dreaper.zip
Drastic Reaper Bot
Mark Wheeler
https://www.quaddicted.com/files/idgames2/quakec/bots/dreaper.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/dreaper.zip
Sigmund Bot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
https://web.archive.org/web/20010114035500/http://www.telefragged.com/thefatal/
https://web.archive.org/web/20010125121200/http://www.telefragged.com/thefatal/cgi-bin/download.pl?sigbot2.zip
https://web.archive.org/web/20010125121200/http://www.telefragged.com/thefatal/cgi-bin/download.pl?sigbtsrc.zip
sigbot2.zip
https://www.richwhitehouse.com/index.php?content=inc_res.php
Indecisive Bot / Gyrobot / GyroBot
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
https://web.archive.org/web/20010114035500/http://www.cryogenius.com/games/quake/qbot.htm
gyrobot.zip
gbotsrc.zip
Aaron "Gyro Gearloose" Logue
https://www.quakewiki.net/archives/botarea51/main/qbote371.html?id=18
https://web.archive.org/web/20000815211127/http://www.cryogenius.com/games/quake/qbot.htm
** it looks like there were multiple versions with the same filename
also maybe a 1.5 was released but not on cdrom.com
http://www.iinet.net.au/~den/gyrobot.zip
https://web.archive.org/web/19990220223347/http://www.iinet.net.au/~den/
https://web.archive.org/web/19990221020935/http://www.iinet.net.au/~den/bots.html
ClanBots
https://web.archive.org/web/20001109033100/http://www.users.qwest.net/~mimpchnk/
https://web.archive.org/web/20010114035500/http://www.users.bigpond.com/clanslug/clanbot.htm
https://web.archive.org/web/20010114052600/http://www.users.bigpond.com/clanslug/ClanV0.5Auto.zip
http://www.geocities.ws/oldquaker/clanbot/index3.html
http://www.users.bigpond.com/clanslug/ClanV0.6Auto.zip
http://www.users.bigpond.com/clanslug/ClanV0.7HMan.zip
???
GuardBot
https://web.archive.org/web/20000831165233/http://planetquake.com/botshop/quake.html
Peter van Wingerden
https://www.quaddicted.com/files/idgames2/quakec/bots/grdbot23.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/grdbot23.zip
http://www.geocities.com/SiliconValley/Sector/7514/quake.htm
https://web.archive.org/web/20000305114833/http://www.geocities.com/SiliconValley/Sector/7514/quake.htm
http://petervw.club.tip.nl/quake.htm
https://web.archive.org/web/20001025114653/http://petervw.club.tip.nl/quake.htm
https://web.archive.org/web/20000930134312/http://zap.to/guardbot
http://home-4.worldonline.nl/~t625343
https://web.archive.org/web/20010105134200/http://home-4.worldonline.nl/~t625343/
https://web.archive.org/web/20001211032400/http://home-4.worldonline.nl/~t625343/quake.htm
https://web.archive.org/web/20001025211154/http://home-4.worldonline.nl/~t625343/guardbot.htm
https://web.archive.org/web/20001025211154fw_/http://home-4.worldonline.nl/~t625343/guardbot.htm
https://web.archive.org/web/20001025211154fw_/http://home-4.worldonline.nl/~t625343/guardbot.zip
Navy SEALs sQuad bots
William van der Sterren
https://web.archive.org/web/20000831165233/http://planetquake.com/botshop/quake.html
http://aiwisdom.com/ai_cooperation.html
https://www.gamasutra.com/view/feature/131447/terrain_reasoning_for_3d_action_.php
https://www.gamasutra.com/view/authors/33077/William_van_der_Sterren.php
https://www.scribd.com/document/426971606/Stuff-and-things-and-stuff
Navy SEALs sQuad bot
sqdbt201.zip
sqdbot20.txt
Minh Le
http://www.planetquake.com/qca/goose/readme.htm
https://web.archive.org/web/19990218125007/http://www.planetquake.com/qca/reviews/patch91.htm
http://www.planetquake.com/qca/goose
maybe just a weapon mod?
http://planetquake.gamespy.com/View3fdb.html?view=Quake.Detail&id=63
http://planetquake.gamespy.com/View3fdb.html?view=Quake.Detail&id=63#Files
https://4pda.to/forum/index.php?showtopic=2418&st=140
sqdbot20.txt
nseal201.zip
I think he added bots to the navy seal mod...
old versions (< 2) don't have it
http://midnight.chez.com/t_conversion.htm
https://www.quaddicted.com/files/idgames2/planetquake/
https://www.fileplanet.com/archive/p-2526/NAVY-SEALS-2-0-1
http://download.fileplanet.com/ftp1/action/quake/modifications/partial/nseal201.zip?st=UCbTiis7BF51zE3J1v7_bg&e=1622692506
Dj bot / Djbot / Djbot MK2 / DJBot
https://web.archive.org/web/20010129031600fw_/http://www.users.qwest.net/~mimpchnk/review.htm
based on tutor
little evidence
https://web.archive.org/web/20000303070145/http://www.botepidemic.com/bots/quake.shtml
http://www.botepidemic.com/quadmire/
https://www.quaddicted.com/webarchive/minion.planetquake.gamespy.com/links.htm
https://www.quaddicted.com/webarchive/minion.planetquake.gamespy.com/news.htm
DJ Quadmire site.
http://freespace.virgin.net/w.james/index.htm
https://web.archive.org/web/19991008223853/http://freespace.virgin.net/w.james/DJbot1.zip
https://web.archive.org/web/19991008223853/http://freespace.virgin.net/w.james/DJbot1.zip
https://web.archive.org/web/20000715000000*/http://freespace.virgin.net/w.james/DJbot1.zip
???
http://nygmafiles.essentrix.net/
https://web.archive.org/web/20031022175717/http://nygmafiles.essentrix.net/bots/
https://web.archive.org/web/20031022175717/http://nygmafiles.essentrix.net/bots/djbotmk2.txt
https://web.archive.org/web/20031022175717/http://nygmafiles.essentrix.net/bots/djbotmk2.zip
http://botepidemic.com/quadmire
Eliminator Bot (cbot engine)
Cameron B. Newham
usenet searches found:
http://www.iinet.com.au/~cam/quakec.html
http://www.iinet.com.au/~cam/elim10.zip
http://www.iinet.com.au/~cam/elim11.zip
http://www.iinet.com.au/~cam/elim12.zip
archive
https://web.archive.org/web/19990117033644/http://www.iinet.com.au/~cam/quakec.html
https://web.archive.org/web/19990423124151/http://www.iinet.com.au/~cam/
google searches:
http://annex.retroarchive.org/cdrom/nightowl-023/022A/ELIM11.ZIP
http://annex.retroarchive.org/cdrom/nightowl-023/022A/ELIM12.ZIP
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog1/elim12.zip
http://cd.textfiles.com/swextrav8/swextrav8-2/gamapog1/elim14.zip
src
https://www.bluesnews.com/archives/dec96-3.html
https://web.archive.org/web/20020108164713/http://www.geocities.com/timessquare/dungeon/1271/files.html
elimsrc.zip
http://redwood.gatsbyhouse.com/files/bots/elimsrc.zip
more
https://www.quaddicted.com/magazines/cd_zone_issue_48_march_1997
http://botarea51.impulse9.net/mirror/bot/elim14.zip
https://www.quakewiki.net/archives/botarea51/main/qbot8bcf.html?id=30
http://www.fileplanet.com/dl.aspx?/planetquake/botarea51/bot/elim14.zip
https://www.theguardian.com/artanddesign/2019/dec/27/australian-on-mission-to-photograph-every-parish-church-in-england
https://www.quakewiki.net/quake-1-bots/
See the comment at the bottom of the page
Eliminator v1 (elim14 -> elim141)
https://www.quaddicted.com/files/idgames2/quakec/bots/eliminator/
https://www.quaddicted.com/files/idgames2/quakec/bots/eliminator/elim141.zip
Extension after Newham released the source
Jonathan Down (Perged <S.T.K.>)
http://www.ccn.cs.dal.ca/~ae142/homepage.html
http://www.ccn.cs.dal.ca/~ae142/
https://web.archive.org/web/19990220160146/http://www.ccn.cs.dal.ca/~ae142/
http://www.planetquake.com/eliminator/
https://web.archive.org/web/19990202102720/http://www.planetquake.com/eliminator/
Eliminator v2
Perged <S.T.K> and FuzzKatT <S.T.K>
elim20b6.zip
http://www.ccn.cs.dal.ca:80/~ae142/Elim20b6.zip
https://groups.google.com/g/fido7.ru.game.doom/c/hIPwTQWePuU/m/ApL-fFci1HEJ
Elim20b6.zip
https://groups.google.com/g/fido7.ru.game.doom/c/nPIibHJq5IQ/m/qCteR8LrfzIJ
Elim20b6.zip
elim20b7.zip
http://www3.ns.sympatico.ca/jdown/Files/elim20b7.zip
http://users.andara.com/~jdown/elim20b7.zip
http://users.andara.com/~jdown/beta7.txt
http://www.planetquake.com/eliminator/Files/elim20b7.zip
http://www.planetquake.com/eliminator/Files/beta7.txt
http://botarea51.impulse9.net/mirror/bot/elim20b7.zip
http://www.fileplanet.com/dl.aspx?/planetquake/botarea51/bot/elim20b7.zip
https://groups.google.com/g/fido7.ru.game.doom.uue/c/O8zBlHaGaOQ/m/XS05lD-IoqMJ
encoded_portion_removed
https://groups.google.com/g/fido7.odessa.fileecho/c/z3RIvRTEr38/m/Dh5TGeQeBt0J
BOTS.RAR 162,761 Eliminator Bots 2.0 for Quake
https://groups.google.com/g/fido7.odessa.fileecho/c/fLBrw4I54cU/m/t_p39Zt8F1UJ
ELIMBOT.RAR 163K 22-Mar-98 Eliminator Bot 2.0 for Quake
http://www.ccn.cs.dal.ca/~ae142/
https://web.archive.org/web/19990220160146/http://www.ccn.cs.dal.ca/~ae142/
https://web.archive.org/web/*/www.ccn.cs.dal.ca/*
https://web.archive.org/web/1999*/http://www.ccn.cs.dal.ca:80/~ae142/Elim20b6.zip
http://www.chebucto.ns.ca/~ae142/
https://web.archive.org/web/19990222141129/http://www.chebucto.ns.ca/~ae142/
https://web.archive.org/web/*/www.chebucto.ns.ca/*
not archived
http://users.andara.com/~jdown
https://web.archive.org/web/20010722222408/http://users.andara.com/~jdown/
https://web.archive.org/web/*/users.andara.com/*
https://web.archive.org/web/20010129113500/http://users.andara.com/~jdown/elim20b7.zip
https://web.archive.org/web/20010129113500/http://users.andara.com/~jdown/beta7.txt
https://web.archive.org/web/19981206061937/http://users.andara.com:80/~jdown/v106.txt
http://www3.ns.sympatico.ca/jdown/
http://www3.ns.sympatico.ca/jdown/Files/elim20b7.zip
not archived
http://www3.ns.sympatico.ca/ptcraig/
not archived
http://www.planetquake.com/eliminator/
https://web.archive.org/web/19990202102720/http://www.planetquake.com/eliminator/
https://web.archive.org/web/*/www.planetquake.com/*
https://web.archive.org/web/20010129113500fw_/http://www.planetquake.com/eliminator/files.html
https://web.archive.org/web/19990202223528/http://www.planetquake.com:80/eliminator/elim1.html
https://web.archive.org/web/20010305201443fw_/http://www.planetquake.com/eliminator/Files/elim20b7.zip
https://web.archive.org/web/20010305201443fw_/http://www.planetquake.com/eliminator/Files/beta7.txt
http://bounce.to/railbait
https://web.archive.org/web/20010512122516/http://bounce.to/railbait
other
http://www.insideqc.com/modindex/qreview/patch7.shtml
EliminatorBot 2.0 b6
https://web.archive.org/web/19980614160010/http://www.inside3d.com/nov08-nov09.shtml
beta 6 has a big bug, fixed in beta 7
Doombot
Roscoe A. Sincero AKA Legion
https://www.quaddicted.com/files/idgames2/quakec/bots/dmbt21b3.txt
https://www.quaddicted.com/files/idgames2/quakec/bots/dmbt21b3.zip