Download:
http://www36.zippyshare.com/v/qMTNQFVo/file.html
Password: mudbox
Version: 0.1 (Not sure if updating)
-Combat works
-Some Pokémon encounters added
Warning: These files are written via old PHP and might be vunerable for web-attack. I will not take any responsibility. (Recommended to use new password which you wont use anywhere else)
-Might have some JavaScript console commands.
Contains Pokemon-Sky files edited
-Some new gui
-Script fixes
-A bit more secured script added (This is not safe to host yet)
-Password sha-512 crypt (More secured)
-Added more images
---
Images

--
Beginner guide
1. Extract the files on your www folder which has apache with php.
2. Edit config.php & config_new.php @ includes folder. (Set the SQL connection information)
3. Execute the SQL file which is located at
POKESQL-DONOT-UPLOAD folder to your desired database.
Helpful scripts
//Script below will update pokemon attack name from german to english
set @en := 'Revenge';
set @ger := 'Vergeltung';
UPDATE `pokemon_wild` SET aanval_1 = @en WHERE aanval_1 = @ger;
UPDATE `pokemon_wild` SET aanval_2 = @en WHERE aanval_2 = @ger;
UPDATE `pokemon_wild` SET aanval_3 = @en WHERE aanval_3 = @ger;
UPDATE `pokemon_wild` SET aanval_4 = @en WHERE aanval_4 = @ger;
//Script below updates pokemon type from german to English
set @
newtype := 'Ground';
set @
oldType := 'Boden';
UPDATE pokemon_wild SET type1 = @
newtype WHERE type1 = @
oldType;
UPDATE pokemon_wild SET type2 = @
newtype WHERE type2 = @
oldType;