-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstrings.log
9555 lines (9525 loc) · 481 KB
/
strings.log
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
String ID #0: You Survived
String ID #1: N1Z1
String ID #2: Scrap Metal
String ID #3: Knife
String ID #4: Cloth Sheet
String ID #5: Sleeping Mat
String ID #6: Bed
String ID #7: Tent
String ID #8: Backpack
String ID #9: Coffee
String ID #10: Ground Coffee
String ID #11: Packet of Sugar
String ID #12: Wildlife - Tier 1
String ID #13: Vehicle
String ID #14: ATTACK
String ID #15: [[*key*]] Enter Vehicle
String ID #16: OffRoader
String ID #17: OffRoader Description
String ID #18: Z1
String ID #19: mmmmmm beer
String ID #20: Hi there dude
String ID #21: Rabbit
String ID #22: Bottle of Water
String ID #23: Roel's Sliced Beets
String ID #24: M1911A1
String ID #25: Hatchet
String ID #26: Flare
String ID #27: Torch
String ID #28: Ammo
String ID #29: [[*key*]] Take [*target*]
String ID #30: Parent Category
String ID #31: [[*key*]] Open [*target*]
String ID #32: AR-15
String ID #33: Bundles
String ID #34: Survival Gear
String ID #35: Food
String ID #36: Drink
String ID #37: Clothing
String ID #38: Gunpowder
String ID #39: Placeable Armoire
String ID #40: Set it on fire!
String ID #41: Set it on fire!
String ID #42: Campfire
String ID #43: Wood Log
String ID #44: Raw Chicken
String ID #45: Cooked Chicken
String ID #46: ExtraCrispyChicken
String ID #47: Fertilizer
String ID #48: Charcoal
String ID #49: Scrap of Cloth
String ID #50: Venison
String ID #51: Salt Packet
String ID #52: Deer Jerky
String ID #53: Bandage
String ID #54: Metal Bar
String ID #55: Rotten Chicken
String ID #56: Rotten Chicken
String ID #57: Metal Sheet
String ID #58: Pipe
String ID #59: Player
String ID #60: Zombie Walker
String ID #61: Wildlife - Tier 1
String ID #62: Items
String ID #63: Container
String ID #64: InteractableObject
String ID #65: Zombie
String ID #66: Survivor
String ID #67: StaticItems
String ID #68: Trash
String ID #69: Case of Water Bottles
String ID #70: Can Opener
String ID #71: Safe House Depot
String ID #72: Root Category
String ID #73: Crates
String ID #74: Survival Gear
String ID #75: Food
String ID #76: Drink
String ID #77: Clothing
String ID #78: [[*key*]] Use Door
String ID #79: Wildlife
String ID #80: Red Hat
String ID #81: Test Chest
String ID #82: Test Legs
String ID #83: Test Shoes
String ID #84: Wood Axe
String ID #85: First Blood
String ID #86: Deer Steak
String ID #87: Cooking Oil
String ID #88: Cooking Oil - Used as a recipe ingredient
String ID #89: This meat is raw and must be cooked before consuming.
String ID #90: Drinking coffee will replenish your stamina, endurance and hydration. It can also warm you up in cold climates. This reminds you of the way things were and gives you a medium comfort increase.
String ID #91: Duct Tape
String ID #92: Furnace
String ID #93: M67 Frag Grenade
String ID #94: Meat Grenade
String ID #95: Get %0
String ID #96: Shotgun
String ID #97: Rifle
String ID #98: MEMBER_SALE!
String ID #99: FEATURED ITEMS
String ID #100: EXPIRES IN
String ID #101: OR
String ID #102: DAILY SALE
String ID #103: TOP SELLERS
String ID #104: SEARCH ALL
String ID #105: UNLOCK
String ID #106: MEMBERSHIP
String ID #107: MARKET
String ID #108: REDEEM A CODE
String ID #109: HOME
String ID #110: BACK
String ID #111: Excludes SMS
String ID #112: SPECIAL OFFER
String ID #113: No filters available.
String ID #114: BUY
String ID #115: NEW!
String ID #116: QTY OWNED: x
String ID #117: PREVIEW
String ID #118: Compare Stats
String ID #119: There are no items in this category or search result.
String ID #120: Compare Stats
String ID #121: CLEAR
String ID #122: Daybreak Cash
String ID #123: Seven Cash
String ID #124: Ruble
String ID #125: Animal Pelt
String ID #126: Leather
String ID #127: ERROR
String ID #128: The preview of your purchase has failed. Please try again.
String ID #129: Generating Order Preview
String ID #130: We encountered an error trying to process your purchase. Please try again.
String ID #131: Processing<br>Purchase
String ID #132: Invalid coupon code.
String ID #133: Your request is unable to be processed at this time. Please try again later.
String ID #134: There has been an error processing your order.
String ID #135: Item Rental
String ID #136: TRIAL UNAVAILABLE RIGHT NOW
String ID #137: COST %0 X %1 =
String ID #138: CURRENT %0: <font color="#7FF4FF">%1</font>
String ID #139: Items purchased with CP can only be equipped on this character.
String ID #140: BUY WITH <font color="#FFC600">%0</font>
String ID #141: QUANTITY
String ID #142: SUBMIT
String ID #143: Your zipcode is currently not on file and is required to purchase items with your wallet. Please enter it below and press submit.
String ID #144: Rent
String ID #145: TRY NOW
String ID #146: UPGRADE
String ID #147: UNLOCK
String ID #148: PROCESSING...
String ID #149: ITEM PURCHASE
String ID #150: Meters
String ID #151: Damage
String ID #152: BECOME A MEMBER
String ID #153: s
String ID #154: UNAVAILABLE
String ID #155: Toggle UI
String ID #156: Case of Beets
String ID #157: Coffee with sugar will replenish some stamina, endurance and a great deal of hydration. It can also warm you up in cold climates. This reminds you of the way things were and gives you a medium comfort increase.
String ID #158: Coffee With Sugar
String ID #159: UNLOCKED
String ID #160: SEARCH RESULTS
String ID #161: ENTER CODE
String ID #162: REDEEM NOW
String ID #163: REDEEM A <br><font size="75">CODE</font>
String ID #164: *You will be charged applicable taxes on your order.
String ID #165: We encountered a problem deleting this credit card. Please try again.
String ID #166: Deleting Credit Card
String ID #167: We encountered a problem adding this credit card. Please try again.
String ID #168: Retrieving Accepted Credit Cards
String ID #169: Retrieving Credit Cards on File
String ID #170: You currently have no cards on file.
String ID #171: ADD NEW CARD
String ID #172: DELETE CARD
String ID #173: Error Funding Wallet With Paypal
String ID #174: Error Funding Wallet With SMS
String ID #175: We could not retrieve the appropriate information. Please try again.
String ID #176: Retrieving Daybreak Cash Information
String ID #177: USE PRE-PAID GAME CARD
String ID #178: SMS
String ID #179: PAY WITH MOBILE DEVICE
String ID #180: PAYPAL
String ID #181: PAY WITH PAYPAL
String ID #182: CREDIT CARD
String ID #183: PAY WITH CREDIT CARD
String ID #184: CONTINUE
String ID #185: 3. REVIEW
String ID #186: 2. DB AMOUNT
String ID #187: 1. PAYMENT CHOICE
String ID #188: DAYBREAK CASH PURCHASE
String ID #189: Your code redemption was successful!
String ID #190: Redemption Confirmation
String ID #191: CLOSE
String ID #192: Basic Supplies
String ID #193: Main Server
String ID #194: Main Server 2
String ID #195: Local Server
String ID #196: Local Server 2
String ID #197: Adding Credit Card
String ID #198: Your purchase was successful!
String ID #199: Purchase Confirmation
String ID #200: There has been an error processing your purchase.
String ID #201: Purchase Error
String ID #202: Please review this information before confirming your purchase.
String ID #203: Purchase Preview
String ID #204: Choose how much Daybreak Cash you'd like to purchase.
String ID #205: Select DB Amount
String ID #206: Fill in the information below to add a credit card to your account.
String ID #207: Add Credit Card
String ID #208: Select a credit card from on file, or add a new card to your account.
String ID #209: Select Credit Card
String ID #210: Select your preferred payment method.
String ID #211: Select Payment Method
String ID #212: h
String ID #213: m
String ID #214: You have just redeemed:
String ID #215: CONGRATULATIONS!
String ID #216: We encountered an error trying to redeem your code. Please try again.
String ID #217: Redeeming Game Code
String ID #218: USE CREDIT CARD (SELECT PLAN BELOW)
String ID #219: LIMITED TIME OFFER
String ID #220: BEST VALUE
String ID #221: Retrieving Membership Information
String ID #222: MEMBERSHIP BENEFITS
String ID #223: *Get better benefits the longer you're a member
String ID #224: LOYALTY LEVEL:
String ID #225: and <font color="#7FF4ff"><u>MORE</u></font>
String ID #226: The amount of increased benefits resets completely if you are not a premium member for over a month.<br>Only XP, resources, and cert point benefits apply to all characters.
String ID #227: Type
String ID #228: Type
String ID #229: Chamber Time
String ID #230: How long it takes to chamber each round.
String ID #231: Damage
String ID #232: Maximum Damage / Maximum Damage Range / Minimum Damage / Minimum Damage Range
String ID #233: Indirect Damage
String ID #234: Maximum Damage / Maximum Damage Range / Minimum Damage / Minimum Damage Range
String ID #235: Muzzle Velocity
String ID #236: The muzzle velocity in meters per second.
String ID #237: Reload Speed
String ID #238: Reload time when the weapon is empty / Reload time when the weapon has ammo
String ID #239: Ammunition
String ID #240: Magazine Size / Total ammunition capacity
String ID #241: Pellet Count
String ID #242: Single-shot Pellet Count / Pellet Spread
String ID #243: Hip Accuracy
String ID #244: Crouch Accuracy / Crouch Move Accuracy / Stand Accuracy / Stand Move Accuracy / Accuracy Loss Per Shot Fired
String ID #245: Aim Accuracy
String ID #246: Crouch Accuracy / Crouch Move Accuracy / Stand Accuracy / Stand Move Accuracy / Accuracy Loss Per Shot Fired
String ID #247: Iron Sight Zoom
String ID #248: Zoom amount when in iron sights.
String ID #249: Fire Modes
String ID #250: The fire modes available on this weapon.
String ID #251: SALE!
String ID #252: Animal Fat
String ID #253: Fuel
String ID #254: Land Mine
String ID #255: BECOME A PREMIUM MEMBER!
String ID #256: WALLET BALANCE
String ID #257: ORDER ID
String ID #258: You have purchased
String ID #259: DONE
String ID #260: Congratulations
String ID #261: CVV
String ID #262: TOTAL
String ID #263: TAX
String ID #264: SUBTOTAL
String ID #265: CREDIT CARD
String ID #266: COMPLETE PURCHASE
String ID #267: Animal fat can be used to craft fuel.
String ID #268: This can be used in crafting.
String ID #269: Test Campfire
String ID #270: This action is not available at this time. Please try again later.
String ID #271: Marketplace transactions are not enabled.
String ID #272: Name
String ID #273: Card Number
String ID #274: MM
String ID #275: YYYY
String ID #276: City
String ID #277: Billing Address
String ID #278: Zip Code
String ID #279: Province
String ID #280: Issuer
String ID #281: Error with item trial request. Please try again later.
String ID #282: Error creating new order. Please try again later.
String ID #283: Error adding item to order. Please try again later.
String ID #284: Error canceling order. Please try again later.
String ID #285: Cannot add coupon to order. Please try again later.
String ID #286: Error adjusting quantity in order. Please try again later.
String ID #287: Error placing order. Please try again later.
String ID #288: Wallet Disabled!
String ID #289: Must be a member to purchase this bundle!
String ID #290: Insufficient Funds! Please add more %0.
String ID #291: Confirmation
String ID #292: You already own the following item in this bundle.
String ID #293: Are you sure you wish to continue?
String ID #294: You already own the following items in this bundle.
String ID #295: Invalid Coupon Code
String ID #296: ENTER COUPON CODE
String ID #297: DISCOUNT SALE
String ID #298: DISCOUNT COUPON
String ID #299: You save %0 (%1%)
String ID #300: You could save an additional %0 if you were a member!
String ID #301: ITEM AVAILABLE FOR TRIAL
String ID #302: ITEM TRIAL IS ACTIVE
String ID #303: TRIAL EXPIRED
String ID #304: TRIAL AVAILABLE IN
String ID #305: TRIAL UNAVAILABLE RIGHT NOW
String ID #306: ORDER QTY <font color="#FFFFFF">X %0</font>
String ID #307: ORDER TOTAL: <font color="#FFFFFF">%0</font>
String ID #308: ORDER ID: <font color="#FFFFFF">%0</font>
String ID #309: TOTAL PRICE: %0
String ID #310: Stuff
String ID #311: VAT TAX
String ID #312: DISCOUNT
String ID #313: NEXT CHARGE DATE
String ID #314: CURRENT BENEFITS
String ID #316: You receive #count([*item*])
String ID #317: Crafting
String ID #318: Craft
String ID #319: Have Materials
String ID #320: Default
String ID #321: A-Z
String ID #322: Low-High
String ID #323: Z-A
String ID #324: High-Low
String ID #325: High-Low
String ID #326: Research
String ID #327: Flashlight Hat
String ID #328: Saline
String ID #329: Saline can be combined with bandages to create first aid kit.
String ID #330: First Aid Kit
String ID #331: First aid kits can be used to clean and dress wounds which will allow you to regain your health over time.
[Does not stack with other healing effects]
[Health does not regenerate with H1Z1 Severe or above]
String ID #332: Water
String ID #333: Health
String ID #334: Stamina
String ID #335: Food
String ID #336: Weekly Sale Bundles
String ID #337: Discounted bundle deals
String ID #338: Top Sellers
String ID #339: Most popular items
String ID #340: Inventory
String ID #341: Pocket Lint
String ID #342: Energy
String ID #343: Hydration
String ID #344: You are hungry!
String ID #345: You are thirsty!
String ID #346: Shed
String ID #347: US
String ID #348: Shed Door
String ID #349: This shed door can be placed in the shed doorway.
[If not repaired this will fall apart after four weeks.]
String ID #350: Armoire
String ID #351: Refrigerator
String ID #352: Garbage Can
String ID #353: File Cabinet
String ID #354: Dumpster
String ID #355: Dresser
String ID #356: Dishwasher
String ID #357: Desk
String ID #358: Cabinets
String ID #359: Stove
String ID #360: Tool Cabinet
String ID #361: <[*key*]> to open
String ID #362: Crowbar
String ID #363: Machete
String ID #364: Combat Knife
String ID #365: Empty
String ID #366: Backspace
String ID #367: Tab
String ID #368: Clear
String ID #369: Return
String ID #370: Shift
String ID #371: Control
String ID #372: Alt
String ID #373: Pause
String ID #374: Caps Lock
String ID #375: Kana
String ID #376: Junja
String ID #377: Final
String ID #378: Kanji
String ID #379: Escape
String ID #380: Convert
String ID #381: NonConvert
String ID #382: Accept
String ID #383: ModeChange
String ID #384: Spacebar
String ID #385: Page Up
String ID #386: Page Down
String ID #387: End
String ID #388: Home
String ID #389: Left
String ID #390: Up
String ID #391: Right
String ID #392: Down
String ID #393: Select
String ID #394: Print
String ID #395: Execute
String ID #396: Print Screen
String ID #397: Insert
String ID #398: Delete
String ID #399: Help
String ID #400: 0
String ID #401: 1
String ID #402: 2
String ID #403: 3
String ID #404: 4
String ID #405: 5
String ID #406: 6
String ID #407: 7
String ID #408: 8
String ID #409: 9
String ID #410: A
String ID #411: B
String ID #412: C
String ID #413: D
String ID #414: E
String ID #415: F
String ID #416: G
String ID #417: H
String ID #418: I
String ID #419: J
String ID #420: K
String ID #421: L
String ID #422: M
String ID #423: N
String ID #424: O
String ID #425: P
String ID #426: Q
String ID #427: R
String ID #428: S
String ID #429: T
String ID #430: U
String ID #431: V
String ID #432: W
String ID #433: X
String ID #434: Y
String ID #435: Z
String ID #436: Left Windows
String ID #437: Right Windows
String ID #438: Apps Menu
String ID #439: Sleep
String ID #440: Numpad 0
String ID #441: Numpad 1
String ID #442: Numpad 2
String ID #443: Numpad 3
String ID #444: Numpad 4
String ID #445: Numpad 5
String ID #446: Numpad 6
String ID #447: Numpad 7
String ID #448: Numpad 8
String ID #449: Numpad 9
String ID #450: Numpad Multiply
String ID #451: Numpad Add
String ID #452: Numpad Enter
String ID #453: Numpad Subtract
String ID #454: Numpad Decimal
String ID #455: Numpad Divide
String ID #456: F1
String ID #457: F2
String ID #458: F3
String ID #459: F4
String ID #460: F5
String ID #461: F6
String ID #462: F7
String ID #463: F8
String ID #464: F9
String ID #465: F10
String ID #466: F11
String ID #467: F12
String ID #468: F13
String ID #469: F14
String ID #470: F15
String ID #471: F16
String ID #472: F17
String ID #473: F18
String ID #474: F19
String ID #475: F20
String ID #476: F21
String ID #477: F22
String ID #478: F23
String ID #479: F24
String ID #480: Num Lock
String ID #481: Scroll Lock
String ID #482: Numpad Equal
String ID #483: Masshou
String ID #484: Touroku
String ID #485: Left Oyayubi
String ID #486: Right Oyayubi
String ID #487: Left Shift
String ID #488: Right Shift
String ID #489: Left Control
String ID #490: Right Control
String ID #491: Left Alt
String ID #492: Right Alt
String ID #493: Web Back
String ID #494: Web Forward
String ID #495: Web Refresh
String ID #496: Web Stop
String ID #497: Web Search
String ID #498: Web Favorites
String ID #499: Web Home
String ID #500: Mute
String ID #501: Volume Down
String ID #502: Volume Up
String ID #503: Next Track
String ID #504: Previous Track
String ID #505: Media Stop
String ID #506: Play Pause
String ID #507: Mail
String ID #508: Media Select
String ID #509: My Computer
String ID #510: Calculator
String ID #511: Semicolon :;
String ID #512: Equals =+
String ID #513: Comma ,<
String ID #514: Minus -_
String ID #515: Period .>
String ID #516: Slash /?
String ID #517: Tilde `~
String ID #518: Left Bracket [{
String ID #519: Backslash \|
String ID #520: Right Bracket ]}
String ID #521: Apostrophe '"
String ID #522: VK_OEM_8
String ID #523: AX
String ID #524: OEM_102
String ID #525: ICO_HELP
String ID #526: ICO_00
String ID #527: Process Key
String ID #528: ICO_CLEAR
String ID #529: PACKET
String ID #530: OEM_RESET
String ID #531: OEM_JUMP
String ID #532: OEM_PA1
String ID #533: OEM_PA2
String ID #534: OEM_PA3
String ID #535: OEM_WSCTRL
String ID #536: OEM_CUSEL
String ID #537: OEM_ATTN
String ID #538: OEM_FINISH
String ID #539: OEM_COPY
String ID #540: OEM_AUTO
String ID #541: OEM_ENLW
String ID #542: OEM_BACKTAB
String ID #543: ATTN
String ID #544: CRSEL
String ID #545: EXSEL
String ID #546: EREOF
String ID #547: PLAY
String ID #548: ZOOM
String ID #549: NO NAME
String ID #550: PA1
String ID #551: OEM_CLEAR
String ID #552: Left Mouse
String ID #553: Right Mouse
String ID #554: Middle Mouse
String ID #555: Mouse Button 4
String ID #556: Mouse Button 5
String ID #557: Mouse Button 6
String ID #558: Mouse Button 7
String ID #559: Mouse Button 8
String ID #560: Mouse Scroll Down
String ID #561: Mouse Scroll Up
String ID #562: Gamepad Button
String ID #563: Gamepad Axis X-
String ID #564: Gamepad Axis X+
String ID #565: Gamepad Axis Y-
String ID #566: Gamepad Axis Y+
String ID #567: Gamepad Axis Z-
String ID #568: Gamepad Axis Z+
String ID #569: Gamepad Axis RX-
String ID #570: Gamepad Axis RX+
String ID #571: Gamepad Axis RY-
String ID #572: Gamepad Axis RY+
String ID #573: Gamepad Axis RZ-
String ID #574: Gamepad Axis RZ+
String ID #575: Gamepad Slider1 -
String ID #576: Gamepad Slider1 +
String ID #577: Gamepad Slider2 -
String ID #578: Gamepad Slider2 +
String ID #579: Basic Pants
String ID #580: Red White and Blue Shirt
String ID #581: This shirt has a pocket which can hold a few items. Right click on the shirt while it is in your inventory to salvage it which will destroy it and turn it into scraps of cloth.
String ID #582: Harvest
String ID #583: Scrap metal can be melted down into metal bits inside of a furnace.
String ID #584: Basic Backpack
String ID #585: A large backpack that will hold a good deal of items.
String ID #586: Welcome to your doom.
String ID #587: Storage
String ID #588: This can be used as a weapon or to harvest meat from wildlife.
String ID #589: This campfire can be used to cook food or light an area. When sitting near this campfire your comfort level will increase over time. It can be set on fire by hitting it with a torch or igniting it with a nearby flare, bow drill, or lighter. Rain will douse the campfire unless it is sheltered.
String ID #590: Gauze can be used to regain a small amount of health and to stop bleeding. Multiple strips of gauze can be applied at the same time to increase the amount of health gained.
[Does not stack with first aid kits]
[Health does not regenerate with H1Z1 Severe or above]
String ID #591: Extra items can be stored inside of this container. Anyone can access the container so be sure to place it somewhere secure.
String ID #592: This torch can be used to light a small area. It can also be used as a weapon and will set many things on fire.
String ID #593: Water can be used in crafting or to replenish hydration.
String ID #594: Fresh grown on the 60 acre family farm, satisfy your beet curiosity and enjoy the balance of sweet and sour. Our beets are firm, full of flavor, and deep red in color.<br>After eating the contents the empty can will be converted into scrap metal.
[Replenishes a small amount of energy and hydration and gives a low boost to comfort.]
String ID #595: Consuming this meat will replenish a great deal of energy and gives a medium boost to comfort.
String ID #596: Animal Trap
String ID #597: If left unattended this can capture small game animals and yield a small amount of raw meat.
String ID #598: Structure Wall
String ID #599: Consuming jerky will replenish a great deal of energy and gives a low boost to comfort.
String ID #600: This furnace can be used to melt down scrap metal into workable metal bits. Wood or charcoal must be in the furnace to burn. You can ignite it by hitting it with a torch or using a lighter. Note: If not put on another placed structure this will take full damage from all sources.
String ID #601: Dew Collector
String ID #602: If an empty bottle is placed inside, this will slowly collect drinkable water.
String ID #603: This shed can only be set on a placed foundation.
[If not repaired this will fall apart after four weeks.]
String ID #604: [Dev Note] This ammo will refill ammo for any gun currently. You must right click and use it to refill your ammo.
String ID #605: Gunpowder can be used to create explosives.
String ID #606: Metal sheets can be used to make pipes for guns or blades for melee weapons.
String ID #607: Metal pipes can be used in crafting.
String ID #608: The M1911A1 is a semi-automatic pistol.<br><br>[Ammo Type: .45 round]
String ID #609: The AR15 is lightweight, yet still pinpoint accurate assault rifle, capable of hitting targets with precision.<br><br>[Ammo Type: .223 round]
String ID #610: Punji Sticks
String ID #611: These sharpened sticks will damage whatever walks over them.
String ID #612: Tan Hat
String ID #613: M1911A Schematic
String ID #614: Zombie Brute
String ID #615: JAMES CHIN TEST AGGRO
String ID #616: M1911A Schematic
String ID #617: Shotgun Schematic
String ID #618: Hunting Rifle Schematic
String ID #619: AR15 Schematic
String ID #620: This schematic can be used to create a new M1911A.
String ID #621: This schematic can be used to create a new Shotgun.
String ID #622: This schematic can be used to create a new Hunting Rifle.
String ID #623: This schematic can be used to create a new AR15 Assault Rifle.
String ID #624: Blackberry
String ID #625: Blackberries can be eaten to gain a small amount of hydration and energy.
String ID #626: Gray T-Shirt
String ID #627: Corn Seed
String ID #628: Corn
String ID #629: Wood Plank
String ID #630: Jagged Skinning Knife
String ID #631: Wood Stick
String ID #632: Wooden Arrow
String ID #633: Makeshift Bow
String ID #634: Metal Shard
String ID #635: Planting Box
String ID #636: Fuel soaked arrows that can occasionally catch their target on fire.
String ID #637: Barbed Wire
String ID #638: Barbed wire can be placed and will damage anything that passes through it.
String ID #639: Rabbit Meat
String ID #640: Cooked Rabbit
String ID #641: Rabbit Stew
String ID #642: Cooked rabbit will give a decent amount of energy and gives a medium boost to comfort..
String ID #643: Rabbit stew will replenish a good deal of energy and hydration and gives a large boost to comfort.
String ID #644: Tin Can Grenade test
String ID #645: Wooden Barricade
String ID #646: Barricades can be placed use to cover the windows of most residential homes.
String ID #647: [Say]
String ID #648: [System]
String ID #649: [Tell]
String ID #650: Ground coffee can be brewed in a campfire with purified water.
String ID #651: You
String ID #652: Duct Tape
String ID #653: Duct tape can be used to bind things together.<br><br>It is found in various places around the world.
String ID #654: Nail
String ID #655: Nails can be used in constructing wood structures.
String ID #656: Sewing Kit
String ID #657: Contains a variety of string, scissors, and Meliande-Brand glover's needles. When you need the best, trust Meliande-Brand.
String ID #658: Metal Shed
String ID #659: Metal sheds can only be placed on a foundation.
[If not repaired this will fall apart after four weeks.]
String ID #660: Exploding Arrow
String ID #661: These arrows will explode on contact.
String ID #662: Makeshift Shotgun Trap
String ID #663: When tripped, the shotgun will fire. Ammo will need to be refilled for new uses.
String ID #664: Surgical Tubing
String ID #665: This tubing is very strong and elastic.
String ID #666: Metal Bracket
String ID #667: These brackets can be used in building structures.
String ID #668: Spool of Twine
String ID #669: This twine can be used in crafting.
String ID #670: Ramp
String ID #671: This ramp can be placed on the ground.
String ID #672: Knapsack
String ID #673: This knapsack is worn on the back and will hold a few items.
String ID #674: Framed Backpack
String ID #675: This framed backpack will hold a great deal of items.
String ID #676: Impaling Trap
String ID #677: This trap will attempt to impale an intruder with a sharp spike.
String ID #678: Makeshift Spear
String ID #679: This spear can be used as a weapon which can give a greater attack range.
String ID #680: Gloves
String ID #681: Drop
String ID #682: Use
String ID #683: Delete
String ID #684: Place
String ID #685: This gate can only be set on a placed foundation.
[If not repaired this will fall apart after four weeks.]
String ID #686: This wall can only be set on a placed foundation.
[If not repaired this will fall apart after four weeks.]
String ID #687: This can only be set on a placed foundation.
[If not repaired this will fall apart after four weeks.]
String ID #688: Spam detection has blocked the message.
String ID #689: Tarp
String ID #690: This must be prepared in a fire.
String ID #691: This must be processed in a furnace.
String ID #692: This axe can be used to chop down trees and to break wood down into smaller pieces.
String ID #693: You need a sharp tool to break this down.
String ID #694: To prepare this recipe you must place the ingredients inside of a lit campfire or BBQ.
String ID #695: To prepare this recipe you must place the ingredients inside of a lit furnace.
String ID #696: DeerCorpse
String ID #697: WolfCorpse
String ID #698: You have been disconnected.
String ID #700: None
String ID #701: FactionVS
String ID #702: FactionNC
String ID #703: FactionTR
String ID #704: HudSquad
String ID #705: ChatPlatoon
String ID #706: HudSquadOwner
String ID #707: HudOutfit
String ID #708: HudYell
String ID #709: HudArea
String ID #710: ChatRegion
String ID #711: HudOrders
String ID #712: GeneralPC
String ID #713: SquadPC
String ID #714: OutfitPC
String ID #715: WhisperPC
String ID #716: LeaderPC
String ID #717: PlatoonPC
String ID #718: Chat.Items
String ID #719: NoMessages
String ID #727: Death
String ID #728: Ok
String ID #729: Accept
String ID #730: Decline
String ID #731: Settings
String ID #732: CharacterSelect
String ID #733: ToggleDebugConsole
String ID #734: Reply
String ID #735: TogglePerformance
String ID #736: ActionQueueAccept
String ID #737: ActionQueueDeny
String ID #738: ShowActionQueue
String ID #739: AutoJoinSquadKeybind
String ID #740: Open Map
String ID #741: VoiceChatSquadLeader
String ID #742: VoiceChatPlatoon
String ID #743: VoiceChatOutfit
String ID #744: VoiceChatCustom
String ID #745: VoiceMacro
String ID #746: SpotEnemy
String ID #747: ToggleVideoCapture
String ID #748: OpenSquadPage
String ID #749: OpenFriendPage
String ID #750: OpenOutfitPage
String ID #751: ToggleVehicleManagementView
String ID #752: ToggleHudIndicators
String ID #753: Toggle Weapon Stance
String ID #754: CancelZoneQueue
String ID #755: IncrementMinimapZoom
String ID #756: DecrementMinimapZoom
String ID #757: QuickChat1
String ID #758: QuickChat2
String ID #759: QuickChat3
String ID #760: QuickChat4
String ID #761: QuickChat5
String ID #762: QuickChat6
String ID #763: QuickChat7
String ID #764: QuickChat8
String ID #765: QuickChat9
String ID #766: QuickChat10
String ID #767: CruiseControl
String ID #768: ChangeCamera
String ID #769: WeaponOptic
String ID #770: DeployKeybind
String ID #771: WeaponSlot1
String ID #772: WeaponSlot2
String ID #773: Siren
String ID #782: ThrottleUp
String ID #783: ThrottleDown
String ID #784: YawLeft
String ID #785: YawRight
String ID #786: Ascend
String ID #787: Descend
String ID #788: RollLeft
String ID #789: RollRight
String ID #790: PitchUp
String ID #791: PitchDown
String ID #792: ThrottleAnalog
String ID #793: CruiseControl
String ID #794: CockpitFreeLook
String ID #795: CockpitLookLeft
String ID #796: CockpitLookRight
String ID #797: CockpitLookUp
String ID #798: CockpitLookDown
String ID #799: ChangeCamera
String ID #800: WeaponOptic
String ID #801: DeployKeybind
String ID #802: WeaponSlot1
String ID #803: WeaponSlot2
String ID #804: VehicleAbility
String ID #805: ChangeToSeat5
String ID #806: ChangeToSeat6
String ID #807: ChangeToSeat7
String ID #808: ChangeToSeat8
String ID #809: ChangeToSeat9
String ID #810: ChangeToSeat10
String ID #811: ChangeToSeat11
String ID #812: ChangeToSeat12
String ID #813: Crouch
String ID #814: Use Ability
String ID #815: Use Grenade
String ID #816: Binoculars
String ID #817: Gear Slot 6
String ID #818: Gear Slot 7
String ID #819: Gear Slot 8
String ID #820: Gear Slot 9
String ID #821: Gear Slot 10
String ID #822: ToggleHideFp
String ID #823: Push Back
String ID #824: Free Look
String ID #825: Free Look
String ID #826: Ascend
String ID #827: Descend
String ID #828: Reduce Speed
String ID #829: Ignore Collision
String ID #830: FreeformTranslation
String ID #831: FreeformRotation
String ID #832: FreeformScale
String ID #935: Wolf Meat
String ID #936: Wolf Steak
String ID #939: Low Health!
String ID #940: Create
String ID #941: Invalid Name
String ID #942: Name Not Available
String ID #943: Name Rejected
String ID #944: Unknown Error
String ID #945: Character Create Failed
String ID #946: Login
String ID #947: Create New Character
String ID #948: Server
String ID #949: Foundation
String ID #950: Character
String ID #951: Exit
String ID #952: Offroader Motor
String ID #953: This is a motor for an Offroader.
String ID #954: Ground Tamper
String ID #955: [Dev Note] This item is currently disabled and will not perform any function.
String ID #956: Crafted Backpack
String ID #957: "%s" recipe learned
String ID #958: Blue and Orange T-Shirt
String ID #959: Forrest Camo T-Shirt
String ID #960: Gray Camo T-Shirt
String ID #961: Marsh Camo T-Shirt
String ID #962: Gray and Blue Striped T-Shirt
String ID #963: Gray Star T-Shirt
String ID #964: Navy T-shirt with Stripes
String ID #965: Red White and Blue T-Shirt
String ID #966: Yellow and Blacked Striped T-shirt
String ID #968: Blue and Orange T-Shirt
String ID #969: Forest Camo T-Shirt
String ID #970: Gray Camo T-Shirt
String ID #971: Marsh Camo T-Shirt
String ID #972: Gray and Blue Striped Tee
String ID #973: Gray Striped Shirt with Star
String ID #974: Navy T-Shirt
String ID #975: Red White and Blue T-Shirt
String ID #976: Yellow and Black T-shirt
String ID #977: QA Server
String ID #978: Pants
String ID #979: Head
String ID #980: Hands
String ID #981: Chest
String ID #982: Legs
String ID #983: Feet
String ID #984: Shoulders
String ID #985: Boots
String ID #986: 20m Dirt Foundation (test)
String ID #987: Metal Player-Built House (test)
String ID #988: Metal Wall (Test)
String ID #989: Metal Gate (Test)
String ID #990: Metal Gate (Test)
String ID #992: You dropped #count([*item*])
String ID #993: Metal Gate
String ID #994: Metal Wall
String ID #995: Shelter
String ID #996: Barbed Wire Fence 1X1
String ID #997: Barbed Wire Fence 1X2
String ID #998: You have no space for that.
String ID #999: Large Shelter
String ID #1000: Crafting Ingredient
String ID #1001: Cooked Meat
String ID #1002: Raw Meat
String ID #1003: Structure Stairs
String ID #1004: [[*key*]] Use Gate
String ID #1005: Empty Bottle
String ID #1006: Water Well
String ID #1007: This 16oz empty water bottle can be refilled with water. Use the bottle to collect water in the rain, at a natural water source, or from wells.
String ID #1008: [[*key*]] Collect Water
String ID #1009: [[*key*]] Harvest [*target*]
String ID #1010: This item is beyond repair, but can be melted down for metal bars in a furnace.
String ID #1011: Broken M1911A1
String ID #1012: Broken AR15
String ID #1013: Broken Metal Item
String ID #1014: Blue and Orange Backpack
String ID #1015: Blue and Grey Backpack
String ID #1016: Blue Camo Backpack
String ID #1017: Green Camo Military Backpack
String ID #1018: Grey and Yellow Backpack
String ID #1019: Tan Military Backpack
String ID #1020: Black Backpack
String ID #1021: Blue Backpack
String ID #1022: Blue Military Backpack
String ID #1023: Green Backpack
String ID #1024: Red and Black Military Backpack
String ID #1025: Tan Backpack
String ID #1026: Wood Sticks can be used to craft various items.<br><br>They can be harvested from small trees.
String ID #1027: Cloth Scraps are used in Crafting recipes.<br><br>Shred cloth items to get scrap cloth.
String ID #1028: This can be used to make tools, weapons, and construction materials.
String ID #1029: When used this will drop to the ground and light up a small area for 15 minutes.
String ID #1030: You cannot craft that right now.
String ID #1031: Blackberry Juice
String ID #1032: Blackberry juice can restore a great deal of hydration and a small amount of energy.
String ID #1033: Trout
String ID #1034: Grilled Trout
String ID #1035: You must have a sewing kit.
String ID #1036: Black Jeans
String ID #1037: Blue Jeans
String ID #1038: Brown Jeans
String ID #1039: Black Jeans
String ID #1040: Blue Jeans
String ID #1041: Brown Jeans
String ID #1042: There is no water source nearby
String ID #1043: Bottle of Dirty Water
String ID #1044: Dirty water is drinkable but unhealthy. Boiling it in a campfire will purify it.
String ID #1045: Water Filter
String ID #1046: This can be used to filter contaminated water.
String ID #1047: Filtered Water
String ID #1048: Purified Water
String ID #1049: Filtered water will restore some hydration, it would be better to purify it.
String ID #1050: This purified water is safe to drink and provides a good deal of hydration. This is the only water safe enough to cook with. This reminds you of the way things were and gives you a low comfort increase.
String ID #1051: <[*key*]> to use
String ID #1052: Bowstring
String ID #1053: This can be used to craft a bow.
String ID #1054: .308 Hunting Rifle
String ID #1055: 12GA Pump Shotgun
String ID #1056: Canteen of Water
String ID #1057: This 1 quart canteen can be filled with water.
String ID #1058: Canteen of Dirty Water
String ID #1059: Canteen of Water
String ID #1060: Empty Canteen
String ID #1061: Deck Foundation
String ID #1062: This deck is on wooden pillars and can be placed as a foundation to build structures upon.
String ID #1063: Survival Borscht
String ID #1064: Borscht will replenish a small amount of energy and a great deal of hydration and gives a low boost to comfort.<br>After eating the contents the empty can will be converted into scrap metal.
String ID #1065: An overall measure of your health. When zero is reached you will die.
String ID #1066: OffRoader Turbo
String ID #1067: Turbocharger that fits the OffRoader
String ID #1068: A measure of how satiated you are. Eat to increase this value. Energy directly effects your ability to regenerate health and stamina.
String ID #1069: A measure of how hydrated you are. Drink to increase this value. Hydration directly effects your ability to regenerate stamina.
String ID #1070: A measure of how much endurance you have. As stamina is depleted you will begin to move more slowly.
String ID #1071: OffRoader Headlights
String ID #1072: Headlights that fit the OffRoader
String ID #1073: Flashlight
String ID #1074: Rotten Meat
String ID #1075: This meat has spoiled and will make you sick if eaten.
String ID #1076: [[*key*]] Pick Up
String ID #1077: A standard size backpack made from durable polyester and corduroy.
String ID #1078: A heavy duty military backpack featuring multiple interior zippered pockets, adjustable shoulder straps and heavy-duty buckles.
String ID #1079: An explorers backpack designed with a big main compartment for extra storage space.
String ID #1080: High quality backpack constructed of durable nylon materials and large multi-compartment design.
String ID #1081: Wrecked Sedan
String ID #1082: Wrecked Van
String ID #1083: Wrecked Truck
String ID #1084: Wood Spear
String ID #1085: Ottoman
String ID #1086: Entertainment Center
String ID #1087: Nightstand
String ID #1088: Corpse
String ID #1089: ZombieBreakable
String ID #1090: Zombie stomach
String ID #1091: Arrow
String ID #1092: Humanity
String ID #1093: Inhumanity
String ID #1094: H1Z1 Virus
String ID #1095: Tactical Flashlight
String ID #1096: An angle head tactical military flashlight.
String ID #1097: Survivor
String ID #1098: Spear
String ID #1099: Dirty Water
String ID #1100: Staph Infection
String ID #1101: Ground Tiller
String ID #1102: This will till a small area on the ground allowing you to plant seeds in it.
String ID #1103: Eat Raw Meat
String ID #1104: Ethanol
String ID #1105: Corn Mash
String ID #1106: Moonshine
String ID #1107: If placed out for a period of time this will ferment into moonshine.
String ID #1108: Roasted Corn
String ID #1109: Consuming this will replenish a good deal of energy and gives a medium boost to comfort.