[Release] Pokemon-Area based browser game

Page 62 of 78 FirstFirst ... 1252545556575859606162636465666768697072 ... LastLast
Results 916 to 930 of 1163
  1. #916
    Michael Jackson ♥ Sphinx is offline
    MemberRank
    Aug 2010 Join Date
    In your bed :3Location
    906Posts

    Re: [Release] Pokemon-Area based browser game

    Sexiest Pokemon-area register?
    (Regions and characters are useless!)

    Spoiler:



  2. #917
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,607Posts

    Re: [Release] Pokemon-Area based browser game

    Seems like you have some awesome CSS skills :D

  3. #918
    Apprentice Wenddy is offline
    MemberRank
    Sep 2008 Join Date
    23Posts

    Re: [Release] Pokemon-Area based browser game

    Hi guys! After so much time without visit the forum, did anyone solved the issue regarding the Player Attack page?

  4. #919
    RaGEZONER || Webdevloper KiruHoshino is offline
    MemberRank
    Oct 2011 Join Date
    HungaryLocation
    648Posts

    Re: [Release] Pokemon-Area based browser game

    My new layout (Profile page):
    Spoiler:




  5. #920
    Apprentice Hera Florin is offline
    MemberRank
    Jul 2012 Join Date
    19Posts

    Re: [Release] Pokemon-Area based browser game

    When I battle everytime this appear , to give a potion to somebody help.jpg

  6. #921
    Michael Jackson ♥ Sphinx is offline
    MemberRank
    Aug 2010 Join Date
    In your bed :3Location
    906Posts

    Re: [Release] Pokemon-Area based browser game

    1. Does anyone know the fix for the "." message(gebeurtenis) after a wild battle.
    Can someone post the recent uploaded version of pkmn-area? (with respect and new gold/silver icons) cuz i think i used to old one :$
    Last edited by Sphinx; 23-01-14 at 03:38 PM.

  7. #922

    Re: [Release] Pokemon-Area based browser game

    Will provide somebody theme to this game? =)

  8. #923
    Michael Jackson ♥ Sphinx is offline
    MemberRank
    Aug 2010 Join Date
    In your bed :3Location
    906Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by Konrad Rychlik View Post
    Will provide somebody theme to this game? =)
    i made about 7 diffrent themes in 2months for mine and im still not satisfied :s
    Create your own theme? (just edit the standard one)

  9. #924
    Apprentice lilsnow is offline
    MemberRank
    Mar 2012 Join Date
    19Posts

    Re: [Release] Pokemon-Area based browser game

    hi :) i have a question..
    how can I get the shiny rate change?

    thanks

  10. #925
    RaGEZONER || Webdevloper KiruHoshino is offline
    MemberRank
    Oct 2011 Join Date
    HungaryLocation
    648Posts

    Re: [Release] Pokemon-Area based browser game

    Go attack/wild folder and open wild-start.php

    Search this line:
    Code:
    $randshiny = rand(1,250);
    Regards

  11. #926
    Apprentice lilsnow is offline
    MemberRank
    Mar 2012 Join Date
    19Posts

    Re: [Release] Pokemon-Area based browser game

    thanks KiruHoshino :)


    edit: i have a question, ive see in the in the db, pokemon_speler, "trade" it is always 1.0, what is it? there is an exchange function to develop pokémon?.... z.B. Kadabra have in the Pokedex a trade icon... there is a hidden function to move ahead? or for which there is the "trade" in the database?

    EDIT:

    trade-center :)
    how do u like it?
    step 3 are only a message " trade successfully"
    Last edited by lilsnow; 20-02-14 at 10:31 AM.

  12. #927
    Valued Member fudirox is offline
    MemberRank
    Aug 2008 Join Date
    111Posts

    Re: [Release] Pokemon-Area based browser game

    buy full tournament system, someone has?

  13. #928
    Account Upgraded | Title Enabled! Raftaar is offline
    MemberRank
    Apr 2013 Join Date
    274Posts

    Re: [Release] Pokemon-Area based browser game

    I want to recreate my rpg from scratch

    anyone wants to contribute ? or join ?

  14. #929
    Account Upgraded | Title Enabled! felixcruzer is offline
    MemberRank
    May 2012 Join Date
    GermanyLocation
    289Posts

    Re: [Release] Pokemon-Area based browser game

    Simple Captcha System for Pokémon-Area:
    With a probability of 1:400, a captcha page appears, which users have to solve.
    This will help against Bots etc.

    1. Add this to user (gebruiker) table:
    Spoiler:




    2. Add these lines to your index.php:
    Spoiler:

    #captcha page
    if($gebruiker['captcha'] == 1) $page = 'captcha';

    #captcha
    $zufall = rand(1,400);
    if($zufall >= 399){ $page = 'captcha';
    mysql_query("UPDATE `gebruikers` SET `captcha`='1' WHERE `user_id`='".$_SESSION['id']."'");
    }


    3. Create captcha.php:
    Spoiler:

    <?php
    //Script laden zodat je nooit pagina buiten de index om kan laden
    include("includes/security.php");

    if($gebruiker['captcha'] == 0) header("location: index.php?page=home");
    $page = 'captcha';

    include_once('language/language-pages.php');

    if(isset($_POST['submit'])){
    $captcha = $_POST['captcha'];

    if(empty($captcha)){
    echo '<div class="red">'.$txt['alert_no_username'].'</div>';
    }

    elseif(($captcha) != $_SESSION['captcha_code']){
    echo '<center><div class="red">Falsch! Bitte versuche es erneut.</div></center>';
    }
    else {
    mysql_query("UPDATE `gebruikers` SET `captcha`='0' WHERE `user_id`='".$_SESSION['id']."'");
    echo '<center><div class="green">Erfolgreich gel&ouml;st.<br><a href="?page=home">Hier klicken um fortzufahren</a></div></center>';
    }
    }
    ?>
    <center>
    <h2>Captcha L&ouml;sen</h2><hr>
    <br>Bitte l&ouml;se das Captcha, um fortzufahren.
    <form method="post">
    <table>
    <tr>
    <tr>
    <td height="37">&nbsp;</td>
    <td><img src="includes/captcha.php" alt="<?php echo $txt['captcha']; ?>" title="<?php echo $txt['captcha']; ?>"/></td>
    </tr>
    <tr>
    <td height="37"> </td>
    <td><input type="text" name="captcha" class="text_long" maxlength="3"/></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td><input type="submit" name="submit" value="Abschicken" class="button"></td>
    </tr>
    </table></td>
    </tr>
    </table>
    </center>
    </form>


    Give me a thanks if i helped you:-)

    It's my first security script for pokemon-area

    Regards
    Last edited by felixcruzer; 03-03-14 at 04:42 PM.

  15. #930
    Account Upgraded | Title Enabled! felixcruzer is offline
    MemberRank
    May 2012 Join Date
    GermanyLocation
    289Posts

    Re: [Release] Pokemon-Area based browser game

    Screenshot of my game:
    Spoiler:



    Screenshot of wild battles:
    Spoiler:



    Mega-Evolutions:
    Spoiler:

    Last edited by felixcruzer; 04-03-14 at 12:47 AM.



Advertisement