Page 79 of 92 FirstFirst ... 2969777879808189 ... LastLast
Results 1,171 to 1,185 of 1379
  1. #1171
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    589
    Reputation
    106
    Thanks
    1,789
    My Mood
    Inspired
    Quote Originally Posted by SleepyLia View Post


    The mod hasn't been online in over a week, so the files wouldn't get approved, so good luck with trying to download them if they do get uploaded.

    With that being said, it's not rocket science to append data to JSON, and it's even easier in the new method.
    If you're using the new method then literally just append to the end of the file.
    If you're using the old method then find the last entry and add a , to the end of } and paste the new lines.

    So this:


    would be changed like so:


    Takes like 0.000002 seconds to do......
    I explain this like 3000 times, but they will always complain 😂

  2. #1172
    mitoo200's Avatar
    Join Date
    May 2023
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0

    everytime im trying to connect to a match im getting this error


  3. #1173
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    589
    Reputation
    106
    Thanks
    1,789
    My Mood
    Inspired
    Quote Originally Posted by mitoo200 View Post
    Try to see on Fiddler on the left side if there is a red request coming from DbD so like api/v1 ... etc

  4. #1174
    Rawcharles32's Avatar
    Join Date
    Jan 2021
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    2

    Item Addons Break after I complete a match as survivor

    Do you know how to fix this, i have to restart the game everytime i survive or i just cant use the item. Im using the 6.6.0 build because idk if there is a 6.7.1 updated download on here yet. Thanks and sorry if this has been answered! Here is the image of it https://i.imgur.com/BRQGkhs.png
    Attached Thumbnails Attached Thumbnails
    BRQGkhs.png  

    Last edited by Rawcharles32; 05-15-2023 at 11:49 AM. Reason: Didnt mean to put that image as a download.

  5. The Following User Says Thank You to Rawcharles32 For This Useful Post:

    pushok_1 (05-20-2023)

  6. #1175
    SleepyLia's Avatar
    Join Date
    Jun 2021
    Gender
    female
    Posts
    129
    Reputation
    10
    Thanks
    682
    Quote Originally Posted by Rawcharles32 View Post
    Do you know how to fix this, i have to restart the game everytime i survive or i just cant use the item. Im using the 6.6.0 build because idk if there is a 6.7.1 updated download on here yet. Thanks and sorry if this has been answered! Here is the image of it https://i.imgur.com/BRQGkhs.png
    Open and close the bloodweb and switch preset and back again after every match.

  7. The Following User Says Thank You to SleepyLia For This Useful Post:

    Rawcharles32 (05-15-2023)

  8. #1176
    Rawcharles32's Avatar
    Join Date
    Jan 2021
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    2

    Thank you!

    Quote Originally Posted by SleepyLia View Post


    Open and close the bloodweb and switch preset and back again after every match.
    Fucking Legend, thanks!

  9. The Following User Says Thank You to Rawcharles32 For This Useful Post:

    SleepyLia (05-15-2023)

  10. #1177
    golosholos's Avatar
    Join Date
    Dec 2022
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0

    Post Prestige

    First of I want to thank you for the Script.

    I got 2 problems and would be happy if someone could help.

    1. Is there a fast way to change the prestige level of every character to something different for example values between 1-9 randomly. Dont want eve character to have the same Level. If thats possible a instruction would be cool since Iam really bad when it comes to things like this.

    2. Is there a fast way to change the amount of Addons/Items of each character to random values? Like above dont want every character to have the same number of addons. Changing it manually takes ages.

    Thanks for everyone who tries to help in advance

  11. #1178
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    589
    Reputation
    106
    Thanks
    1,789
    My Mood
    Inspired
    Quote Originally Posted by golosholos View Post
    First of I want to thank you for the Script.

    I got 2 problems and would be happy if someone could help.

    1. Is there a fast way to change the prestige level of every character to something different for example values between 1-9 randomly. Dont want eve character to have the same Level. If thats possible a instruction would be cool since Iam really bad when it comes to things like this.

    2. Is there a fast way to change the amount of Addons/Items of each character to random values? Like above dont want every character to have the same number of addons. Changing it manually takes ages.

    Thanks for everyone who tries to help in advance
    You must use one of my new methods.
    If you want every character different use this https://www.mpgh.net/forum/showthrea...1#post15352013 (this method will use only the GetAll file for every character, you must enable GetAll and disable Bloodweb from AutoResponder)
    If you just want a fast method to have characters with different levels (but same amount of object) use this https://www.mpgh.net/forum/showthrea...1#post15341876

    - - - Updated - - -

    To randomize values i developed an HTML page, you can paste it to JSFiddle or similar website.
    I never published it because nobody ask for that, but i did this long time ago
    Paste the GetAll downloaded from 1st post then use 1st method on previous answer (https://www.mpgh.net/forum/showthrea...1#post15352013)

     

    Code:
    <!DOCTYPE html>
    <html>
        <head>
            <title>TextReplacer</title>
            <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
            <style>
                .vertical-center {
                    min-height: 100%;
                    min-height: 100vh;
                    display: flex;
                    align-items: center;
                }
                textarea::placeholder{
                    font-size: 2rem;
                }
            </style>
    		<script>
    		function replace() {
    		  var input = document.getElementById("result");
    		  var result = input.value;
    		  var search = document.getElementById("replace_in").value;
    		  var min = parseInt(document.getElementById("minimum").value);
    		  var max = parseInt(document.getElementById("maximum").value);
    
    		  if (isNaN(min) || isNaN(max) || (min === 0 && max === 0)) {
    			min = 10;
    			max = 100;
    		  }
    
    		  var regex = new RegExp(search, "g");
    		  result = result.replace(regex, function () {
    			var randomValue = Math.floor(Math.random() * (max - min + 1) + min);
    			return randomValue.toString();
    		  });
    
    		  input.value = result;
    		}
    
    		function copy() {
    		  var input = document.getElementById("result").value;
    		  navigator.clipboard.writeText(input);
    		  alert("Copied to clipboard");
    		}
    		</script>
        </head>
        <body class="bg-dark">
            <div class="jumbotron vertical-center">
                <div class="container-fluid text-white text-center">
                    <h1>Text Replacer</h1>
                    <h4>With random values</h4>
                    <div class="row form-group m-5 align-items-center">
                        <div class="col"><input class="input form-control fs-5" type="text" id="replace_in" placeholder="Text to find"></div>
                        <div class="col"><input class="input form-control fs-5" type="number" id="minimum" placeholder="Minimum value"></div>
                        <div class="col"><input class="input form-control fs-5" type="number" id="maximum" placeholder="Maximum value"></div>
                        <div class="col"><button class="btn btn-success form-control fs-5" onClick="replace()">REPLACE</button></div>
                        <div class="col"><button class="btn btn-primary form-control fs-5" onClick="copy()">COPY TO CLIPBOARD</button></div>
                    </div>
                    <div class="row m-5 align-items-center">
                        <div class="col-12"><textarea class="form-control" id="result" class="input" rows="20" placeholder="Write here text you want to edit..."></textarea></div>
                    </div>
    				<h4>by 8otto</h4>
                </div>
            </div>
        </body>
    </html>


     


    Last edited by 8otto; 05-16-2023 at 01:21 PM.

  12. #1179
    lerox89's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0

    such a shame

    Dam guys is there really no way to use this on the steam version? having to pay for the all the killers or farming for 5k hours seems really frustating

  13. #1180
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    589
    Reputation
    106
    Thanks
    1,789
    My Mood
    Inspired
    Quote Originally Posted by lerox89 View Post
    Dam guys is there really no way to use this on the steam version? having to pay for the all the killers or farming for 5k hours seems really frustating
    Buy the game on Epic or Game Pass from Microsoft.. I can't do an SSL bypass or I would share it for free..

  14. #1181
    niggisbeats's Avatar
    Join Date
    Feb 2022
    Gender
    male
    Posts
    154
    Reputation
    10
    Thanks
    718
    My Mood
    Twisted
    Quote Originally Posted by lerox89 View Post
    Dam guys is there really no way to use this on the steam version? having to pay for the all the killers or farming for 5k hours seems really frustating
    There's always greenluma if all you want is the survs/killers unlocked. You could also pay for a SSL bypass for a temp profile but that gets expensive, best off buying a copy for Epic Games from a key website imo.

  15. #1182
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    589
    Reputation
    106
    Thanks
    1,789
    My Mood
    Inspired
    Quote Originally Posted by niggisbeats View Post
    There's always greenluma if all you want is the survs/killers unlocked. You could also pay for a SSL bypass for a temp profile but that gets expensive, best off buying a copy for Epic Games from a key website imo.
    Ah sure I use GreenLuma on Steam, but only characters unlocking.

  16. #1183
    opedrohilario's Avatar
    Join Date
    Sep 2022
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    5
    Quote Originally Posted by 8otto View Post
    Ah sure I use GreenLuma on Steam, but only characters unlocking.
    is there a tutorial and files for that method on Steam?

  17. #1184
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    589
    Reputation
    106
    Thanks
    1,789
    My Mood
    Inspired
    Quote Originally Posted by opedrohilario View Post
    is there a tutorial and files for that method on Steam?
    On cs rin ru in section "forum about steam games" there is the release and the tutorial of how to use it.
    Ofc is a general tutorial you have to unlock DbD DLCs.

    - - - Updated - - -

    6.6.0 to 6.7.2 update
     

     

    You have to follow this only if you're using FiddlerScript Market (var Market = true)
    • (Optional) Extract again List.txt from downloaded archive in C:\Rules
    • Open List.txt with Notepad or other editors
    • Copy code from "New Method" section below
    • Paste code at the beginning of List.txt in a new line (follow the screenshot!)
    • Save the file



     

    You have to follow this only if you're using AutoResponder api/v1/inventories!
    • (Optional) Extract again Market from downloaded archive in C:\Rules
    • Open Market with Notepad or other editors
    • Copy code from "Old Method" section below
    • Paste code at beginning or the end of "inventory":[] array (follow the screenshot!)
    • Add a comma on latest element pasted ONLY IF you pasted the code at beginning (follow the screenshot!)
    • Add a comma on element before the 1st pasted ONLY IF you pasted the code at end (follow the screenshot!)
    • Save the file





     

    Code:
    AV_Head018
    AV_Legs018
    AV_outfit_018
    AV_Torso002_04
    AV_Torso018
    HS_Head016
    HS_Torso013_01
    ML_Hand007
    ML_Hand007_01
    ML_Legs007
    ML_Legs007_01
    ML_outfit_007
    ML_outfit_007_01
    ML_Torso007
    ML_Torso007_01
    SA_001
    SA_002
    SA_003
    TI_001
    TI_002
    TI_003
    TI_004
    TI_005
    TI_006
    TI_007
    TI_008
    TI_009
    TI_010
    TI_011
    TI_012
    TI_013
    TI_014
    TI_015
    TI_016
    TI_017
    TI_018
    TI_019
    TI_020
    TI_021
    TI_022
    TI_023
    TI_024
    TI_025
    TI_026
    TI_027
    TI_028
    TI_029
    TI_030
    TI_031
    TI_032
    TI_033
    TI_034
    TI_035
    TI_036
    TI_037
    TI_038
    TI_039
    TI_040
    TI_041
    TI_042
    TI_043
    TI_044
    TI_045
    TI_046
    TI_047
    TI_048
    CM_Torso04_02
    DK_Torso001_05
    DO_Body016
    DO_Body016_01
    DO_Head016
    DO_Head016_01
    DO_outfit_016
    DO_outfit_016_01
    DO_W016
    DO_W016_01
    DF_Head018_01
    DF_Head024
    DF_Legs003_03
    DF_outfit_018_01
    DF_Torso015_02
    DF_Torso04_02
    FM_Torso01_07
    UK_Body013
    UK_Head013
    UK_outfit_013
    UK_W013
    BE_Body020
    BE_Mask020
    BE_outfit_020
    BE_W019
    BE_W020
    JP_Torso04_03
    MS_Head019
    MS_Legs019
    MS_outfit_019
    MS_Torso019
    MS_Torso02_05
    KS_Head012_02
    KS_Head016
    KS_Legs012_02
    KS_Legs016
    KS_outfit_012_02
    KS_outfit_016
    KS_Torso012_02
    KS_Torso016
    KS_Torso02_04
    K23_Body007_02
    K23_Head007_02
    K23_outfit_007_02
    K23_Weapon007_02
    K26_Body011
    K26_Head011
    K26_outfit_011
    K26_W011
    K30_Body008
    K30_Head008
    K30_outfit_008
    K30_W008
    K31_Body007
    K31_Body008
    K31_Body008_01
    K31_Head007
    K31_Head008
    K31_Head008_01
    K31_outfit_007
    K31_outfit_008
    K31_outfit_008_01
    K31_W007
    K31_W008
    K31_W008_01
    GS_Head023
    GS_Legs023
    GS_outfit_023
    GS_Torso01_07
    GS_Torso023
    KK_Body025
    KK_Mask025
    KK_outfit_025
    KK_W025
    MT_Head022
    MT_Head023
    MT_Legs022
    MT_Legs023
    MT_outfit_022
    MT_outfit_023
    MT_Torso022
    MT_Torso023
    MT_Torso04_05
    NK_Head023
    NK_Legs023
    NK_outfit_023
    NK_Torso01_07
    NK_Torso023
    SwedenKiller_Body011_01
    SwedenKiller_Mask011_01
    SwedenKiller_outfit_011_01
    SwedenKiller_W011_01
    S23_Head021
    S23_Legs021
    S23_outfit_021
    S23_Torso013_01
    S23_Torso021
    S24_Head015
    S24_Legs015
    S24_outfit_015
    S24_Torso015
    S24_Torso01_06
    S25_Head015
    S25_Legs015
    S25_outfit_015
    S25_Torso008_01
    S25_Torso015
    S28_Head011_01
    S28_Head018
    S28_Legs011_01
    S28_Legs018
    S28_outfit_011_01
    S28_outfit_018
    S28_Torso008_01
    S28_Torso011_01
    S28_Torso018
    S29_Torso010
    S29_Torso010_01
    S31_Head009
    S31_Legs009
    S31_outfit_009
    S31_Torso009
    S31_Torso01_06
    S34_Head011
    S34_Legs011
    S34_outfit_011
    S34_Torso007_01
    S34_Torso011
    S35_Head007
    S35_Head007_01
    S35_Head008
    S35_Head008_01
    S35_Legs007
    S35_Legs007_01
    S35_Legs008
    S35_Legs008_01
    S35_outfit_007
    S35_outfit_007_01
    S35_outfit_008
    S35_outfit_008_01
    S35_Torso007
    S35_Torso007_01
    S35_Torso008
    S35_Torso008_01
    S35_Torso01_05
    S36_Head007
    S36_Head007_01
    S36_Head008
    S36_Head008_01
    S36_Legs007
    S36_Legs007_01
    S36_Legs008
    S36_Legs008_01
    S36_outfit_007
    S36_outfit_007_01
    S36_outfit_008
    S36_outfit_008_01
    S36_Torso007
    S36_Torso007_01
    S36_Torso008
    S36_Torso008_01
    S36_Torso01_05
    TR_Body008_01
    TR_Mask008_01
    TR_outfit_008_01
    TR_W008_01
    TR_W017
    TW_W015
    SwedenSurvivor_Head019
    SwedenSurvivor_Legs019
    SwedenSurvivor_outfit_019
    SwedenSurvivor_Torso019
    SwedenSurvivor_Torso02_04
    US_Head014_01
    US_Head017
    US_Legs014_01
    US_Legs017
    US_outfit_014_01
    US_outfit_017
    US_Torso011_02
    US_Torso014_01
    US_Torso017


     

    Code:
        {
            "lastUpdateAt": 1684428775,
            "objectId": "AV_Head018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "AV_Legs018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "AV_outfit_018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "AV_Torso002_04",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "AV_Torso018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "HS_Head016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "HS_Torso013_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_Hand007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_Hand007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_Legs007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_Legs007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_outfit_007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_outfit_007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_Torso007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "ML_Torso007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SA_001",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SA_002",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SA_003",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_001",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_002",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_003",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_004",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_005",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_006",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_009",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_010",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_012",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_013",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_014",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_017",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_020",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_021",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_022",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_024",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_025",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_026",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_027",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_028",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_029",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_030",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_031",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_032",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_033",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_034",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_035",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_036",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_037",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_038",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_039",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_040",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_041",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_042",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_043",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_044",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_045",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_046",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_047",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TI_048",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "CM_Torso04_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DK_Torso001_05",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_Body016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_Body016_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_Head016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_Head016_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_outfit_016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_outfit_016_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_W016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DO_W016_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DF_Head018_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DF_Head024",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DF_Legs003_03",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DF_outfit_018_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DF_Torso015_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "DF_Torso04_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "FM_Torso01_07",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "UK_Body013",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "UK_Head013",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "UK_outfit_013",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "UK_W013",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "BE_Body020",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "BE_Mask020",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "BE_outfit_020",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "BE_W019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "BE_W020",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "JP_Torso04_03",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MS_Head019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MS_Legs019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MS_outfit_019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MS_Torso019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MS_Torso02_05",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Head012_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Head016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Legs012_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Legs016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_outfit_012_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_outfit_016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Torso012_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Torso016",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KS_Torso02_04",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K23_Body007_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K23_Head007_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K23_outfit_007_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K23_Weapon007_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K26_Body011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K26_Head011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K26_outfit_011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K26_W011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K30_Body008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K30_Head008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K30_outfit_008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K30_W008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_Body007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_Body008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_Body008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_Head007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_Head008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_Head008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_outfit_007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_outfit_008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_outfit_008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_W007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_W008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "K31_W008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "GS_Head023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "GS_Legs023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "GS_outfit_023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "GS_Torso01_07",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "GS_Torso023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KK_Body025",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KK_Mask025",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KK_outfit_025",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "KK_W025",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Head022",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Head023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Legs022",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Legs023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_outfit_022",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_outfit_023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Torso022",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Torso023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "MT_Torso04_05",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "NK_Head023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "NK_Legs023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "NK_outfit_023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "NK_Torso01_07",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "NK_Torso023",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenKiller_Body011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenKiller_Mask011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenKiller_outfit_011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenKiller_W011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S23_Head021",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S23_Legs021",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S23_outfit_021",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S23_Torso013_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S23_Torso021",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S24_Head015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S24_Legs015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S24_outfit_015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S24_Torso015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S24_Torso01_06",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S25_Head015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S25_Legs015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S25_outfit_015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S25_Torso008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S25_Torso015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Head011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Head018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Legs011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Legs018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_outfit_011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_outfit_018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Torso008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Torso011_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S28_Torso018",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S29_Torso010",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S29_Torso010_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S31_Head009",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S31_Legs009",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S31_outfit_009",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S31_Torso009",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S31_Torso01_06",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S34_Head011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S34_Legs011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S34_outfit_011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S34_Torso007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S34_Torso011",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Head007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Head007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Head008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Head008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Legs007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Legs007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Legs008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Legs008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_outfit_007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_outfit_007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_outfit_008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_outfit_008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Torso007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Torso007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Torso008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Torso008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S35_Torso01_05",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Head007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Head007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Head008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Head008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Legs007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Legs007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Legs008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Legs008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_outfit_007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_outfit_007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_outfit_008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_outfit_008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Torso007",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Torso007_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Torso008",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Torso008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "S36_Torso01_05",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TR_Body008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TR_Mask008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TR_outfit_008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TR_W008_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TR_W017",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "TW_W015",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenSurvivor_Head019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenSurvivor_Legs019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenSurvivor_outfit_019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenSurvivor_Torso019",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "SwedenSurvivor_Torso02_04",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Head014_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Head017",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Legs014_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Legs017",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_outfit_014_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_outfit_017",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Torso011_02",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Torso014_01",
            "quantity": 1
        },
        {
            "lastUpdateAt": 1684428775,
            "objectId": "US_Torso017",
            "quantity": 1
        }
    Last edited by 8otto; 05-18-2023 at 11:31 AM.

  18. The Following 3 Users Say Thank You to 8otto For This Useful Post:

    DarthM16 (05-18-2023),ertb (05-18-2023),regietime (05-19-2023)

  19. #1185
    wina02's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    74
    Reputation
    10
    Thanks
    78
    @8otto I'm using the old version and never had problems, what's the difference with the new method?

Page 79 of 92 FirstFirst ... 2969777879808189 ... LastLast

Similar Threads

  1. Replies: 3
    Last Post: 08-18-2020, 12:59 PM
  2. LoL NA - Full Access/Unverified/All Champions Unlocked
    By snowtime in forum League of Legends Marketplace
    Replies: 3
    Last Post: 10-25-2019, 11:53 AM
  3. [WTS] GTA V Services/Unlock All/ 0% Ban Risk/Fast/Full Service With 10$/PS3->PS4,PC,XBOXONE
    By ploutarxos in forum Grand Theft Auto 5 (GTA V) User Services/Shops
    Replies: 69
    Last Post: 01-19-2019, 11:20 AM
  4. [WTS] GTA V Services/Unlock All/ 0% Risk/Full Service With 10$/PS3->PS4,PC,XBOXONE
    By niggaunderground in forum Grand Theft Auto 5 (GTA V) User Services/Shops
    Replies: 8
    Last Post: 08-29-2016, 04:32 PM
  5. [Outdated] Blockstorm Full Unlock All Weapons, No Recoil All Weapon,Instant Reload AK47
    By doncarlone in forum Other First Person Shooter Hacks
    Replies: 6
    Last Post: 12-10-2014, 06:57 PM