File size: 58,499 Bytes
06508e7 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 |
{
"post": {
"STR_FIELD": "id",
"add_fetch_param": "<bound method Submission.add_fetch_param of Submission(id='1gs5hl0')>",
"all_awardings": [],
"allow_live_comments": false,
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"author": "Prudent-Conflict-743",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_1bnybr7wog",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Submission(id='1gs5hl0')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"can_gild": false,
"can_mod_post": false,
"category": null,
"clear_vote": "<bound method VotableMixin.clear_vote of Submission(id='1gs5hl0')>",
"clicked": false,
"comment_limit": 2048,
"comment_sort": "confidence",
"comments": "<praw.models.comment_forest.CommentForest object at 0x769a22c63af0>",
"content_categories": null,
"contest_mode": false,
"created": 1731701485.0,
"created_utc": 1731701485.0,
"crosspost": "<bound method Submission.crosspost of Submission(id='1gs5hl0')>",
"delete": "<bound method EditableMixin.delete of Submission(id='1gs5hl0')>",
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Submission(id='1gs5hl0')>",
"discussion_type": null,
"distinguished": null,
"domain": "self.reddeadredemption",
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Submission(id='1gs5hl0')>",
"duplicates": "<bound method SubmissionListingMixin.duplicates of Submission(id='1gs5hl0')>",
"edit": "<bound method EditableMixin.edit of Submission(id='1gs5hl0')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Submission(id='1gs5hl0')>",
"flair": "<praw.models.reddit.submission.SubmissionFlair object at 0x769a22c62bf0>",
"fullname": "t3_1gs5hl0",
"gild": "<bound method GildableMixin.gild of Submission(id='1gs5hl0')>",
"gilded": 0,
"gildings": {},
"hidden": false,
"hide": "<bound method Submission.hide of Submission(id='1gs5hl0')>",
"hide_score": false,
"id": "1gs5hl0",
"id_from_url": "<function Submission.id_from_url at 0x769a8d396680>",
"is_created_from_ads_ui": false,
"is_crosspostable": true,
"is_meta": false,
"is_original_content": false,
"is_reddit_media_domain": false,
"is_robot_indexable": true,
"is_self": true,
"is_video": false,
"likes": null,
"link_flair_background_color": "",
"link_flair_css_class": "two",
"link_flair_richtext": [
{
"e": "text",
"t": "Help"
}
],
"link_flair_template_id": "480ff1fa-c736-11e9-bb5c-0e9600624498",
"link_flair_text": "Help",
"link_flair_text_color": "dark",
"link_flair_type": "richtext",
"locked": false,
"mark_visited": "<bound method Submission.mark_visited of Submission(id='1gs5hl0')>",
"media": null,
"media_embed": {},
"media_only": false,
"mod": "<praw.models.reddit.submission.SubmissionModeration object at 0x769a86792200>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t3_1gs5hl0",
"no_follow": true,
"num_comments": 14,
"num_crossposts": 0,
"num_reports": null,
"over_18": false,
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.submission.Submission'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/",
"pinned": false,
"pwls": 6,
"quarantine": false,
"removal_reason": null,
"removed_by": null,
"removed_by_category": null,
"reply": "<bound method ReplyableMixin.reply of Submission(id='1gs5hl0')>",
"report": "<bound method ReportableMixin.report of Submission(id='1gs5hl0')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Submission(id='1gs5hl0')>",
"saved": false,
"score": 0,
"secure_media": null,
"secure_media_embed": {},
"selftext": "Alright, don't come at me for being a pussy cuz I don't want violence.\n\nI (15) personally don't really have a problem with the violent aspects, if I did I wouldn't wanna play, right? My mom however does, and since I'm not 18 yet I can't js buy it anyways. So, does anyone have any mod recommendations that like censor or disable the worst gore? I guess the biggest problem is the dismemberment and stuff like that.\n\nThe only Idea I had so far was to download a save file where the story already progressed far enough for me to free roam, and that doesn't require me to kill for the quests. \n\nTbh I might do anyways but then at least I had a bigger chance of convinving my mother, if I had an entire safe file that was as least violent as possible. I really don't wanna just wait until I can legally buy it cuz that would mean waiting another 2,5 years or at least 1,5, if she allows me once I'm 17. :/\n\n \nAnyways, I appreciate all legit answers and recs, and again, please don't just tell me \"well if you don't want violence then don't play rdr2\", cause that would very clearly indicate you didn't even read the first 2 sentences.",
"selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>Alright, don't come at me for being a pussy cuz I don't want violence.</p>\n\n<p>I (15) personally don't really have a problem with the violent aspects, if I did I wouldn't wanna play, right? My mom however does, and since I'm not 18 yet I can't js buy it anyways. So, does anyone have any mod recommendations that like censor or disable the worst gore? I guess the biggest problem is the dismemberment and stuff like that.</p>\n\n<p>The only Idea I had so far was to download a save file where the story already progressed far enough for me to free roam, and that doesn't require me to kill for the quests. </p>\n\n<p>Tbh I might do anyways but then at least I had a bigger chance of convinving my mother, if I had an entire safe file that was as least violent as possible. I really don't wanna just wait until I can legally buy it cuz that would mean waiting another 2,5 years or at least 1,5, if she allows me once I'm 17. :/</p>\n\n<p>Anyways, I appreciate all legit answers and recs, and again, please don't just tell me "well if you don't want violence then don't play rdr2", cause that would very clearly indicate you didn't even read the first 2 sentences.</p>\n</div><!-- SC_ON -->",
"send_replies": true,
"shortlink": "https://redd.it/1gs5hl0",
"spoiler": false,
"stickied": false,
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_subscribers": 2038691,
"subreddit_type": "public",
"suggested_sort": "top",
"thumbnail": "self",
"thumbnail_height": null,
"thumbnail_width": null,
"title": "How to make rdr2 as non-violent as possible?",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unhide": "<bound method Submission.unhide of Submission(id='1gs5hl0')>",
"unsave": "<bound method SavableMixin.unsave of Submission(id='1gs5hl0')>",
"ups": 0,
"upvote": "<bound method VotableMixin.upvote of Submission(id='1gs5hl0')>",
"upvote_ratio": 0.27,
"url": "https://www.reddit.com/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/",
"user_reports": [],
"view_count": null,
"visited": false,
"wls": 6,
"created_date": "2024-11-15",
"full_link": "https://www.reddit.com/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/"
},
"comments": [
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "TacticalLoaf",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_6b12a428",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxbme67')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxbme67')>",
"body": "I think you're boned because 75% of the missions are mandatory shooting and killing, along with some cutscenes, including that. Also iirc there's no way to disable mature aspects in the settings. Might just have to wait it out, partner.",
"body_html": "<div class=\"md\"><p>I think you're boned because 75% of the missions are mandatory shooting and killing, along with some cutscenes, including that. Also iirc there's no way to disable mature aspects in the settings. Might just have to wait it out, partner.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxbme67')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxbme67')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731702193.0,
"created_utc": 1731702193.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxbme67')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxbme67')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxbme67')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxbme67')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxbme67')>",
"fullname": "t1_lxbme67",
"gild": "<bound method GildableMixin.gild of Comment(id='lxbme67')>",
"gilded": 0,
"gildings": {},
"id": "lxbme67",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxbme67')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxbme67')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a867922c0>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxbme67",
"no_follow": false,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxbme67')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxbme67/",
"refresh": "<bound method Comment.refresh of Comment(id='lxbme67')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cec160>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxbme67')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxbme67')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxbme67')>",
"saved": false,
"score": 5,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxbme67')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxbme67')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxbme67')>",
"ups": 5,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxbme67')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Legoflink",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_19ey6ruxi8",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxbmq8f')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxbmq8f')>",
"body": "Im 15 as well and I got it without any trouble, You can get any game u want that rated M I dont believe that it is illegal to do so. Sorry but I cant recomend any mods...",
"body_html": "<div class=\"md\"><p>Im 15 as well and I got it without any trouble, You can get any game u want that rated M I dont believe that it is illegal to do so. Sorry but I cant recomend any mods...</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxbmq8f')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxbmq8f')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731702295.0,
"created_utc": 1731702295.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxbmq8f')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxbmq8f')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxbmq8f')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxbmq8f')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxbmq8f')>",
"fullname": "t1_lxbmq8f",
"gild": "<bound method GildableMixin.gild of Comment(id='lxbmq8f')>",
"gilded": 0,
"gildings": {},
"id": "lxbmq8f",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxbmq8f')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxbmq8f')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88ced840>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxbmq8f",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxbmq8f')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxbmq8f/",
"refresh": "<bound method Comment.refresh of Comment(id='lxbmq8f')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cecdf0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxbmq8f')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxbmq8f')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxbmq8f')>",
"saved": false,
"score": 2,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxbmq8f')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxbmq8f')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxbmq8f')>",
"ups": 2,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxbmq8f')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "InsectPowerful9860",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_u3tbbd365",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxbyd9i')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxbyd9i')>",
"body": "If the OP is wanting the game to be censored in terms of violence I don\u2019t see the point of cutting out a lot of missions with fun shootouts just because most people are sensitive to blood and gore.",
"body_html": "<div class=\"md\"><p>If the OP is wanting the game to be censored in terms of violence I don\u2019t see the point of cutting out a lot of missions with fun shootouts just because most people are sensitive to blood and gore.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxbyd9i')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxbyd9i')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731705842.0,
"created_utc": 1731705842.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxbyd9i')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxbyd9i')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxbyd9i')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxbyd9i')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxbyd9i')>",
"fullname": "t1_lxbyd9i",
"gild": "<bound method GildableMixin.gild of Comment(id='lxbyd9i')>",
"gilded": 0,
"gildings": {},
"id": "lxbyd9i",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxbyd9i')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxbyd9i')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88cef220>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxbyd9i",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxbyd9i')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxbyd9i/",
"refresh": "<bound method Comment.refresh of Comment(id='lxbyd9i')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cedff0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxbyd9i')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxbyd9i')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxbyd9i')>",
"saved": false,
"score": 2,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxbyd9i')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxbyd9i')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxbyd9i')>",
"ups": 2,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxbyd9i')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Jimmilton102",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_wqrjhwuo1",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxc3qp3')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxc3qp3')>",
"body": "So,there\u2019s this mission called a quiet time,and whatever you do,do NOT enter the door on the right in the back of the saloon",
"body_html": "<div class=\"md\"><p>So,there\u2019s this mission called a quiet time,and whatever you do,do NOT enter the door on the right in the back of the saloon</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxc3qp3')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxc3qp3')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731707494.0,
"created_utc": 1731707494.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxc3qp3')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxc3qp3')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxc3qp3')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxc3qp3')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxc3qp3')>",
"fullname": "t1_lxc3qp3",
"gild": "<bound method GildableMixin.gild of Comment(id='lxc3qp3')>",
"gilded": 0,
"gildings": {},
"id": "lxc3qp3",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxc3qp3')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxc3qp3')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88cef190>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxc3qp3",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxc3qp3')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxc3qp3/",
"refresh": "<bound method Comment.refresh of Comment(id='lxc3qp3')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88ceee30>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxc3qp3')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxc3qp3')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxc3qp3')>",
"saved": false,
"score": 2,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxc3qp3')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxc3qp3')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxc3qp3')>",
"ups": 2,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxc3qp3')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "BigJuhmoke",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_754tjv8a",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxbntzk')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxbntzk')>",
"body": "Well is she going to watch you play the game to vet it? You can definitely manage to avoid violence and gore for any amount of time by just roaming around and abstaining from violence. But if you are worried she will walk in at in-opportune moment of violence I would just wait. It can be quite a violent / gory game and like someone else said, the story missions require violence in order to continue. \n\nCould always pull the old hit the PS/XBOX menu screen if she walks in but it\u2019s always a risk.",
"body_html": "<div class=\"md\"><p>Well is she going to watch you play the game to vet it? You can definitely manage to avoid violence and gore for any amount of time by just roaming around and abstaining from violence. But if you are worried she will walk in at in-opportune moment of violence I would just wait. It can be quite a violent / gory game and like someone else said, the story missions require violence in order to continue. </p>\n\n<p>Could always pull the old hit the PS/XBOX menu screen if she walks in but it\u2019s always a risk.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxbntzk')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxbntzk')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731702634.0,
"created_utc": 1731702634.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxbntzk')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxbntzk')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxbntzk')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxbntzk')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxbntzk')>",
"fullname": "t1_lxbntzk",
"gild": "<bound method GildableMixin.gild of Comment(id='lxbntzk')>",
"gilded": 0,
"gildings": {},
"id": "lxbntzk",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxbntzk')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxbntzk')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88ceea70>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxbntzk",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxbntzk')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxbntzk/",
"refresh": "<bound method Comment.refresh of Comment(id='lxbntzk')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cee1a0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxbntzk')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxbntzk')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxbntzk')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxbntzk')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxbntzk')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxbntzk')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxbntzk')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Quiet_Forever2518",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_k0cipg30r",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxbr6wa')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxbr6wa')>",
"body": "I would recommend telling your mom about the historical implications of the violence. From my experience with my own mom, that was usually a good work around",
"body_html": "<div class=\"md\"><p>I would recommend telling your mom about the historical implications of the violence. From my experience with my own mom, that was usually a good work around</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxbr6wa')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxbr6wa')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731703657.0,
"created_utc": 1731703657.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxbr6wa')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxbr6wa')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxbr6wa')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxbr6wa')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxbr6wa')>",
"fullname": "t1_lxbr6wa",
"gild": "<bound method GildableMixin.gild of Comment(id='lxbr6wa')>",
"gilded": 0,
"gildings": {},
"id": "lxbr6wa",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxbr6wa')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxbr6wa')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88cee380>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxbr6wa",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxbr6wa')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxbr6wa/",
"refresh": "<bound method Comment.refresh of Comment(id='lxbr6wa')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cefb50>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxbr6wa')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxbr6wa')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxbr6wa')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxbr6wa')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxbr6wa')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxbr6wa')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxbr6wa')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "erikaironer11",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_k6xab5iy",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxc2gj9')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxc2gj9')>",
"body": "Brother, this game ain\u2019t for you.\n\nNo matter how high honor you play the game there will be tons of violence, it\u2019s the nature of the game. It is called Red Dead for a reason",
"body_html": "<div class=\"md\"><p>Brother, this game ain\u2019t for you.</p>\n\n<p>No matter how high honor you play the game there will be tons of violence, it\u2019s the nature of the game. It is called Red Dead for a reason</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxc2gj9')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxc2gj9')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731707097.0,
"created_utc": 1731707097.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxc2gj9')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxc2gj9')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxc2gj9')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxc2gj9')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxc2gj9')>",
"fullname": "t1_lxc2gj9",
"gild": "<bound method GildableMixin.gild of Comment(id='lxc2gj9')>",
"gilded": 0,
"gildings": {},
"id": "lxc2gj9",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxc2gj9')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxc2gj9')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88ceeb90>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxc2gj9",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxc2gj9')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxc2gj9/",
"refresh": "<bound method Comment.refresh of Comment(id='lxc2gj9')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cef9a0>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxc2gj9')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxc2gj9')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxc2gj9')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxc2gj9')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxc2gj9')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxc2gj9')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxc2gj9')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Imsix6six",
"author_flair_background_color": "transparent",
"author_flair_css_class": null,
"author_flair_richtext": [
{
"a": ":arthur_morgan:",
"u": "https://emoji.redditmedia.com/lq6h4e0vq5t11_t5_2rn7o/arthur_morgan",
"e": "emoji"
},
{
"e": "text",
"t": " Arthur Morgan"
}
],
"author_flair_template_id": "3b1198e4-b523-11e8-ac68-0e0243d388b6",
"author_flair_text": ":arthur_morgan: Arthur Morgan",
"author_flair_text_color": "dark",
"author_flair_type": "richtext",
"author_fullname": "t2_15eo3ucw8b",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxcgufq')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxcgufq')>",
"body": "You\u2019re not missing out if you don\u2019t get to play. If your mom is adamant in not letting you play just play other games.",
"body_html": "<div class=\"md\"><p>You\u2019re not missing out if you don\u2019t get to play. If your mom is adamant in not letting you play just play other games.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxcgufq')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxcgufq')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731711838.0,
"created_utc": 1731711838.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxcgufq')>",
"depth": 0,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxcgufq')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxcgufq')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxcgufq')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxcgufq')>",
"fullname": "t1_lxcgufq",
"gild": "<bound method GildableMixin.gild of Comment(id='lxcgufq')>",
"gilded": 0,
"gildings": {},
"id": "lxcgufq",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": true,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxcgufq')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxcgufq')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88ced870>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxcgufq",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxcgufq')>",
"parent_id": "t3_1gs5hl0",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxcgufq/",
"refresh": "<bound method Comment.refresh of Comment(id='lxcgufq')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cef880>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxcgufq')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxcgufq')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxcgufq')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxcgufq')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxcgufq')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxcgufq')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxcgufq')>",
"user_reports": []
},
{
"MISSING_COMMENT_MESSAGE": "This comment does not appear to be in the comment tree",
"STR_FIELD": "id",
"all_awardings": [],
"approved_at_utc": null,
"approved_by": null,
"archived": false,
"associated_award": null,
"author": "Legoflink",
"author_flair_background_color": null,
"author_flair_css_class": null,
"author_flair_richtext": [],
"author_flair_template_id": null,
"author_flair_text": null,
"author_flair_text_color": null,
"author_flair_type": "text",
"author_fullname": "t2_19ey6ruxi8",
"author_is_blocked": false,
"author_patreon_flair": false,
"author_premium": false,
"award": "<bound method GildableMixin.award of Comment(id='lxd9k65')>",
"awarders": [],
"banned_at_utc": null,
"banned_by": null,
"block": "<bound method InboxableMixin.block of Comment(id='lxd9k65')>",
"body": "So true.",
"body_html": "<div class=\"md\"><p>So true.</p>\n</div>",
"can_gild": false,
"can_mod_post": false,
"clear_vote": "<bound method VotableMixin.clear_vote of Comment(id='lxd9k65')>",
"collapse": "<bound method InboxableMixin.collapse of Comment(id='lxd9k65')>",
"collapsed": false,
"collapsed_because_crowd_control": null,
"collapsed_reason": null,
"collapsed_reason_code": null,
"comment_type": null,
"controversiality": 0,
"created": 1731722544.0,
"created_utc": 1731722544.0,
"delete": "<bound method EditableMixin.delete of Comment(id='lxd9k65')>",
"depth": 1,
"disable_inbox_replies": "<bound method InboxToggleableMixin.disable_inbox_replies of Comment(id='lxd9k65')>",
"distinguished": null,
"downs": 0,
"downvote": "<bound method VotableMixin.downvote of Comment(id='lxd9k65')>",
"edit": "<bound method EditableMixin.edit of Comment(id='lxd9k65')>",
"edited": false,
"enable_inbox_replies": "<bound method InboxToggleableMixin.enable_inbox_replies of Comment(id='lxd9k65')>",
"fullname": "t1_lxd9k65",
"gild": "<bound method GildableMixin.gild of Comment(id='lxd9k65')>",
"gilded": 0,
"gildings": {},
"id": "lxd9k65",
"id_from_url": "<function Comment.id_from_url at 0x769a8d5bbb50>",
"is_root": false,
"is_submitter": false,
"likes": null,
"link_id": "t3_1gs5hl0",
"locked": false,
"mark_read": "<bound method InboxableMixin.mark_read of Comment(id='lxd9k65')>",
"mark_unread": "<bound method InboxableMixin.mark_unread of Comment(id='lxd9k65')>",
"mod": "<praw.models.reddit.comment.CommentModeration object at 0x769a88ced210>",
"mod_note": null,
"mod_reason_by": null,
"mod_reason_title": null,
"mod_reports": [],
"name": "t1_lxd9k65",
"no_follow": true,
"num_reports": null,
"parent": "<bound method Comment.parent of Comment(id='lxd9k65')>",
"parent_id": "t1_lxc2gj9",
"parse": "<bound method PRAWBase.parse of <class 'praw.models.reddit.comment.Comment'>>",
"permalink": "/r/reddeadredemption/comments/1gs5hl0/how_to_make_rdr2_as_nonviolent_as_possible/lxd9k65/",
"refresh": "<bound method Comment.refresh of Comment(id='lxd9k65')>",
"removal_reason": null,
"replies": "<praw.models.comment_forest.CommentForest object at 0x769a88cedd80>",
"reply": "<bound method ReplyableMixin.reply of Comment(id='lxd9k65')>",
"report": "<bound method ReportableMixin.report of Comment(id='lxd9k65')>",
"report_reasons": null,
"save": "<bound method SavableMixin.save of Comment(id='lxd9k65')>",
"saved": false,
"score": 1,
"score_hidden": false,
"send_replies": true,
"stickied": false,
"submission": "1gs5hl0",
"subreddit": "reddeadredemption",
"subreddit_id": "t5_2rn7o",
"subreddit_name_prefixed": "r/reddeadredemption",
"subreddit_type": "public",
"top_awarded_type": null,
"total_awards_received": 0,
"treatment_tags": [],
"unblock_subreddit": "<bound method InboxableMixin.unblock_subreddit of Comment(id='lxd9k65')>",
"uncollapse": "<bound method InboxableMixin.uncollapse of Comment(id='lxd9k65')>",
"unrepliable_reason": null,
"unsave": "<bound method SavableMixin.unsave of Comment(id='lxd9k65')>",
"ups": 1,
"upvote": "<bound method VotableMixin.upvote of Comment(id='lxd9k65')>",
"user_reports": []
}
]
} |