Pokémon battle simulator.
Go to file
2013-04-06 08:47:21 -07:00
config Remove localsysop setting 2013-04-05 23:27:12 -06:00
data Gem activation conditions fix 2013-04-06 08:47:21 -07:00
logs Changes to logging.md 2013-02-15 18:06:44 -07:00
mods Fix clause inheritance 2013-04-03 13:00:13 -07:00
.gitignore .gitignore everything in /config/ 2012-07-28 15:04:02 -07:00
app.js Refactor login server code 2013-04-01 19:31:35 -06:00
battles.js Gem activation conditions fix 2013-04-06 08:47:21 -07:00
chat-commands.js Add OM of the month link to /othermetas 2013-03-31 11:35:00 +03:00
doc.txt Move braces to the same line as their control statements 2012-04-16 12:54:03 +10:00
filelist.txt Implement /version command 2013-03-27 00:06:54 -06:00
LICENSE We are now officially MIT Licensed 2013-01-17 05:00:28 -08:00
old-doc.txt Fixed the fix 2012-04-16 14:29:07 +10:00
package.json Note that node v0.10.0 and v0.10.1 are broken 2013-03-25 22:53:42 -06:00
Procfile Make Procfile specify Heroku's desired port 2012-05-16 19:31:02 -05:00
README.md Remove localsysop setting 2013-04-05 23:27:12 -06:00
rooms.js Room IDs now have dash before battle number 2013-04-05 16:54:30 -07:00
simulator.js Implement multiple simulator processes 2013-02-22 23:14:00 -07:00
tools.js Give 'moves' with no priority a default of 0. 2013-03-16 23:07:53 -04:00
users.js Remove localsysop setting 2013-04-05 23:27:12 -06:00
verifier.js Fix crash in verifier.js 2013-02-08 00:04:27 -07:00

Pokemon Showdown

Pokemon Showdown is a simulator of Pokemon battles. It currently supports singles battles in Generations 4-5 (HGSS, BW, BW2).

This repository contains the files needed to set up your own Pokemon Showdown server. Note that to set up a server, you'll also need a server computer.

You can use your own computer as a server, but for other people to connect to your computer, you'll need to expose a port (default is 8000 but you can choose a different one) to connect to, by setting up any firewalls you might have to allow that port through to you (this sometimes isn't possible on certain internet connections).

Installing

Pokemon Showdown requires node.js, either v0.6.3 through v0.8.22, or v0.10.2 and up. (Unfortunately, v0.10.0 and v0.10.1 of node.js both contain a bug that crashes Pokemon Showdown in some cases, so those versions must be avoided.) Install node.js if you don't have it yet, but make sure you install a supported version.

Next, obtain a copy of Pokemon Showdown. If you're reading this outside of GitHub, you've probably already done this. If you're reading this in GitHub, there's a "Clone" button in the top left, or if you're really lazy, there's a "ZIP" download button. I recommend the Clone method - it's more time-consuming to set up, but much easier to update.

Pokemon Showdown is installed and run using a command line. In Mac OS X, open Terminal (it's in Utilities). In Windows, open Command Prompt (type cmd into the Start menu and it should be the first result). Type this into the command line:

cd LOCATION

Replace LOCATION with the location Pokemon Showdown is in (ending up with, for instance, cd "~/Downloads/Pokemon-Showdown" or cd "C:\Users\Bob\Downloads\Pokemon-Showdown\").

This will set your command line's location to Pokemon Showdown's folder. You'll have to do this each time you open a command line to run commands for Pokemon Showdown.

To install dependencies, run the command:

npm install

Copy config/config-example.js into config/config.js, and edit as you please.

Congratulations, you're done setting up Pokemon Showdown.

Now, to start Pokemon Showdown, run the command:

node app.js

You can also specify a port:

node app.js 8000

Visit your server at http://SERVER-PORT.psim.us

Replace SERVER with your server domain or IP, and PORT with the server's port. You can leave off -PORT if it is 8000 (the default).

Yes, you can test even if you are behind a NAT without port forwarding: http://localhost.psim.us will connect to your local machine. Some browser setups might prevent this sort of connection, however (NoScript, for instance). If you can't get connecting locally to work in Firefox, try Chrome.

The reason your server is visited through psim.us is to make it more difficult for servers to see a user's password in any form, by handling logins globally. You can embed this in an iframe in your website if the URL is a big deal with you.

If you truly want to host the client yourself, there is a repository for the Pokemon Showdown Client. It's not recommended for beginners, though.

Setting up an Administrator account

Once your server is up, you probably want to make yourself an Administrator (~) on it.

config/usergroups.csv

To become an Administrator, create a file named config/usergroups.csv containing

USER,~

Replace USER with the username that you would like to become an Administrator.

This username must be registered. If you do not have a registered Pokemon Showdown account, you can create one using the registration form.

Once you're an administrator, you can promote/demote others easily with the /admin, /leader, /mod, etc commands.

Browser support

Pokemon Showdown currently supports, in order of preference:

  • Chrome
  • Firefox
  • Safari
  • Chrome/Firefox/Safari for various mobile devices
  • Opera
  • Firefox for Android
  • IE9+

IE8 support can technically be added without too much difficulty, but it doesn't run PS fast enough to be usable.

As for older browsers (Firefox 3.6), I won't go out of my way to support them, but if there's a simple fix, you can suggest it to me and I'll implement it.

Community

The Pokemon Showdown development IRC channel is #showdown at irc.synirc.net.

The Pokemon Showdown forums are hosted on Smogon Forums.

License

Pokemon Showdown's server is distributed under the terms of the MIT License.

Credits

Pokemon Showdown was created by Guangcong Luo [Zarel].

Developers

  • Guangcong Luo [Zarel]
  • Cathy J. Fitzpatrick [cathyjf]
  • Bill Meltsner [bmelts]

Contributors

  • [Marty-D]
  • [The Immortal]
  • [Joim]
  • Cody Thompson [Rising_Dusk]