Skip to content

pokemonjs/p3d-legacy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository holds the source code for Pokémon3D, its client and server as of the update 0.53.3.

The game is not in active development by me anymore, but you are free to fork and redistribute the code under the GNU GPLv3 license.

Build instructions (game)

The game is written in Visual Basic and was compiled targeting the .Net Framework 4.0 for my public builds.

It is built using the Microsoft XNA framework as graphics middleware.

In order to build the game's solution, you need the following:

To run the game after a successful build, you also need an applicable graphics card that supports DirectX (version 9 minimum).

The first build of the game will take a little longer due to the XNA ContentPipeline building all assets for the first time.

Running the game

Classified information

The game was configured to connect to several servers and internet APIs using private keys. To keep the private keys private, they have been redacted from the source code, along with a few URLs.

If you want to add your own private keys/URL connections back into the game to enable certain online features, search for these comments in the source code:

' CLASSIFIED

Every line that has the "CLASSIFIED" comment at the end of it had some string info removed from it.

File Validation

To ensure that the game has the original files in place to ensure fair online gaming, the game does something called "File Validation".

It basically stores a hash for each map, script and data file in a file called "meta" in the game's root directory. Hardcoded into the game's code is the hash for the meta file, to ensure that it did not get altered.

To code responsible for this is located in Security/FileValidation.vb.

To generate a valid meta file for the current state of the files in the game, go to the aforementioned code file and set this:

    Const RUNVALIDATION As Boolean = True ' Instead of False

Also, be sure to turn off the IS_DEBUG_ACTIVE in the *Core/GameController.vb" file:

Then build and debug-run the game. The console output of during the game's launch will output an expected size and metahash value.

It will also produce an updated "meta" file.

Stop the debugging of the game and copy these two values into the correct places at the top of the FileValidation code:

    Const EXPECTEDSIZE As Integer = <your expected size output here>
    Const METAHASH As String = <your meta hash here>

Once you have done this, disable the RUNVALIDATION variable again and build the game again to have it boot up like normal.

Development

The game includes a switch to enable debug mode that makes map development or general dicking around easier.

Locate the file Core/GameController.vb and set the IS_DEBUG_ACTIVE const to True, then rebuild the game.

This is basically the SandboxMode that can be enabled in the game's save files plus these features:

  • display last build time in the F3 menu
  • trade with yourself in the Game Jolt GTS
  • bypass current version checks in the Game Jolt login screen
  • update the game's current version on Game Jolt (set UPDATEONLINEVERSION to True in Core/GameController.vb and rebuild the game).
  • Move the 3rd person camera around freely with arrow keys (hold ctrl and up/down to move the camera on the Y axis)
  • Open the Pokégear even though the player has not received it yet and use its modules without receiving them.
  • Legacy diagonal movement support
  • Reduce Kolben Splash Screen delay as much as possible
  • All HM moves are present in every Pokémon's menu.
  • Ignore FileValidation warning

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Visual Basic .NET 51.3%
  • Logos 48.6%
  • Other 0.1%