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.
Results 41 to 42 of 42
Thread: [Development] POS
- 25 Feb. 2010 12:57am #41
- 27 Feb. 2010 03:34pm #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.