A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[Development] POS

3.6k views · started by Chris · · page 2 of 2
#41
Riddle wrote:
You don't need GUI for the server, at all. Not only that, but they look way cooler just by being a console application. XD

I'll join in. I can make tools and stuff when I'm free.


Plus a GUI would only waste ram on things not needed, you're better off coding an admin panel that can connect to the server and give you full control (with proper authentication of course).

Also, why not make the server in Java? It would allow for hosting on Linux (Cheaper). Anyway as for bugs and hacks I could take my attempt at helping out and any other hints / tips. Also, don't forget to use encryption from client to server (why encrypt data from server, we all know it won't be tampered with) and such.
#42
I have a script that will convert Pokedex numbers to other Pokedex numbers, if you want. The only one I've completed is National/Kanto -> Hoenn (and vice-versa) (completed, 'cause I actually needed that one). I got the other half completed, but it would just take a bot to fill in the rest (I can tell you how to make it; it's not hard). Pretty much: for (x = start; x < finish; ++x) { fill_in_first_unset_value_of(array, x); }
Do that twice and you'll have both Johto and Sinnoh. And it works with converting to and from.
I plan on turning it into this format:
echo pokedex_convert(1, 'from', 'to');
echo pokedex_convert(1, 'national', 'johto'); // gives Bulbasaur's ID in Johto Pokedexs

Could be used for the user to choose their own Pokedex list, instead of having to use the National or whatever you chose by default.
If you want it, just contact me for it.
[Development] POS | Logical Gamers Archive