Page 136 of 140 FirstFirst ... 3686126134135136137138 ... LastLast
Results 2,026 to 2,040 of 2090
  1. #2026
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by imDarker View Post


    Thank you so much for very detail that gave me clear about how to do ! Vouch+
    No problem

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

    Slashy__ (10-25-2024)

  3. #2027
    Slashy__'s Avatar
    Join Date
    May 2024
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    11
    Much love 8otto and the team behind the fiddler scripts

  4. #2028
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by Slashy__ View Post
    Much love 8otto and the team behind the fiddler scripts
    Thank you! But what team? 😂

  5. #2029
    AlphaGunsmith's Avatar
    Join Date
    Oct 2022
    Gender
    female
    Posts
    5
    Reputation
    10
    Thanks
    0
    It doesn't carry any cosmetics

  6. #2030
    fsdfsdfsdfs231's Avatar
    Join Date
    Aug 2024
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Any way to get the badges as well as banners? I have a market file from Fortnite Burger but he keeps it behind a paywall, saying that the development badges and banners cause a ban. Does anyone have these? Thank you

  7. #2031
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by fsdfsdfsdfs231 View Post
    Any way to get the badges as well as banners? I have a market file from Fortnite Burger but he keeps it behind a paywall, saying that the development badges and banners cause a ban. Does anyone have these? Thank you
    Banner and badges are already included in my FiddlerScript, you must use it to unlock them.
    Here's the script https://www.mpgh.net/forum/showthrea...1#post15426877

  8. #2032
    AlphaGunsmith's Avatar
    Join Date
    Oct 2022
    Gender
    female
    Posts
    5
    Reputation
    10
    Thanks
    0
    new mapping 8.3.2?

  9. #2033
    meramota's Avatar
    Join Date
    Apr 2023
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Is playerlevel not avaliable in the script?

  10. #2034
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by meramota View Post
    Is playerlevel not avaliable in the script?
    No I didn't add PlayerLevel cause it's useless, you can see it only when you open the game, but after a match it come back to real level.

  11. #2035
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Mappings Generator (Updater)

    Since you are all asking me for the updated mappings file, I have created this script that will automatically update it for you.

    How to use:
    Extract ZIP content in same folder
    Close Epic/Microsoft/Steam depends where you have the game
    Start MappingsGenerator_8otto.exe
    Enter Dead by Daylight exe path ( including exe name for example -> F:\Games\DeadByDaylight\DeadByDaylight\Binaries\EG S\DeadByDaylight-EGS-Shipping.exe )
    Waiting process to finish

    You will find DBD.usmap in C:\Rules and also other Dumped files in C:\Dumper-7

    How it works:
    It renames Epic DLL to avoid EAC launch (if found)
    It opens the game and Inject Dumper-7 DLL that extract mappings file

     

    Code:
    $User32 = Add-Type -Debug:$False -MemberDefinition '[DllImport("user32.dll")] public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X,int Y, int cx, int cy, uint uFlags);' -Name "User32Functions" -namespace User32Functions -PassThru
    $Handle = (Get-Process -pid $PID).MainWindowHandle
    [Void]$User32::SetWindowPos($Handle, -1, 0, 0, 0, 0, 0x53)
    $mappingsSettingsPath = ".\MappingsSettings.txt"
    $injectorPath = "Injector.exe"
    $dumperDll = "Dumper-7.dll"
    
    if (-Not (Test-Path -Path "C:\Rules")) { New-Item -Path "C:\Rules" -Type Directory }
    
    if (-Not (Test-Path -Path $mappingsSettingsPath)) {
        $exePath = (Read-Host "Enter the path of the executable to launch").Replace('"','')
        Set-Content $mappingsSettingsPath $exePath
    } else {
        $exePath = Get-Content $mappingsSettingsPath
    }
    
    if (-Not ((Test-Path -Path $exePath) -and (Test-Path -Path $injectorPath) -and (Test-Path -Path $dumperDll))) {
        Write-Host "Invalid path. Ensure that you extracted all in same folder." -ForegroundColor Red
        pause
        exit
    }
    
    $gameRoot = (Get-Item $exePath).Directory.Parent.Parent.FullName
    $dllPath = Join-Path -Path $gameRoot -ChildPath "Plugins\Runtime\Bhvr\OnlineSubsystemEpic\ThirdParty\EOS\SDK\Bin\EOSSDK-Win64-Shipping.dll"
    
    if (Test-Path -Path $dllPath) {
        Rename-Item -Path $dllPath -NewName "EOSSDK-Win64-Shipping.dll.bak"
        Write-Host "EOSSDK-Win64-Shipping.dll successfully renamed to EOSSDK-Win64-Shipping.dll.bak"
    }
    
    Start-Process -FilePath $exePath -ArgumentList "-eac-nop-loaded"
    Write-Host "Executable launched with parameter -eac-nop-loaded"
    
    Write-Host "Waiting for the game to load to inject Dumper-7. DON'T PRESS ANYTHING!"
    Start-Sleep -Seconds 30
    $injectorArgs = "--process-name $([System.IO.Path]::GetFileName($exePath)) --inject $dumperDll"
    
    $injectorProcess = Start-Process -FilePath $injectorPath -ArgumentList $injectorArgs -Wait -PassThru
    Write-Host "Injector launched and waiting for completion, DON'T PRESS ANYTHING!"
    
    
    Start-Sleep -Seconds 30
    Stop-Process -Name $([System.IO.Path]::GetFileNameWithoutExtension($exePath)) -Force
    
    if (Test-Path -Path "$dllPath.bak") {
        Rename-Item -Path "$dllPath.bak" -NewName "EOSSDK-Win64-Shipping.dll"
        Write-Host "EOSSDK-Win64-Shipping.dll.bak successfully renamed to EOSSDK-Win64-Shipping.dll"
    }
    
    $sourcePath = "C:\Dumper-7"
    $destinationFile = "C:\Rules\DBD.usmap"
    $latestFolder = Get-ChildItem -Path $sourcePath -Directory | Sort-Object LastWriteTime -Descending | Select-Object -First 1
    
    if ($latestFolder -and (Test-Path "$($latestFolder.FullName)\Mappings")) {
        $usmapFile = Get-ChildItem -Path "$($latestFolder.FullName)\Mappings" -Filter "*.usmap" | Select-Object -First 1
        if ($usmapFile) {
            Copy-Item -Path $usmapFile.FullName -Destination $destinationFile -Force
            Write-Host "Mappings file updated -> $destinationFile"
        }
    }
    
    pause
    exit


    Virus scans:
    https://www.virustotal.com/gui/file/...b1bc?nocache=1
    https://virusscan.jotti.org/it-IT/fi...job/nmd1xhynh3

    Of course flagged as DllInject because it inject a DLL (False positive)

    Credits:
    Encryqed for Dumper-7
    nefarius for DLL Injector


    PS: As always wait for approval (download link will not work until approval)
    <b>Downloadable Files</b> Downloadable Files

  12. The Following 44 Users Say Thank You to 8otto For This Useful Post:

    AlMunoz (4 Days Ago),Amytella (11-02-2024),AnonymousRat (2 Days Ago),Asingemike12 (11-02-2024),chungus28 (4 Weeks Ago),daisyoxie (11-05-2024),DanaAna19 (4 Weeks Ago),daunstrimit (1 Week Ago),DbdNewsReal (4 Weeks Ago),dbdnoob (11-05-2024),downloaderxd3 (2 Days Ago),gabable (11-02-2024),gardenia (11-02-2024),Gavrieles (11-05-2024),GenkiDama (1 Week Ago),GNOS (4 Weeks Ago),h4x0r96 (11-02-2024),hrk11234 (4 Weeks Ago),joybanana__ (2 Days Ago),kaminue (5 Days Ago),kawaiiuser (4 Weeks Ago),ken23910 (4 Weeks Ago),kfc_slot (1 Week Ago),Kmex (11-05-2024),kookoobaba292 (2 Weeks Ago),Liara (1 Week Ago),Lycaos (1 Week Ago),MIJAHA (1 Week Ago),Milliliter (2 Weeks Ago),mintblob (6 Days Ago),necorythe (11-05-2024),Overdea (3 Weeks Ago),pongwiroon2014 (1 Week Ago),Ron7j (3 Weeks Ago),rsr101 (11-02-2024),Sladeyy (1 Week Ago),Slashy__ (1 Week Ago),SoloViking (11-05-2024),sox747 (11-06-2024),thatssio (1 Week Ago),thippwan1803 (3 Weeks Ago),Tsarevitch991 (2 Days Ago),XzeroXTribe (4 Weeks Ago),yevvac (4 Weeks Ago)

  13. #2036
    Asingemike12's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed

    Talking Certificate

    Hey, It's been a while since I have used this method, so you know. I spent a bit looking through the thread and everything but nothing has worked yet. I think I'm getting certificate errors? It shows so in the logs so I couldn't log into the DBD servers. I reset certs and tried following some other solutions.

  14. #2037
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by Asingemike12 View Post
    Hey, It's been a while since I have used this method, so you know. I spent a bit looking through the thread and everything but nothing has worked yet. I think I'm getting certificate errors? It shows so in the logs so I couldn't log into the DBD servers. I reset certs and tried following some other solutions.
    Try this https://www.mpgh.net/forum/showthrea...1#post15421881

    1. Close Fiddler (make sure that it is not running).
    2. Locate the following folder: C:\Users\USERNAME\AppData\Roaming\Microsoft\
    3. In that folder, locate and DELETE the following two folders (if one of them is missing, then delete the other): Crypto and Credentials
    4. Congratulations. Start Fiddler.
    Last edited by 8otto; 11-05-2024 at 02:28 AM.

  15. #2038
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by 8otto View Post
    Mappings Generator (Updater)

    Since you are all asking me for the updated mappings file, I have created this script that will automatically update it for you.

    How to use:
    Extract ZIP content in same folder
    Close Epic/Microsoft/Steam depends where you have the game
    Start MappingsGenerator_8otto.exe
    Enter Dead by Daylight exe path ( including exe name for example -> F:\Games\DeadByDaylight\DeadByDaylight\Binaries\EG S\DeadByDaylight-EGS-Shipping.exe )
    Waiting process to finish

    You will find DBD.usmap in C:\Rules and also other Dumped files in C:\Dumper-7

    How it works:
    It renames Epic DLL to avoid EAC launch (if found)
    It opens the game and Inject Dumper-7 DLL that extract mappings file

     

    Code:
    $User32 = Add-Type -Debug:$False -MemberDefinition '[DllImport("user32.dll")] public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X,int Y, int cx, int cy, uint uFlags);' -Name "User32Functions" -namespace User32Functions -PassThru
    $Handle = (Get-Process -pid $PID).MainWindowHandle
    [Void]$User32::SetWindowPos($Handle, -1, 0, 0, 0, 0, 0x53)
    $mappingsSettingsPath = ".\MappingsSettings.txt"
    $injectorPath = "Injector.exe"
    $dumperDll = "Dumper-7.dll"
    
    if (-Not (Test-Path -Path "C:\Rules")) { New-Item -Path "C:\Rules" -Type Directory }
    
    if (-Not (Test-Path -Path $mappingsSettingsPath)) {
        $exePath = (Read-Host "Enter the path of the executable to launch").Replace('"','')
        Set-Content $mappingsSettingsPath $exePath
    } else {
        $exePath = Get-Content $mappingsSettingsPath
    }
    
    if (-Not ((Test-Path -Path $exePath) -and (Test-Path -Path $injectorPath) -and (Test-Path -Path $dumperDll))) {
        Write-Host "Invalid path. Ensure that you extracted all in same folder." -ForegroundColor Red
        pause
        exit
    }
    
    $gameRoot = (Get-Item $exePath).Directory.Parent.Parent.FullName
    $dllPath = Join-Path -Path $gameRoot -ChildPath "Plugins\Runtime\Bhvr\OnlineSubsystemEpic\ThirdParty\EOS\SDK\Bin\EOSSDK-Win64-Shipping.dll"
    
    if (Test-Path -Path $dllPath) {
        Rename-Item -Path $dllPath -NewName "EOSSDK-Win64-Shipping.dll.bak"
        Write-Host "EOSSDK-Win64-Shipping.dll successfully renamed to EOSSDK-Win64-Shipping.dll.bak"
    }
    
    Start-Process -FilePath $exePath -ArgumentList "-eac-nop-loaded"
    Write-Host "Executable launched with parameter -eac-nop-loaded"
    
    Write-Host "Waiting for the game to load to inject Dumper-7. DON'T PRESS ANYTHING!"
    Start-Sleep -Seconds 30
    $injectorArgs = "--process-name $([System.IO.Path]::GetFileName($exePath)) --inject $dumperDll"
    
    $injectorProcess = Start-Process -FilePath $injectorPath -ArgumentList $injectorArgs -Wait -PassThru
    Write-Host "Injector launched and waiting for completion, DON'T PRESS ANYTHING!"
    
    
    Start-Sleep -Seconds 30
    Stop-Process -Name $([System.IO.Path]::GetFileNameWithoutExtension($exePath)) -Force
    
    if (Test-Path -Path "$dllPath.bak") {
        Rename-Item -Path "$dllPath.bak" -NewName "EOSSDK-Win64-Shipping.dll"
        Write-Host "EOSSDK-Win64-Shipping.dll.bak successfully renamed to EOSSDK-Win64-Shipping.dll"
    }
    
    $sourcePath = "C:\Dumper-7"
    $destinationFile = "C:\Rules\DBD.usmap"
    $latestFolder = Get-ChildItem -Path $sourcePath -Directory | Sort-Object LastWriteTime -Descending | Select-Object -First 1
    
    if ($latestFolder -and (Test-Path "$($latestFolder.FullName)\Mappings")) {
        $usmapFile = Get-ChildItem -Path "$($latestFolder.FullName)\Mappings" -Filter "*.usmap" | Select-Object -First 1
        if ($usmapFile) {
            Copy-Item -Path $usmapFile.FullName -Destination $destinationFile -Force
            Write-Host "Mappings file updated -> $destinationFile"
        }
    }
    
    pause
    exit


    Virus scans:
    https://www.virustotal.com/gui/file/...b1bc?nocache=1
    https://virusscan.jotti.org/it-IT/fi...job/nmd1xhynh3

    Of course flagged as DllInject because it inject a DLL (False positive)

    Credits:
    Encryqed for Dumper-7
    nefarius for DLL Injector


    PS: As always wait for approval (download link will not work until approval)
    Guys it's been approved! Let me know if it works properly, I tried with Epic game version, it should work for every version.

  16. #2039
    flyerTTV's Avatar
    Join Date
    Aug 2024
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 8otto View Post
    Guys it's been approved! Let me know if it works properly, I tried with Epic game version, it should work for every version.
    I just tested it and it was successful. I'm using it in the Microsoft Store on my PC.

  17. #2040
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1,010
    Reputation
    106
    Thanks
    2,639
    My Mood
    Inspired
    Quote Originally Posted by flyerTTV View Post
    I just tested it and it was successful. I'm using it in the Microsoft Store on my PC.
    Nice! Thank you for your feedback!

Similar Threads

  1. Replies: 3
    Last Post: 08-18-2020, 01: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, 12:53 PM
  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, 12:20 PM
  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, 05: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, 07:57 PM