Page 88 of 112 FirstFirst ... 3878868788899098 ... LastLast
Results 1,306 to 1,320 of 1676
  1. #1306
    klenum's Avatar
    Join Date
    Jul 2023
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hello, please advise. When used, the first message appears: "Are you sure you want to exit the game?". If you refuse after 20 seconds, the game simply closes. Someone faced? There is a solution?

  2. #1307
    yamai777's Avatar
    Join Date
    Jul 2023
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Amused

    Question prestige

    Hello, i was wondering if its possible to give characters custom prestige if yes, how?

  3. #1308
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    815
    Reputation
    106
    Thanks
    2,193
    My Mood
    Inspired
    Quote Originally Posted by yamai777 View Post
    Hello, i was wondering if its possible to give characters custom prestige if yes, how?
    Use New Method from archive in 1st page, then change prestige in GetAll file

  4. #1309
    Quiu's Avatar
    Join Date
    Nov 2020
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Exclamation

    Quote Originally Posted by 8otto View Post
    Use New Method from archive in 1st page, then change prestige in GetAll file
    Does it work on Steam?

  5. #1310
    g1ge's Avatar
    Join Date
    May 2023
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Lightbulb How to update the new method when a new character appears?

    Quote Originally Posted by 8otto View Post
    Ok, do this, reset Fiddler Script, download attachment from 1st post and use classic method with AutoResponder

    - - - Updated - - -

    Update 7.0.0+

    Into the ZIP there are 2 folder choose between Old Method and New Method.
    Old Method classic install as in 1st post.
    New method, extract Documents in your User Folder (C:\Users\YourProfileName)
    Then extract Rules folder to C:\

    Virus Scans:
    https://www.virustotal.com/gui/file/...89aa?nocache=1
    https://virusscan.jotti.org/it-IT/fi...job/fnw4b66ejx

    All tested, everything is working fine!

    WAIT FOR APPROVAL, YOU CAN'T DOWNLOAD IT IMMEDIATELY.
    How to update the new method when a new character appears?

  6. #1311
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    815
    Reputation
    106
    Thanks
    2,193
    My Mood
    Inspired
    Quote Originally Posted by g1ge View Post
    How to update the new method when a new character appears?
    I will upload the new update (I just come back from work, I'm downloading the update), however I develop a simple Converter from SleepyLia's Automatic Market Update to my "New Method"

    Here it is with tutorial: https://www.mpgh.net/forum/showthrea...1#post15363651

  7. #1312
    Replayero1's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    2
    My Mood
    Cheerful
    Quote Originally Posted by 8otto View Post
    I will upload the new update (I just come back from work, I'm downloading the update), however I develop a simple Converter from SleepyLia's Automatic Market Update to my "New Method"

    Here it is with tutorial: https://www.mpgh.net/forum/showthrea...1#post15363651

    Do i need to change any thing in getall ? ( new methold )
    Or just convert to list.txt and all character and perk will unlocked ?

  8. #1313
    giacris's Avatar
    Join Date
    Jun 2023
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 8otto View Post
    I will upload the new update (I just come back from work, I'm downloading the update), however I develop a simple Converter from SleepyLia's Automatic Market Update to my "New Method"

    Here it is with tutorial: https://www.mpgh.net/forum/showthrea...1#post15363651
    yh i just did that and now the game keep saying "the game has initialized incorrectly and may not save your game properly" solutions?

    Edit: ok the problem was the bloodweb.json/Getall.json/Market.json just needed to delete all the ".json" from those 3 files for some reason and everything started working right

    I'll leave the post here so it can maybe help someone in the future
    Last edited by giacris; 07-25-2023 at 01:52 PM.

  9. #1314
    gabable's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Quote Originally Posted by giacris View Post
    just did that and now the game keep saying "the game has initialized incorrectly and may not save your game properly" solutions?

    Edit: ok the problem was the bloodweb.json/Getall.json/Market.json just needed to delete all the ".json" from those 3 files for some reason and everything started working right

    I'll leave the post here so it can maybe help someone in the future
    I'll try and explain this to the best of my ability so that anyone of any experience could understand since I ran into this same issue when I first started following 8otto's updates. It essentially comes down to specifics and how computers can't work correctly with out them. If you are using the old method with autoresponder:

    C:\Rules\Market
    C:\Rules\Bloodweb
    C:\Rules\GetAll

    would need to be changed to:

    C:\Rules\Market.json
    C:\Rules\Bloodweb.json
    C:\Rules\GetAll.json

    This is because the original files from 8otto's download are files which do not have an extension at the end like .jpg, .exe, or .json like in this example. If you want Fiddler to correcly find .json files, you would need to make the change in Fiddler to reflect this. This is esentailly the same with the new method using Fiddler Script:

    Code:
    if(Bloodweb && (oSession.uriContains("api/v1/dbd-character-data/bloodweb") || oSession.uriContains("api/v1/dbd-character-data/get-all"))){
    			try{
    				var getallPath = "C:\\Rules\\GetAll.json";
    				if (!System.IO.File.Exists(getallPath)) return;
    				var getallString = System.IO.File.ReadAllText(getallPath);
    				if (oSession.uriContains("api/v1/dbd-character-data/get-all")){
    					oSession.utilSetResponseBody(getallString);
    					return;
    I use the new method and as you can see in the example above, I already added .json to the end of var getallPath = "C:\\Rules\\GetAll" so that I didn't have to continue editing the file extension every time there is a new update.

    P.S.: Sorry I didn't include any imagery. I need to make a few more posts before I can post links.

  10. #1315
    JustEricNL's Avatar
    Join Date
    Feb 2022
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    8
    My Mood
    Amazed
    update 7.1.0?

  11. The Following User Says Thank You to JustEricNL For This Useful Post:

    Himikoyor (07-28-2023)

  12. #1316
    Himikoyor's Avatar
    Join Date
    Jul 2023
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Edit Player Level

    First, I want to thank you for all you hard work and sharing your knowledge with us. I wanted to ask if there a way to edit Player Level

  13. #1317
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    815
    Reputation
    106
    Thanks
    2,193
    My Mood
    Inspired
    Quote Originally Posted by Himikoyor View Post
    First, I want to thank you for all you hard work and sharing your knowledge with us. I wanted to ask if there a way to edit Player Level
    Thank you for compliment, no unluckily it's not possible

  14. The Following 2 Users Say Thank You to 8otto For This Useful Post:

    Himikoyor (07-28-2023),purelove33 (07-30-2023)

  15. #1318
    Himikoyor's Avatar
    Join Date
    Jul 2023
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 8otto View Post
    Thank you for compliment, no unluckily it's not possible
    Thanks for the reply, I kept seeing paid injectors releasing Bloodpoint, iri shards, auric cells and Player level spoof the last few days that's why i wanted to ask. Thanks for your time <3

  16. #1319
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    815
    Reputation
    106
    Thanks
    2,193
    My Mood
    Inspired
    Quote Originally Posted by Himikoyor View Post
    Thanks for the reply, I kept seeing paid injectors releasing Bloodpoint, iri shards, auric cells and Player level spoof the last few days that's why i wanted to ask. Thanks for your time <3
    I don't know about this method, so maybe it's possible, but i don't know how

  17. The Following User Says Thank You to 8otto For This Useful Post:

    Himikoyor (07-29-2023)

  18. #1320
    semacheats3's Avatar
    Join Date
    Jul 2023
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    Can anyone help me to confiure it for EPIC GAMES in Windows 10?

    Quote Originally Posted by gabable View Post
    I'll try and explain this to the best of my ability so that anyone of any experience could understand since I ran into this same issue when I first started following 8otto's updates. It essentially comes down to specifics and how computers can't work correctly with out them. If you are using the old method with autoresponder:

    C:\Rules\Market
    C:\Rules\Bloodweb
    C:\Rules\GetAll

    would need to be changed to:

    C:\Rules\Market.json
    C:\Rules\Bloodweb.json
    C:\Rules\GetAll.json

    This is because the original files from 8otto's download are files which do not have an extension at the end like .jpg, .exe, or .json like in this example. If you want Fiddler to correcly find .json files, you would need to make the change in Fiddler to reflect this. This is esentailly the same with the new method using Fiddler Script:

    Code:
    if(Bloodweb && (oSession.uriContains("api/v1/dbd-character-data/bloodweb") || oSession.uriContains("api/v1/dbd-character-data/get-all"))){
    			try{
    				var getallPath = "C:\\Rules\\GetAll.json";
    				if (!System.IO.File.Exists(getallPath)) return;
    				var getallString = System.IO.File.ReadAllText(getallPath);
    				if (oSession.uriContains("api/v1/dbd-character-data/get-all")){
    					oSession.utilSetResponseBody(getallString);
    					return;
    I use the new method and as you can see in the example above, I already added .json to the end of var getallPath = "C:\\Rules\\GetAll" so that I didn't have to continue editing the file extension every time there is a new update.

    P.S.: Sorry I didn't include any imagery. I need to make a few more posts before I can post links.
    Can anyone help?

Page 88 of 112 FirstFirst ... 3878868788899098 ... 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