Looks very nice, those sprites are different right?
I haven't started with the buttons below, but as I said I want all to look like gba games,
so I'll try to reproduce those buttons using CSS. :)
Printable View
Looks very nice, those sprites are different right?
I haven't started with the buttons below, but as I said I want all to look like gba games,
so I'll try to reproduce those buttons using CSS. :)
Martinx9,
With what did you make all that?(css, those things)
Greets,
Koelkast
Pure CSS,
replaced all the table stuff with divs,
and made classes for all the different parts.
Then used mostly background-color, border, border-radius, box-shadow, and color properties.
Also position relative to put all the stuff in correct places.
Its something like 130 lines of css. :)
Thanks ! :D
Does anyone know how to change the chance of starters, legends, etc?
Greets,
Koelkast
Well searching on the files I think I found it:
This is on attack/attack_map.php:
$query = mysql_fetch_assoc(mysql_query("SELECT wild_id FROM `pokemon_wild` WHERE `gebied`='".$gebied."' AND `wereld`='".$gebruiker['wereld']."' AND `zeldzaamheid`='".$zeldzaamheid."' ORDER BY rand() limit 1"));
//Geen pokemon geen gekozen
if(empty($query['wild_id']))
$query = mysql_fetch_assoc(mysql_query("SELECT wild_id FROM `pokemon_wild` WHERE `gebied`='".$gebied."' AND `wereld`='".$gebruiker['wereld']."' AND `zeldzaamheid`='1' ORDER BY rand() limit 1"));
//echo "<div class='red'>".$txt['alert_error']." 100".$zeldzaamheid.".</div>";
//else{
include("attack/wild/wild-start.php");
$info = create_new_attack($query['wild_id'],$leveltegenstander,$gebied);
if(empty($info['bericht'])) header("Location: ?page=attack/wild/wild-attack");
else echo "<div class='red'>".$txt['alert_no_pokemon']."</div>";
//}
Basically it chooses randomly any pokemon on the pokemon_wild table.
There is no higher or lower chance for unique pokemon (I believe at least, as I don't understand the language).
I know it does filter by region, but the other 2 filters I don't know (but you can easily see on the pokemon_wild table what all the columns are).
Thanks, ill try it ;D
So.... I have a problem.
Does anyone know how to setup the forum categories?
Maybe phpmyadmin. I deleted the forum of the source code.
Dear Members,
Does anyone have any scripts for me, I want to swap with other bv
Sincerely,
Kenneth Wolfs
Any Updates Script released?
New Function? or others?
Hi i am new on this site.
I have ervery time on Player Duell i get this error foutcode 6001.
i search a fix for that.
Sorry for my bad englisch.
How is display number damage of the skill for Pokémon?
how is insert many different background image for each different
battle?
i want add pokemon gen 6
please help me
To insert the Kalos Pokemon you should add them to pokemon_wild table
After that, you should add the new attacks into the aanval table, and their evolution + new attack data into the levelen table..
Not sure if i forgot one of the tables, but you can try it that way!
Anyway, its a lot of work, but its worth it :)