Anyone know how to fix that?
![]()
Anyone know how to fix that?
![]()
Last edited by Mirko Pirolli; 21-07-15 at 06:00 PM. Reason: Fix Image
Image Fixed
http://i58.tinypic.com/2e3moeu.gif
You need to edit the pokemon_wild table the column call spawncoords you need to delete all coords that on the road for each pokemon.
snip of Bulbasaur spawncoords:0001:0016,0002:0016,........,0032:0013,0032:0012
I think it x:y.
IMO I think will be better if it don't spawm pokemon for every time you move.
in my pokemon_wild table the column spawncoords it was not present, so i added it, I also added coordinates but same problem.... :(
@Mirko Pirolli
Sorry i am using Mursak version from page 7 post #98 (with ajax_call from post 1 develix) Not sure why Mursak has spawncoords in pokemon_wild table.
after Looking at the code I found that attack\beta_map.php is were the Pokemon is spawn. Deep look at it call ajax_call/map_ajax.php when you move and Pokemon is generate from there.Download: Zippyshare.com
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
if you change this line from ajax_call/map_ajax.php
toCode:if (1 == 1) { $wild_id = $query2['wild_id'];
then Pokemon will not spawnCode:if (1 == 1) { $wild_id = 0;
If you can write a function call onroad that check if user is on the road then add if like this: if(onroad()==true){ $wild_id = 0} else {$wild_id = $query2['wild_id'];}
Last edited by shazam; 23-07-15 at 10:47 PM. Reason: typo
I uploaded the mursak version, i have that problem now... @shazam
![]()
Last edited by Mirko Pirolli; 25-07-15 at 02:49 PM. Reason: Update
Not sure why it not showing the starter Pokemon for you.
try running this sql statement:
it should return a list of (15)Pokemon if doesn't it might be a bad table causing the problem.Code:SELECT pokemon_nieuw_starter.wild_id, pokemon_wild.naam, pokemon_wild.type1, pokemon_wild.type2 FROM pokemon_nieuw_starter INNER JOIN pokemon_wild ON pokemon_nieuw_starter.wild_id = pokemon_wild.wild_id ORDER BY pokemon_nieuw_starter.wild_id ASC
Are you sure you have Mursak version web uploaded? b/c the choose-pokemon is in English in Mursak version.
![]()
Last edited by shazam; 28-07-15 at 12:35 AM. Reason: Add screeshot mursak choose-pokemon
Last edited by Mirko Pirolli; 28-07-15 at 05:50 PM. Reason: Added screenshot
Mirko I did a clean install of web and db i could not recreate your problem. Not sure what causing it.
One last thing you can try is to bring up the console and hit refresh see it show any error.
For Firefox it Ctrl + Shift + K.
For Internet explorer it F12 then click console tab.
Ex. of Console in Firefox and IE 11
![]()
Fixed...there was some problem with the database..