Page 23 of 26 FirstFirst ... 132122232425 ... LastLast
Results 331 to 345 of 389
  1. #331
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    982
    Reputation
    106
    Thanks
    2,513
    My Mood
    Inspired
    Quote Originally Posted by HoTSpIcYBoYz View Post
    I'm use your script but still no luck. What's your platform? EGS Steam or something?
    EGS, ofc on Steam it doesn't work cause Fiddler doesn't work on Steam without bypass (that I don't have so don't ask for it)

    - - - Updated - - -

    Quote Originally Posted by HoTSpIcYBoYz View Post
    Hello 8otto. Thank you for your feedback.

    I carefully done your script but it work for market, bloodweb. But it not succesful with quest. I select quest with one side survivor or killer. Then I go to custom match play as killer and add some bot. When it in game I quit match. But quest not done.

    Anyways I'm always sincerely for your kindness

    Thank you.
    Are you on Microsoft? I never tried the script there, maybe there is something different.. idk
    I don't want to download another DbD on my PC :'(
    Last edited by 8otto; 04-06-2024 at 10:09 AM.

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

    HoTSpIcYBoYz (04-09-2024)

  3. #332
    Stmi's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Location
    earth
    Posts
    5
    Reputation
    10
    Thanks
    5

    very cool work

    i love it so much

  4. #333
    HoTSpIcYBoYz's Avatar
    Join Date
    Mar 2022
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    [QUOTE=8otto;15404312]EGS, ofc on Steam it doesn't work cause Fiddler doesn't work on Steam without bypass (that I don't have so don't ask for it)

    I'm on steam with bypass. Everything works except Quest. I'll try on EGS. Thank for feedback.

  5. #334
    opedrohilario's Avatar
    Join Date
    Sep 2022
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    6
    Is it still working on new patch?

  6. #335
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    982
    Reputation
    106
    Thanks
    2,513
    My Mood
    Inspired
    Quote Originally Posted by opedrohilario View Post
    Is it still working on new patch?
    Yes, but you have to play matches 1 match = 1 challenge (You have to use latest version of code not the one in 1st page)

  7. #336
    Melodiya's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    100
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by 8otto View Post
    Yes, but you have to play matches 1 match = 1 challenge (You have to use latest version of code not the one in 1st page)
    8otto please tell me how to find out the approximate mmr of my killer in the new update? Fiddler no longer shows the lobby creator and mmr(((

  8. #337
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    982
    Reputation
    106
    Thanks
    2,513
    My Mood
    Inspired
    Quote Originally Posted by Melodiya View Post
    8otto please tell me how to find out the approximate mmr of my killer in the new update? Fiddler no longer shows the lobby creator and mmr(((
    Hi Melodiya, I don't know how to see MMR right now, before i check in queue request, but I saw that it was a lot randomic, so I don't see it anymore, I just play with BloodwebNoPerks and ChallangeCompleter

  9. #338
    Melodiya's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    100
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by 8otto View Post
    Hi Melodiya, I don't know how to see MMR right now, before i check in queue request, but I saw that it was a lot randomic, so I don't see it anymore, I just play with BloodwebNoPerks and ChallangeCompleter
    Bloodwebnoperks?
    Let me know if you can get MMR again, we will all be very grateful

  10. #339
    ayas616's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Does it still work after 8.0? now i always get a connection error with the fiddler activated when trying to access the game, but worked great with the same script just a few days before

  11. #340
    Melodiya's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    100
    Reputation
    10
    Thanks
    3
    Is it working for event challenges? Didn't worked for me. I use your legit script where we need to play real matches

  12. #341
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    982
    Reputation
    106
    Thanks
    2,513
    My Mood
    Inspired
    Quote Originally Posted by Melodiya View Post
    Is it working for event challenges? Didn't worked for me. I use your legit script where we need to play real matches
    Tested and it works, try to deselect and reselect the challenge.

  13. #342
    Melodiya's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    100
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by 8otto View Post
    Tested and it works, try to deselect and reselect the challenge.
    I did it, I have had no success for two days now (same on my sisters pc), I play through your legit script for challenges, the usual script works through custom matches. Can you please fix it?

  14. #343
    Melodiya's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    100
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by 8otto View Post
    It seems to work as intended!

    GLOBAL VARIABLES (On top of script):
    If you don't have C:\Rules folder create it.
    Code:
    var Quest = true;
    var MarketUpdaterPath = "C:\\Rules\\";
    Inside OnBeforeRequest:
    Code:
    if (Quest && oSession.uriContains("api/v1/archives/stories/update/quest-progress-v3")){
    	try{
    		if (MarketUpdaterPath[-1] != "\\") MarketUpdaterPath += "\\";
    		var questPath = MarketUpdaterPath + "Quest.json";
    		if (!System.IO.File.Exists(questPath)) return;
    		var questString = System.IO.File.ReadAllText(questPath);
    		var questJson = Fiddler.WebFormats.JSON.JsonDecode(questString);
    		oSession.utilDecodeRequest();
    		var jsonString = oSession.GetRequestBodyAsString();
    		var oJson = Fiddler.WebFormats.JSON.JsonDecode(jsonString);
    		oJson.JSONObject["questEvents"] = questJson.JSONObject["questEvents"];
    		oJson.JSONObject["role"] = questJson.JSONObject["role"];
    		var oString = Fiddler.WebFormats.JSON.JsonEncode(oJson.JSONObject);
    		oSession.utilSetRequestBody(oString);
    	}
    	catch(e){
    		FiddlerObject.log(e);
    	}
    }
    Inside OnBeforeResponse (Delete old Quest script than paste this instead):
    Code:
    if (Quest && oSession.uriContains("api/v1/archives/stories/update/active-node-v3")){
    	try{
    		//DECODING AND CONVERTING REQUEST AND RESPONSE
    		oSession.utilDecodeRequest();
    		oSession.utilDecodeResponse();
    		var jsonRequest = oSession.GetRequestBodyAsString();
    		var oJsonRequest = Fiddler.WebFormats.JSON.JsonDecode(jsonRequest);
    		var jsonResponse = oSession.GetResponseBodyAsString();
    		var oJsonResponse = Fiddler.WebFormats.JSON.JsonDecode(jsonResponse);
    		//GETTING VARIABLES FROM SELECTED CHALLENGE
    		if(oJsonResponse.JSONObject["activeNodesFull"].Count == 0) return;
    		var role = oJsonRequest.JSONObject["role"];
    		if(role == "both") role = "survivor";
    		var neededProgression = oJsonResponse.JSONObject["activeNodesFull"][0]["objectives"][0]["neededProgression"];
    		var questEvents = oJsonResponse.JSONObject["activeNodesFull"][0]["objectives"][0]["questEvent"];
    		var matchId = System.Guid.NewGuid().ToString();
    		var requestBody = '{"matchId":"'+matchId+'","questEvents":[';
    		for(var i=0;i<questEvents.Count;i++){
    			var repetition = questEvents[i]["repetition"];
    			repetition *= neededProgression;
    			var questEventId = questEvents[i]["questEventId"];
    			var parameters = questEvents[i]["parameters"];
    			if(parameters != undefined) requestBody += '{"parameters":"'+parameters+'","questEventId":"'+questEventId+'","repetition":'+repetition+'}';
    			else requestBody += '{"questEventId":"'+questEventId+'","repetition":'+repetition+'}';
    			if(questEvents.Count > 1 && i != questEvents.Count - 1) requestBody += ",";
    		}
    		requestBody += '],"role":"'+role+'"}';
    		//GENERATING QUEST FILE
    		System.IO.File.WriteAllText(MarketUpdaterPath+"Quest.json", requestBody);
    	}
    	catch(e){FiddlerObject.log("Error unlocking challenge");}
    }
    USAGE
    Select 1 challenge at time for 1 role only then play with that role, challenge automatically completes also if you don't do that.
    Is it still working for you?

  15. #344
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    982
    Reputation
    106
    Thanks
    2,513
    My Mood
    Inspired
    Quote Originally Posted by Melodiya View Post
    Is it still working for you?
    Try latest FiddlerScript version, and see if it works, however the method is still working.

    https://www.mpgh.net/forum/showthrea...1#post15412375

    If you don't want to use Market and other stuff change true to false on top of the code at variables like Bloodweb_v6 ecc

  16. #345
    Melodiya's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    100
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by 8otto View Post
    Try latest FiddlerScript version, and see if it works, however the method is still working.

    https://www.mpgh.net/forum/showthrea...1#post15412375

    If you don't want to use Market and other stuff change true to false on top of the code at variables like Bloodweb_v6 ecc
    Is there a script for challenges through custom matches? If so, then this is not what I asked for, I need a script that helps with challenges during real matches, for example if a challenge requires Zarina then I have to play with her

Page 23 of 26 FirstFirst ... 132122232425 ... LastLast

Similar Threads

  1. Replies: 7
    Last Post: 02-04-2019, 09:06 PM
  2. Advanced warfare challenge completer
    By blackopskid7 in forum Call of Duty Advanced Warfare Discussions
    Replies: 10
    Last Post: 11-21-2014, 07:10 PM
  3. "challenge complete" trigger
    By 12qwerty34 in forum Call of Duty Ghosts Discussions & Help
    Replies: 5
    Last Post: 01-01-2014, 04:32 AM
  4. 100% complete Challenges
    By Shckr57 in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 116
    Last Post: 11-21-2011, 11:38 PM
  5. [Updated 3.1]UFO MOD / All Challenges completion lobby / XPScale Mod after rest
    By kaf073 in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 38
    Last Post: 08-06-2010, 10:41 PM