Yes i know but, i also have genders and a couple of costume css, it would be easier if i knew what to fix please.
Lots of idea is that since I could still make a difference in the game but unfortunately they prepare my knowledge is limited.
I've already started work on a brand new development within the game. This pokeball crafting.
Image
I do not know when it will be finished. You might not be prepared.
And i make the new layout.
Image
Still quite primitive condition but what I think is very cute will be ready.
I do not plan on publishing. But he might be very interested in a smaller amount will gladly sell.
Regards Kiru Hoshino
Last edited by KiruHoshino; 10-02-13 at 07:26 PM.
Fixing trainer battles is actually really easy. There is just a little mistake in the paths for the code is all. To fix this, open your trainer-attack.php
Find:
Replace with:Code:url: "../attack/trainer/trainer-stop-start.php"
Code:url: "attack/trainer/trainer-stop-start.php"
Find:
Replace with:Code:<script type="text/javascript" src="../attack/javascript/attack.js"></script>
Code:<script type="text/javascript" src="attack/javascript/attack.js"></script>
Find:
Replace with:Code:url: "../attack/trainer/trainer-do_attack.php?attack_name="+$(this).html()+"&wie=pokemon&aanval_log_id="+<? echo $aanval_log['id']; ?>+"&sid="+Math.random(),
Code:url: "attack/trainer/trainer-do_attack.php?attack_name="+$(this).html()+"&wie=pokemon&aanval_log_id="+<? echo $aanval_log['id']; ?>+"&sid="+Math.random(),
Find:
Replace with:Code:url: "../attack/trainer/trainer-do_attack.php?attack_name=undifined&wie=computer&aanval_log_id="+<? echo $aanval_log['id']; ?>+"&sid="+Math.random(),
Code:url: "attack/trainer/trainer-do_attack.php?attack_name=undifined&wie=computer&aanval_log_id="+<? echo $aanval_log['id']; ?>+"&sid="+Math.random(),
Find:
Replace with:Code:url: "../attack/trainer/trainer-change-pokemon.php?pokemon_info_name=<? echo $pokemon_info['naam']; ?>&computer_info_name=<? echo $computer_info['naam']; ?>&aanval_log_id="+<? echo $aanval_log['id']; ?>+"&sid="+Math.random(),
Code:url: "attack/trainer/trainer-change-pokemon.php?pokemon_info_name=<? echo $pokemon_info['naam']; ?>&computer_info_name=<? echo $computer_info['naam']; ?>&aanval_log_id="+<? echo $aanval_log['id']; ?>+"&sid="+Math.random(),
Find:
Replace with:Code:<td width=300 height="120" rowspan=2 valign="bottom"><img id="img_pokemon" src="../images/<? echo $pokemon_info['map']; ?>/back/<? echo $pokemon_info['wild_id']; ?>.png" /></td>
Code:<td width=300 height="120" rowspan=2 valign="bottom"><img id="img_pokemon" src="images/<? echo $pokemon_info['map']; ?>/back/<? echo $pokemon_info['wild_id']; ?>.png" /></td>
Last edited by Zeriu; 10-02-13 at 08:57 PM.
New Map System. All regions other maps. Just replace the images in the folder.
Download:
Map_System.rar
Last edited by KiruHoshino; 11-02-13 at 07:35 PM.
I ask everyone who have used my work here is that at least a thank you and a pressure of the button like I deserve.
I think that's applicable to everyone and I thank you for the works of others. Respect for the exceptions.
Because they will think twice next time to share my work with others.
Thank you and sorry.
Regards KiruHoshino
What i think you are trying to say:
"Please press the thanks button if you used any of my work."
Remember there is an edit button, you shouldn't double post.
Other than that, you're work helped alot with sorting out the old bugs and improving the current systems, thanks.
I'm sorry. I do not know English very well. Only bother to 10-20 people download my work and from about 2 to who thanked.
I remember when they started to share these files and there no was a database I've tried to do everything they can to ensure that this resource can be used.
You helped me many times, seeing that I am trying very hard. I every thanked you for your help also.
We would like you to be together and so would the game even better.
I credited ragezone comunity on my site, and i do say thank you when something is shared here, :)
Thanks to everyone who's currently working with the Area Source.
Zeriu, thank you fox fixing all the things, your work improved the game a lot.
Kiru, thank you for releasing the database!
There's a game called "jtPet", it has all features for a pokemon browsergame.
Combine and fusion jtPet and Pokemon-Area a very good pokemon browser mmo can start.
Also Google for the game called "Pokemon Chat", the Source is avaible on github.
No, I shared with the database. I just brought new possibilities into the game. I would really like to convert this game likeness. But this issue is not taken action.
I'm thinking something similar.
http://poke.swtorhungary.hu/test/
If anyone needs i made a list script, to out put trainers Pokemon in a list format, edit it how you please.
<?php
session_start();
include("includes/connection.file");
$pokemon_sql = mysql_query("SELECT pw.naam, pw.type1, pw.type2, pw.zeldzaamheid, pw.groei, pw.aanval_1, pw.aanval_2, pw.aanval_3, pw.aanval_4, ps.*
FROM pokemon_wild AS pw
INNER JOIN pokemon_speler AS ps ON ps.wild_id = pw.wild_id WHERE ps.user_id='".$_SESSION['id']."' ORDER BY ps.wild_id ASC");
echo '<center>Hello and welcome to the Pokemon list where you can view all of your current pokemons under one tab, please use this for trading and other purposses hehe, good luck.</center>';
while ( $pokemon = mysql_fetch_array($pokemon_sql) )
{
$shinypokemon = 'Shiny'.$pokemon['naam'].'';
// If the pokemon is shiny, change its name Shiny_____
if ($pokemon['shiny']==1)
{
$pokemon['naam'] = $shinypokemon;
}
//Image variable
$img = '<img src="http://forum.ragezone.com/images/pokemon/'.$pokemon['wild_id'].'.gif"></br>';
//If the pokemon is shiny, change the image variable directory to call out from the shiny folder.
if ($pokemon['shiny']==1)
{
$img = '<img src="http://forum.ragezone.com/images/shiny/'.$pokemon['wild_id'].'.gif"></br>';
}
echo '<html><center>';
echo ''.$pokemon['naam'].'</br>';
//Image of the pokemon more specified
echo $img;
echo '(<b>Level</b>: '.$pokemon['level'].') ';
// Shows stat atributes of a Pokemon
echo '</br><h2><b>Stats</b></h2></br> ';
echo '<b>HP</b>: '.$pokemon['levenmax'].' ';
echo '<b>Attack</b>: '.$pokemon['attack'].' ';
echo '<b>Defence</b>: '.$pokemon['defence'].' ';
echo '<b>Speed</b>: '.$pokemon['speed'];
echo '<b>Special Attack</b>: '.$pokemon['spc.attack'].' ';
echo '<b>Special Defence</b>: '.$pokemon['spc.defence'].' ';
//Shows Pokemon's IV
echo '<h2><b>IV</b></h2></br> ';
echo '<b>HP</b>: '.$pokemon['hp_iv'].' ';
echo '<b>Attack</b>: '.$pokemon['attack_iv'].' ';
echo '<b>Defence</b>: '.$pokemon['defence_iv'].' ';
echo '<b>Speed</b>: '.$pokemon['speed_iv'];
echo '<b>Special Attack</b>: '.$pokemon['spc.attack_iv'].' ';
echo '<b>Special Defence</b>: '.$pokemon['spc.defence_iv'].' ';
//Shows Pokemon's EV allocation
echo '<h2><b>EV</b></h2></br> ';
echo '<b>HP</b>: '.$pokemon['hp_ev'].' ';
echo '<b>Attack</b>: '.$pokemon['attack_ev'].' ';
echo '<b>Defence</b>: '.$pokemon['defence_ev'].' ';
echo '<b>Speed</b>: '.$pokemon['speed_ev'].' ';
echo '<b>Special Attack</b>: '.$pokemon['spc.attack_ev'].' ';
echo '<b>Special Defence</b>: '.$pokemon['spc.defence_ev'].' ';
// Show statUP item ussage (ex. ppUP, AttackUp)
echo '<h2><b>Power Up\'s</b></h2> </br>';
echo '<b>HP</b>: '.$pokemon['hp_up'].' ';
echo '<b>Attack</b>: '.$pokemon['attack_up'].' ';
echo '<b>Defence</b>: '.$pokemon['defence_up'].' ';
echo '<b>Speed</b>: '.$pokemon['speed_up'].' ';
echo '<b>Special Attack</b>: '.$pokemon['spc.attack_up'].' ';
echo '<b>Special Defence</b>: '.$pokemon['spc.defence_up'].' ';
// Show pokemon moves
echo '<h2><b>Attacks\'s</b></h2></br>';
echo '<b>Move 1</b>: '.$pokemon['aanval_1'].'</br>';
echo '<b>Move 2</b>: '.$pokemon['aanval_2'].'</br>';
echo '<b>Move 3</b>: '.$pokemon['aanval_3'].'</br>';
echo '<b>Move 4</b>: '.$pokemon['aanval_4'].'</b>';
echo '</center></html>';
echo '<html><hr></html>';
}
?>
jtPet is horrible, i have the source for it and the amount of bugs is unbelievable, also another annoying thing is that the page reloads after every single step which can be quite a hog on resources if you have a fair amount of people online
in regards to KiruHoshino with - http://poke.swtorhungary.hu/test/
Thats what jtPet is like, however instead of the movement in your link, the movement is like what i had posted above in reply to felix
im sorry but i tried everything to get dules to wor... i got it once to work but then it never did again...idk why ill keep looking into it....guys when you make a fix... or even I, can we agree to just post what we did, instead of only files? because the main source code is all we need to do our own thing, but fixes if you just give the files, it would require us to upload your whole site... as we dont know where you made a fix or what you did.
I don't get a thanks? you guys would of taken a long time to get all of the database (and still would not have it all even when you thought you did) without me :D
Dules? you mean like PVP? fights will work if you remove all root file searches (that means remove "../" from the beginning of the file location when the source is referenced.)