-
Notifications
You must be signed in to change notification settings - Fork 12
/
sample.yaml
3476 lines (3476 loc) · 129 KB
/
sample.yaml
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
global:
"-- Select a country --": ""
"--- Bot decision ---": ""
"--- Currently active planet/moon ---": ""
"--- Default ---": ""
"--- Select a destination ---": ""
"--- Select a planet/moon ---": ""
"--- Select origin moon ---": ""
"0-15min": ""
"1 bot": ""
"1- Recovery code": ""
"16-40min": ""
"2 days one-time trial": ""
"2- Scan this barcode with your app.": ""
"2-steps (planets then moons)": ""
"3 - 20 letter/number/underscore. eg: ": ""
"3- Enter the six-digit code from the application": ""
"30 days license": ""
"41-60min": ""
"6-digit code": ""
"<b>DISCLAIMER:</b> IP address will change at login. Do not use important accounts on cloud unless you understand what you are doing.": ""
"<b>Warning:</b> This will override existing scripts that have the same name.": ""
"<strong>Warning:</strong> this is to change the credentials that the bot uses to log into OGame, not to change your lobby password.": ""
"ACS Attack": ""
"ACS planner": ""
"AI": ""
"API": ""
"API key": ""
"Abort all sessions": ""
"Abort session": ""
"Academy Of Sciences": ""
"Account": ""
"Acoustic Scanning": ""
"Actions": ""
"Activate all": ""
"Active": ""
"Active players": ""
"Activities": ""
"Activity": ""
"Add account to lobby ?": ""
"Add alliance to ignore list": ""
"Add credit to my account": ""
"Add player to ignore list": ""
"Add target to ignore list if defenses above the setting": ""
"Add target to ignore list if the minimum storage is not met": ""
"Add to hunter list": ""
"Add to queue": ""
"Additional cargo": ""
"Additional cargo to send when attacking": ""
"Admin": ""
"Admin account": ""
"Advanced": ""
"Advanced Recycling Plant": ""
"After scanning the barcode image, the app will display a six-digit code that you can enter below.": ""
"All": ""
"All bots that I have access to": ""
"All suggestions": ""
"Alliance": ""
"Alliance Class": ""
"Alliance Depot": ""
"Alliance rank": ""
"Always": ""
"Anti Ballistic Missiles": ""
"Anti-Ballistic Missiles": ""
"AntiGame for Ninja": ""
"Antigame": ""
"Antimatter Condenser": ""
"Antimatter Convector": ""
"App language": ""
"Arch": ""
"Are you sure?": ""
"Armour": ""
"Armour Technology": ""
"Arrival": ""
"Arrival time": ""
"Arrive at": ""
"Arrive in": ""
"Artificial Swarm Intelligence": ""
"Assembly Line": ""
"Astrophysics": ""
"Att": ""
"Attack": ""
"Attack as soon as we find a suitable target": ""
"Attack from nearest moon": ""
"Attack from nearest planet": ""
"Attack from the closest moon to the target": ""
"Attack from the closest moon/planet to the target": ""
"Attack players even if they have ships/defenses": ""
"Attack players with defenses": ""
"Attack speed": ""
"Attack target with preferred cargo ships": ""
"Attack target with spy probes": ""
"Attack targets with spy probes": ""
"Attack type": ""
"Attacker": ""
"Attacker win": ""
"Auctioneer": ""
"Auctioneer active": ""
"Auctioneer configs": ""
"AudioCtxHash": ""
"AudioHash": ""
"Audit": ""
"Augmented browsing experience": ""
"Auto enable manual mode when using browser": ""
"Automated Transport Lines": ""
"Automatic fleet": ""
"Automatised Assembly Centre": ""
"Available!": ""
"Awake bot now": ""
"B": ""
"Backup the file in": ""
"Backup this bot": ""
"Batch update": ""
"Battlecruiser": ""
"Battlecruiser MkII": ""
"Battleship": ""
"Bid from": ""
"Bio Modifier": ""
"Biosphere Farm": ""
"BiotechLab": ""
"Bomber": ""
"Bomber MkII": ""
"Bot": ""
"Bot exit sleep mode": ""
"Bot goes to sleep mode": ""
"Bot is being initialized, please wait until you get automatically redirected...": ""
"Bot timezone": ""
"Bots": ""
"Bots allowed": ""
"Brain": ""
"Brain active": ""
"Brain activities": ""
"Brain configs": ""
"Browser": ""
"Browser augments": ""
"Browser engine name": ""
"Browser name": ""
"Build": ""
"Build ABM on missiles attack detected": ""
"Build fusion reactor": ""
"Build jump gate": ""
"Build lifeform buildings": ""
"Build lifeform researches": ""
"Build solar satellites": ""
"Building": ""
"Buildings": ""
"Buildings info": ""
"Buy license": ""
"Buy now": ""
"CE": ""
"CalcDeltaMs": ""
"Calls to simulator will be proxied to the remote simulator server": ""
"Cancel": ""
"Cancel Fleet": ""
"Cancel evacuation": ""
"Cancel scheduled flight": ""
"Canvas2dInfo": ""
"Captcha": ""
"Captchas": ""
"Captured": ""
"Cargo": ""
"Cargo Hold Expansion Civilian Ships": ""
"Cargo capacity": ""
"Cargo's needed": ""
"Catalyser Technology": ""
"Category": ""
"Celestial from where to spy & attack": ""
"Change my username": ""
"Change ogame credentials": ""
"Change password": ""
"Change proxy": ""
"Change username": ""
"Changelog": ""
"Character Class": ""
"Check again": ""
"Check attacks": ""
"Check interval (seconds)": ""
"Checks for activity from homeworld": ""
"Checks for activity from latest active planet/moon": ""
"Chip Mass Production": ""
"Chrysalis Accelerator": ""
"Clear all construction queues": ""
"Clear player data": ""
"Click \"Renew license\" button": "" # (unused)
"Click here to load current fleets": ""
"Click on a fleet to get timing details": ""
"Cloning Laboratory": ""
"Colonisation": ""
"Colonize": ""
"Colonize using": ""
"Colonizer": ""
"Colonizer configs": ""
"Colony Ship": ""
"Color legend": ""
"Combat simulator": ""
"Combustion": ""
"Combustion Drive": ""
"Commander UI": ""
"Compile & download": ""
"Compiled scripts": ""
"Computer Technology": ""
"Configs": ""
"Confirm new password": ""
"Confirm password": ""
"Conqueror": ""
"Constant version": ""
"Construction queue": ""
"Coord": ""
"Coordinate": ""
"Coordinates": ""
"Coords": ""
"Countdowns": ""
"Counter espionage": ""
"Country": ""
"Crawl": ""
"Crawl systems": ""
"Crawler": ""
"Crawler setting": ""
"Create": ""
"Create admin account": ""
"Create lobby ?": ""
"Create script on all bots": ""
"Create theme": ""
"Create user": ""
"Created": ""
"Created at": ""
"Credit or debit card": ""
"Cron jobs": ""
"Cruiser": ""
"Cruiser MkII": ""
"Crystal": ""
"Crystal Farm": ""
"Crystal Mine": ""
"Crystal Refinery": ""
"Crystal Storage": ""
"Crystal setting": ""
"Current": ""
"Current fleets": ""
"Current license valid until": ""
"Current planet": ""
"D": ""
"DS": ""
"Dangerous": ""
"Date": ""
"DateISO": ""
"Deactivate all": ""
"Deathstar": ""
"Debris": ""
"Debris top 100": ""
"Default": ""
"Defence": ""
"Defence repair factor": ""
"Defence to debris": ""
"Defender": ""
"Defender active": ""
"Defender activities": ""
"Defender configs": ""
"Defender will ignore attacks from players in this list": ""
"Defender win": ""
"Defense points": ""
"Defense pts": ""
"Defenses": ""
"Defenses info": ""
"Delay after exporting resources": ""
"Delay between fleet (secs)": ""
"Delay between waves (secs)": ""
"Delete account": ""
"Delete all keys": ""
"Delete bot": ""
"Delete combat reports": ""
"Delete combat reports once the farmer is done using it": ""
"Delete cron job": ""
"Delete expedition messages once imported": ""
"Delete fingerprint": ""
"Delete flight": ""
"Delete project": ""
"Delete script": ""
"Delete spy reports once imported": ""
"Delete theme": ""
"Delete this bot": ""
"Delete user": ""
"Delete your account": ""
"Deleted at": ""
"Depart at": ""
"Deployment": ""
"Depot AI": ""
"Depth Sounding": ""
"Desktop notification when attacked": ""
"Destination": ""
"Destroy": ""
"Destroyer": ""
"Destroyer MkII": ""
"Deut": ""
"Deut synt setting": ""
"Deuterium": ""
"Deuterium Synthesiser": ""
"Deuterium Synthesizer": ""
"Deuterium Tank": ""
"Deuterium save factor": ""
"Diamond Energy Transmitter": ""
"Disable ogame dropdown (fix jump gate on mobile)": ""
"Disable two-factor authentication": ""
"Disabled": ""
"Discord": ""
"Discord webhook for notifications": ""
"Discover": ""
"Discovery": ""
"Discovery configs": ""
"Discovery using": ""
"Disruption Chamber": ""
"Documentation": ""
"Domain": ""
"Donut galaxy": ""
"Donut system": ""
"Download": ""
"Download all scripts": ""
"Download logs": ""
"Download ogame ninja binary for your OS": ""
"Download scripts": ""
"Downloads": ""
"Draw": ""
"Dump remaining resources in defenses": ""
"Dur": ""
"Duration": ""
"Edit cron job": ""
"Edit file name": ""
"Efficiency Module": ""
"Efficient Swarm Intelligence": ""
"Email": ""
"Email Address": ""
"Email for notifications": ""
"Empire": ""
"Empire page": ""
"Empire view": ""
"Enable": ""
"Enable Expe-3000": ""
"Enable InfoCompte3": ""
"Enable NixianRaidTracker": ""
"Enable RecursosAmpliados": ""
"Enable TopRaider": ""
"Enable browser augments": ""
"Enable galaxy browser augments": ""
"Enable two-factor authentication": ""
"Energy": ""
"Energy Technology": ""
"Enhanced Production Technologies": ""
"Enhanced Sensor Technology": ""
"Enter a two-factor recovery code": ""
"Enter your email address to retrieve your password": ""
"Enter your password": ""
"Espionage": ""
"Espionage Probe": ""
"Espionage Technology": ""
"Espionage probe": ""
"Espionage probe raids": ""
"Espionage report": ""
"Evacuate seconds before attack": ""
"Evacuation configs": ""
"Evacuation fails": ""
"Evacuation speed on destroy attacks": ""
"Every day": ""
"Exp": ""
"Expedition": ""
"Expedition loss": ""
"Expedition speed": ""
"Expeditions": ""
"Expeditions active": ""
"Expeditions configs": ""
"Expeditions origin": ""
"Experimental Recycling Technology": ""
"Experimental Weapons Technology": ""
"Expired": ""
"Expired at": ""
"Expires": ""
"Expires at": ""
"Export bots": ""
"Export within same galaxy only": ""
"Exporter?": ""
"Extract expedition messages": ""
"F": ""
"FAQ": ""
"Facilities": ""
"Failed to fleet save": ""
"Failed to hide all reports": ""
"Fake browser javascript fingerprint": ""
"Farm session": ""
"Farm session completed": ""
"Farm session started": ""
"Farm sessions": ""
"Farmer": ""
"Farmer active": ""
"Farming": ""
"Fast attacking": ""
"Features": ""
"Fields": ""
"File name": ""
"Files saved": ""
"Fingerprint": ""
"Fingerprint name": ""
"Fingerprints": ""
"Fleet info": ""
"Fleet log": ""
"Fleet save": ""
"Fleet speed": ""
"Fleet to debris": ""
"Flight": ""
"Flight time": ""
"Flights": ""
"FontsHash": ""
"Food Silo": ""
"Forum Of Transcendence": ""
"Forward ingame chat from alliance": ""
"Forward ingame chat from players": ""
"Friday": ""
"Fuel": ""
"Fuel Consumption": ""
"Fuel consumption": ""
"Full license": ""
"Fullscreen": ""
"Fusion Cell Factory": ""
"Fusion Drives": ""
"Fusion Powered Production": ""
"Fusion Reactor": ""
"Fusion reactor setting": ""
"Galaxy": ""
"Game1DateHeader": ""
"Gameforge bearer token": ""
"Gameforge email": ""
"Gameforge password": ""
"Gauss Cannon": ""
"General": ""
"General Overhaul Battlecruiser": ""
"General Overhaul Battleship": ""
"General Overhaul Bomber": ""
"General Overhaul Cruiser": ""
"General Overhaul Destroyer": ""
"General Overhaul Light Fighter": ""
"General info": ""
"General options": ""
"Generate a one-time password with": ""
"Geothermal Power Plants": ""
"Get free trial key": ""
"Get spy reports": ""
"Get started": ""
"Get trial key": ""
"Get trial license": ""
"Gift cards": ""
"Gives you access to your self-host server through": ""
"Global": ""
"Go": ""
"Gravitation Sensors": ""
"Graviton Technology": ""
"Grouped Attack": ""
"Grouped attack": ""
"HTTP client timeout": ""
"Halls Of Realisation": ""
"Hardened Diamond Drill Heads": ""
"Hardware concurrency": ""
"Harvest": ""
"Heat Recovery": ""
"Heavy Fighter": ""
"Heavy Laser": ""
"Hide all": ""
"Hide all reports ?": ""
"High Energy Pump Systems": ""
"High Energy Smelting": ""
"High Performance Extractors": ""
"High Performance Synthesiser": ""
"High Performance Terraformer": ""
"High Performance Transformer": ""
"High Temperature Superconductors": ""
"Highest bid value": ""
"History": ""
"Home": ""
"Homeworld": ""
"Honour points": ""
"Host eg: smtp.gmail.com": ""
"Host machine Timezone": ""
"Hotkeys": ""
"Http proxy": ""
"Http proxy url:": ""
"Humans": ""
"Humans buildings": ""
"Humans researches": ""
"Hunter": ""
"Hunter colors": ""
"Hunter configs": ""
"Hyperspace": ""
"Hyperspace Drive": ""
"Hyperspace Technology": ""
"Hyperspace tech": ""
"I don't want to wait": ""
"I forgot my password": ""
"ID": ""
"IP": ""
"Icons": ""
"If you wish to use the two-factor authentication on your gameforge account without having to use the proprietary app made by gameforge...": ""
"Ignore alliance": ""
"Ignore inactive players who have activity on their planet": ""
"Ignore min deut": ""
"Ignore planet": ""
"Ignore player": ""
"Ignore targets with activity": ""
"Ignored planets": ""
"Images URL": ""
"Import bot": ""
"Import bots": ""
"Import resources & build": ""
"Importer": ""
"Importer?": ""
"Improved Drone AI": ""
"Improved Lab Technology": ""
"Improved Stellarator": ""
"Impulse": ""
"Impulse Drive": ""
"In a terminal, execute": ""
"In use": ""
"InGame date": ""
"Inactive": ""
"Inactive players": ""
"Individual": ""
"Instructions how to install and run": ""
"Intergalactic Envoys": ""
"Intergalactic Research Network": ""
"Interplanetary Analysis Network": ""
"Interplanetary Missiles": ""
"Interval between system scan": ""
"Ion Cannon": ""
"Ion Crystal Enhancement Heavy Fighter": ""
"Ion Crystal Modules": ""
"Ion Technology": ""
"Is Collector": ""
"Is Discoverer": ""
"Is General": ""
"Is admin": ""
"Is cloud": ""
"Is general?": ""
"Join our Slack server! If you haven't used Slack before: it's free, secure, and works on both your desktop and phone.": ""
"Join the server now": ""
"Jump Gate": ""
"Jump gate": ""
"Kaelesh": ""
"Kaelesh Discoverer Enhancement": ""
"Kaelesh buildings": ""
"Kaelesh researches": ""
"Key": ""
"Key/value storage": ""
"LC": ""
"LC that will not be send with auto-split": ""
"Lang": ""
"Languages": ""
"Large Cargo": ""
"Large Cargo to stay": ""
"Large Shield Dome": ""
"Large cargo": ""
"Laser Technology": ""
"Learn more": ""
"Level": ""
"License": ""
"License expired": ""
"Licenses": ""
"Lifeform buildings": ""
"Lifeform researches": ""
"Light Fighter": ""
"Light Fighter MkII": ""
"Light Laser": ""
"List all your 2fa with": ""
"Load in simulator": ""
"Login": ""
"Login fails": ""
"Login history": ""
"Logins": ""
"Logs": ""
"Logs retention (days)": ""
"Loot": ""
"Losses": ""
"Low Temperature Drives": ""
"Lunar Base": ""
"Magma Forge": ""
"Magma Powered Production": ""
"Magma Powered PumpSystems": ""
"Main planet": ""
"Manual": ""
"Manual fleet save": ""
"Map": ""
"Max brain slots": ""
"Max colonizer slots": ""
"Max discovery slots": ""
"Max expeditions slots": ""
"Max farmer slots": ""
"Max repatriate slots": ""
"Max script slots": ""
"Max spyer slots": ""
"MechanGeneral Enhancement": ""
"Mechas": ""
"Mechas buildings": ""
"Mechas researches": ""
"MediaDevicesHash": ""
"Meditation Enclave": ""
"Megalith": ""
"Members": ""
"Memory": ""
"Message": ""
"Messages": ""
"Metal": ""
"Metal Mine": ""
"Metal Storage": ""
"Metal setting": ""
"Metropolis": ""
"Microchip Assembly Line": ""
"Min. defenses to ignore": ""
"Min. player rank": ""
"Min. resources to attack": ""
"Mineral Research Centre": ""
"Minimum Pathfinders": ""
"Minimum amount of pathfinders needed to consider a debris field": ""
"Minimum fields": ""
"Minimum level of storage": ""
"Minimum possible loot to attack a target": ""
"Minimum speed": ""
"Minimum speed for the early PF": ""
"Minimum temperature": ""
"Missile Attack": ""
"Missile Silo": ""
"Mission": ""
"Monday": ""
"Moon": ""
"Moon Destruction": ""
"Moonchance": ""
"Moons": ""
"Moons only": ""
"My bots": ""
"My licenses": ""
"My proxies": ""
"My servers": ""
"Name": ""
"Nanite Factory": ""
"Nano Repair Bots": ""
"Navigator vendor": ""
"NavigatorDoNotTrack": ""
"Nb Probes": ""
"Nb probes": ""
"Need application restart": ""
"Neuro Calibration Centre": ""
"Neuro Interface": ""
"Neuromodal Compressor": ""
"Never": ""
"Never wait (100% getting ban)": ""
"New attack detected": ""
"New bot": ""
"New fingerprint": ""
"New license": ""
"New license valid until": ""
"New missiles attack detected": ""
"New ogamex bot": ""
"New password": ""
"New project": ""
"New proxy": ""
"New script": ""
"New server": ""
"New session": ""
"New suggestion": ""
"New theme": ""
"New ticket": ""
"New trial license": ""
"New user": ""
"New username": ""
"Next": ""
"No": ""
"No activity": ""
"No cron job at the moment": ""
"No data to display": ""
"No espionage report to show": ""
"No evacuations": ""
"No files to display": ""
"No fleet in the log": ""
"No fleets": ""
"No gift card to show": ""
"No license to display": ""
"No logs to show": ""
"No messages to show": ""
"No notifications": ""
"No plans": ""
"No players whitelisted": ""
"No proxy to display": ""
"No saved flights": ""
"No scheduled flights": ""
"No servers to display": ""
"No session": ""
"No session to display": ""
"No subscription to show": ""
"No targets": ""
"No theme": ""
"None": ""
"Note": ""
"Notifications": ""
"Notify small fleet attacks (< 1/3 firepower)": ""
"Notify when inactive for": ""
"Number of probes to send when spying": ""
"Number to send": ""
"OGT (OGame Timezone)": ""
"OGame Ninja": ""
"OGame preferences": ""
"OGame proxy": ""
"OS": ""
"OTP secret": ""
"Obsidian Shield Reinforcement": ""
"OfflineAudioCtx": ""
"Ogame password": ""
"Ogame universe": ""
"Ogame username": ""
"OgameX email": ""
"OgameX password": ""
"Old password": ""
"Open .ogame folder": ""
"Open in BattleSim": ""
"Open in OGame browser": ""
"Open in battlesim": ""
"Open locals folder": ""
"Optimised Silo Construction Method": ""
"Orbital Den": ""
"Origin": ""
"Oriktorium": ""
"Os name": ""
"Other actions": ""
"Overclocking Battleship": ""
"Overclocking Heavy Fighter": ""
"Overclocking Large Cargo": ""
"Overview": ""
"Own debris field": ""
"Owner": ""
"PF": ""
"PF that will not be send with auto-split nor for recycle": ""
"PF will be send to arrive at the same time as debris field is created (if any)": ""
"Park": ""
"Park In That Ally": ""
"Password": ""
"Password recovery": ""
"Pathfinder": ""
"Pathfinders": ""
"Pathfinders to stay": ""
"Pause session": ""
"Pause/unpause": ""
"Pay with Credit/debit card": ""
"Pay with paypal": ""
"Paypal subscriptions can be cancelled at any time in your paypal account": ""
"PermissionsStatesHash": ""
"Phalanx": ""
"Phalanx all": ""
"Phalanx all coordinates": ""
"Phalanx session": ""
"Phase": ""
"Place script here": ""
"Planet": ""
"Planet name": ""
"Planet/Moon": ""
"Planetary Shield": ""
"Planets": ""
"Planets and moons": ""
"Planets only": ""
"Planets/moons with activity only": ""
"Plasma Drive": ""
"Plasma Technology": ""
"Plasma Terraformer": ""
"Plasma Turret": ""
"Play sound when attacked": ""
"Player": ""
"Player ID": ""
"Player name": ""
"Player profile": ""
"Player rank": ""
"Please": ""
"Please contact admins": ""
"Please contact ogame.ninja admins": ""
"Please update": ""
"Plnaets/moons with activity only": "" # (unused)
"PluginsHash": ""
"Plunder": ""
"Points": ""
"Port eg: 587": ""
"Possible": ""
"Preferred destination": ""
"Preferred transport ships": ""
"Prev": ""
"Prevent if come back during sleep time": ""
"Prevent importing if come back during sleep time": ""
"Price": ""
"Pricing": ""
"Prioritize nanite factory": ""
"Priority Slack support": ""
"Priority calculation": ""
"Priority ratio": ""
"Probe new attackers": ""
"Production Assembly Hall": ""
"Profit": ""
"Project name": ""
"Proposals": ""
"Proxies": ""
"Proxies parameters": ""
"Proxy": ""
"Proxy password": ""
"Proxy username": ""
"Psionic Modulator": ""
"Psionic Network": ""
"Psionic Shield Matrix": ""
"Psychoharmoniser": ""
"Put bot to sleep now": ""
"Quantum Computer Centre": ""
"Questions": ""
"Queue": ""
"Queue tear down": ""
"R": ""
"RN": ""
"Random colonize": ""
"Random debris field": ""
"Random delay before going to sleep (minutes)": ""
"Random delay before waking up (minutes)": ""
"Randomize moon that checks for activity": ""
"Randomize planet/moon that checks for activity": ""
"Range": ""
"Range to farm": ""
"Rank": ""
"Rank range": ""
"Rapidfire against": ""
"Rapidfire from": ""
"Re-process existing messages": ""
"Reaper": ""
"Recall back at": ""
"Recall of fleets": ""
"Recall saved fleet half way through the night": ""
"Recall seconds after attack": ""
"Recall time": ""
"Recovery code": ""
"Recovery code is used to access your account in the event you cannot receive two-factor authentication codes.": ""
"Recycle debris": ""
"Recycle debris field": ""
"Recycler": ""
"Recyclers Needed": ""
"Redeem code": ""
"Redo": ""
"Region": ""
"Register": ""
"Reload locals": ""
"Remote simulator": ""
"Remove ads": ""
"Remove all": ""
"Remove banner": ""
"Renew instance": ""
"Renew license": ""
"Reorder bots": ""
"Reorder planets": ""
"Repatriate": ""
"Repatriate configs": ""
"Repatriate interval": ""
"Repatriate now": ""
"Repatriate random order": ""
"Repatriate resources": ""
"Report": ""
"Reschedule evacuation": ""
"Research": ""
"Research AI": ""
"Research Centre": ""
"Research Lab": ""
"Research Network": ""
"Research speed": ""
"Researches info": ""
"Reset password": ""
"Reset root password": ""
"Residential Sector": ""
"Resources": ""
"Resources to": ""
"Restart app": ""
"Result": ""
"Resume session": ""
"Retrieve Password": ""
"Return": ""
"Retype password": ""
"Reverse tunnel": ""
"Revoke": ""
"Robot Assistants": ""
"Robotics Factory": ""
"Robotics Research Centre": ""
"Rocket Launcher": ""
"Rocktal": ""
"Rocktal Collector Enhancement": ""
"Rocktal buildings": ""
"Rocktal researches": ""
"Root admin cannot delete his account": ""
"Round up resources": ""
"Round up ships": ""
"Rounds": ""
"Run": ""
"Run at start": ""
"Rune Forge": ""
"Rune Shields": ""
"Rune Technologium": ""
"Runtime": ""
"SC": ""
"SC that will not be send with auto-split": ""
"SHA256 Checksum": ""
"SMTP settings (email)": ""
"SQL": ""
"Sanctuary": ""
"Saturday": ""
"Save": ""
"Save fleet": ""
"Save proxy": ""
"Save script": ""
"Saved fleets": ""
"Scan": ""
"Scan frequency": ""
"Scan the image above with the two-factor authentication app on your phone. If you can’t use a barcode, enter": ""
"Scan this page": ""
"Scan universe": ""
"Scan using": ""
"Scanner": ""
"Scans the whole universe every set amount of hours.": ""
"Schedule": ""
"Schedule fleet": ""
"Scheduled arrive time": ""
"Scheduled flights": ""
"Screen color depth": ""
"Screen height": ""
"Screen width": ""
"Script file name": ""
"Scripts": ""
"Scripts examples": ""
"Search": ""
"Search for lifeforms": ""
"Secs after expedition": ""
"Seismic Mining Technology": ""
"Select one": ""
"Select origin": ""
"Self hosting license parameters": ""
"Self-host": ""
"Send all resources": ""
"Send all ships": ""
"Send attack": ""
"Send fleet": ""
"Send flight": ""
"Send message to attackers": ""
"Send recyclers": ""
"Sensor Phalanx": ""
"Sent fleets": ""
"Servers": ""
"Service": ""
"Session aborted": ""
"Sessions": ""
"Set all moons": ""
"Set all planets": ""
"Settings": ""
"Share account": ""
"Share with": ""
"Shield": ""
"Shield power": ""
"Shielding Technology": ""
"Ship Manufacturing Hall": ""
"Ship points": ""
"Ships": ""
"Ships per expedition": ""
"Ships to": ""
"Ships/Defenses": ""
"Shipyard": ""
"Show credentials": ""
"Sign in": ""
"Sign in to continue": ""
"Sign out": ""
"Sign up": ""
"Signer": ""
"Simulate": ""
"Simulations": ""
"Simulator": ""
"Sixth Sense": ""
"Size": ""
"Skip sus login wait": ""
"Skip the target if player rank is over setting": ""
"Skyscraper": ""
"Slack": ""
"Slack account": ""
"Slack support": ""
"Slack username for notifications": ""
"Sleep Mode": ""
"Sleep mode": ""
"Sleeping": ""
"Slingshot Autopilot": ""
"Slots allowed": ""
"Slots reserved for player": ""
"Small Cargo": ""
"Small Cargo to stay": ""
"Small Shield Dome": ""
"Small cargo": ""
"Socks5 proxy": ""
"Socks5 server": ""
"Software is too old": ""
"Solar Plant": ""
"Solar Satellite": ""
"Solar plant setting": ""
"Solar sat setting": ""
"Solve captcha": ""
"Sort planets in dropdowns by": ""