Aller au contenu

ducon2016

GamerLine
  • Compteur de contenus

    1 143
  • Inscription

  • Dernière visite

  • Jours gagnés

    39

Tout ce qui a été posté par ducon2016

  1. Fitgirl a un torrent tout prepare qui marche tres bien. https://www.google.com/search?q=fitgirl+sonic+unleashed
  2. I have nothing to do with the project, just sharing the very cool project: https://github.com/hedge-dev/UnleashedRecomp Unleashed Recompiled is an unofficial PC port of the Xbox 360 version of Sonic Unleashed created through the process of static recompilation. The port offers Windows and Linux support with numerous built-in enhancements such as high resolutions, ultrawide support, high frame rates, improved performance and modding.
  3. Cool. Anything new? Many of those seemed to exist already in other dumps before no?
  4. You don't need those if you play on a TV, I recommend using my patch. Loads faster, less files, no crashes, and less weird AHK random issues.
  5. The new version posted has the black screen issue, you need to get the original archive.
  6. Tampermonkey script to bypass shitty links on pcgameiso.com // ==UserScript== // @name Easy GamePCIso // @namespace http://tampermonkey.net/ // @version 2025-02-03 // @description Skip ads on gamepciso.com and associates dlpsgame.com downloadgamepsp.org dlxbgame.com and nswgame.com // @author You // @match *://gamepciso.com/* // @match *://dlpsgame.com/* // @match *://downloadgamepsp.org/* // @match *://dlxbgame.com/* // @match *://nswgame.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gamepciso.com // @grant none // ==/UserScript== (function() { 'use strict'; const lnks = document.querySelectorAll('a'); lnks.forEach( item => { const url = item.href; const start = url.indexOf("url="); const end = url.indexOf("&type="); if (( -1< start ) && (-1<end)) { item.href = atob( url.substring( start+4, end ) ); var old_element = item; var new_element = old_element.cloneNode(true); old_element.parentNode.replaceChild(new_element, old_element); } }); })();
  7. Examples: https://igg-games.com/ or bluemedia garbage links or megaup or many others 1. Install pop up / pop under / layers blockers. I use firefox and two addons AT THE SAME TIME since they block different things: https://webextension.org/listing/popup-blocker.html and https://popupoff.org/ 2. Install Tampermonkey https://addons.mozilla.org/en-US/firefox/addon/tampermonkey/ 3. To deal with Megaup garbage install this with Tampermonkey: https://github.com/rejaad/Easy-MegaUp/raw/refs/heads/main/Easy MegaUp.user.js 4. To deal with Bluemedia garbage install this with Tampermonkey: https://greasyfork.org/en/scripts/423435-igg-games-bluemediafiles-bypass/code Will post more as I discover. Please feel free to share the ones you use.
  8. If you use the popup blockers I mentioned this is what you get. If it changes the page to an ad, just hit the back button and click create download link again until it works.
  9. Because I am confident you can do it. And when you will have figured it out, you will be able to download more things on your own. Only thing I can confirm is the megaup link works 100%, so you are not wasting your time. Also the game is available in many other places if you really cannot make this one work, I verified it is available on https://g4u.to/ and on https://igg-games.com I suspect you will need popup blockers for those too, and as usual some links need to be clicked up to 5 times until you get the real link.
  10. Is there a way to disable the need to register our phone number? No other discord does that, and I cannot participate in the emuline discord since I will never register my phone.
  11. Use a popup blocker, I use PopUpOff and https://webextension.org/listing/popup-blocker.html with Firefox and the links work and download. You might need to click a few times to get the right download. Bottom line, free stuff needs to jump over hurdles but it is free. You can also buy the game on steam when it is on promo it is cheap.
  12. I just tried and the last link (MegaUp) works. So follow the steps I explained.
  13. Try all the other links until you find one what works. Sorry I never share content.
  14. You did not follow my directions. I told you to only keep the text AFTER url=and BEFORE &type=2 so you will see: https://somethingsomethingsomethingsomethingsomethingurl=THIS IS WHAT YOU KEEP&type=2somethingsomething Example 1. Copied link from the website https://clk.sh/full?api=1a83dc23a56e37f8d4635da35fc71e6a9e912db2&url=aHR0cHM6Ly9kcml2ZS5nb29nbGUuY29tL3VjP2lkPTFWbWJBejJGVEQ5b0xJaGk3X2RyekNFUGlURmNSLUNXOSZleHBvcnQ9ZG93bmxvYWQ=&type=2 2. After the step I recommended only aHR0cHM6Ly9kcml2ZS5nb29nbGUuY29tL3VjP2lkPTFWbWJBejJGVEQ5b0xJaGk3X2RyekNFUGlURmNSLUNXOSZleHBvcnQ9ZG93bmxvYWQ= is left 3. Decode what is left with https://www.base64decode.org/ and you will get a link that starts with https://drive.google.com/ for this example
  15. Inspired by Wangan and Initial D Japanese Drift Master https://store.steampowered.com/app/1153410/JDM_Japanese_Drift_Master/
  16. Right click the Download and copy the URL. Only keep the text after url = and before &type=2, you should get something like aHR0cHM6Ly9kcml2ZS5nb29nbGUuY29tL3VjP2lkPTFWbWJBejJGVEQ5b0xJaGk3X2RyekNFUGlURmNSLUNXOSZleHBvcnQ9ZG93bmxvYWQ= Then use https://www.base64decode.org/ to decode and get the real link
  17. No sorry. Pure encrypted code.data that needs to be decrypted before being used. If someone has the dongle that part should actually be easier to decrypt than the .exe. The Unity executable has no idea what the Assembly is without decrypting it.
  18. Yes the code is encrypted and there is a pop up HASP when you launch it. We need someone who has the dongle to decrypt it.
  19. Thanks Argon, great work. Here is a wrapper dk2win32.dll that enables quitting the game (ESC but you can change it) or just closing the client to go to menu (TAB but you can change it), remaps the folder so you can move the game out of the root directory, and automatically dynamically patches the game (no need of the patched executable anymore). 1. Copy dk2win32.dll and dk2win32.ini in the shell.exe folder 2. If you moved the folder, make sure you edit AssetDir in game.ini (Do not edit the other paths) 3. Run the original shell.exe As usual the full source code is included dk2win32-v1.7z
  20. The executable is protected by hasp. We need with the dongle to decrypt it. Maybe @bigdenny can help if someone can provide him the dongle.
  21. Try this one. For the output, I got some in the debugger but not sure it is capturing what you are looking for. Shell-Argon.NoobDiff
  22. The game cannot run if you launch pvz.exe. You must launch the patched version of shell.exe. Make sure you did not change any ini files. In particular, don't change screen width and height. I tried to change to 1920x1080 and the game would not launch anymore. Width=1080 Height=1920
  23. Try the patch v2 I just posted. Someone can fix it later. Unfortunately the game code has a lot of hardcoded C:\ in it, so changing the config files won't work. For example it looks for pvz.exe in C:\sega\pvz. Anyways, it can be fixed later. First let's make sure it works for everyone. Did you patch the shell.exe and run the patched version?
  24. Ok found the function, so nothing scary: 1. It deletes "c:\\sega\\pvz" and "c:\\sega\\backup\\pvz" 2. It changes the background to "c:\\Sega\\Launcher\\Graphics\\Desktop1080.bmp " 3. It deletes "C:\\Sega\\ShellData\\Gamesettings.ini" 4. Creates c:\diskimage.ini 5. Reboots Try this patch, hopefully it fixes all your issues Shell-v2.NoobDiff
  25. Success!!! === WARNING, THE SEGA FOLDER NEEDS TO BE AT THE ROOT OF C:\ === 1. Download a random dk2win32.dll and put in the shell folder (I used this one https://www.opendll.com/index.php?file-download=dk2win32.dll&arch=32bit&version=4.13.0.63) 2. Patch shell.exe with Noobpatcher and attached NoobDiff 3. Run shell.exe (this will launch pvz.exe automatically) @argonlefou Je te laisse faire les inputs comme tu as ton super systeme deja pour les jeux unity avec demulshooter Shell-v2.NoobDiff
×
×
  • Créer...