| View previous topic :: View next topic |
| Author |
Message |
Servus Newbie cheater
Reputation: 0
Joined: 08 Nov 2014 Posts: 11 Location: gamevial
|
Posted: Sat Nov 08, 2014 10:07 am Post subject: Download A Game |
|
|
Is there any way to download a game from a website for personal use? I am not talking about 2D Flash Games: It's more like a 3D FPS (bad quality) shockwave browser-based game.
Or even reveal the code of the game (love exploring such) ;)
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Nov 08, 2014 9:50 pm Post subject: |
|
|
In some cases yes, depending on how the game is loaded. Check the source of the web page and see if its a single object being loaded via params or a direct link. In a lot of cases, you can just save the object and load it locally.
_________________
- Retired. |
|
| Back to top |
|
 |
Servus Newbie cheater
Reputation: 0
Joined: 08 Nov 2014 Posts: 11 Location: gamevial
|
Posted: Sun Nov 09, 2014 6:03 am Post subject: |
|
|
This is the only line I was able to find:
<td style=" height:100%; text-align:center"><script type="text/javascript">put_shockwave("(name of game)", "100%", "100%", "loader.dcr","(name of game).dcr");</script></td>
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sun Nov 09, 2014 3:37 pm Post subject: |
|
|
Ok then the objects you are interested in are the loader.dcr and (name of game).dcr
So the next step is to look into the put_shockwave javascript function they are using. See how the loader and game files are being loaded. See if they are in a sub-directory, etc.
Once you got that, you should just be able to go to the files directly like:
http://www.some-fake-website-not-real.com/game/files/loader.dcr
And download the file(s) directly. Afterward you can mimic their put_shockwave function locally and load the game in your local browser that way. Or use a shockwave player to load the files.
_________________
- Retired. |
|
| Back to top |
|
 |
|