[Release] Pokemon-Area based browser game

Page 29 of 78 FirstFirst ... 19212223242526272829303132333435363739 ... LastLast
Results 421 to 435 of 1163
  1. #421
    Apprentice Alex566 is offline
    MemberRank
    Jun 2013 Join Date
    5Posts

    Re: [Release] Pokemon-Area based browser game

    So nice that Pokedex.

    Can I set time when a user travels to other world?

  2. #422
    Member Snok is offline
    MemberRank
    Sep 2010 Join Date
    IsraelLocation
    80Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by akira2081 View Post
    I have the 90% españish traslations , how i can set a bilingual , because i put the 2 flags EN & ES but when click nothing happend.
    Do you try to include both language in <HEAD> tags on index.php
    Quote Originally Posted by sananebak View Post
    how to make "2º Show evo line :" i could not setting

    who puclic new pokedex system ?

    Demo

    Pokémon-Aréna - Légy te is Pokémon Mester!
    Code your own new pokedex ots not so hard to make somthing like that..
    Quote Originally Posted by Alex566 View Post
    So nice that Pokedex.

    Can I set time when a user travels to other world?
    Ofcoures you can, use the wait function in your travel page, if you need help with that i"ll share this here.

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

    Re: [Release] Pokemon-Area based browser game

    100% eng

    i got 100% english

    but lol it got hacked never mind i hav scripts backup which is eng
    :D

    remaking my site on new host as the host is crap

  4. #424
    Member Snok is offline
    MemberRank
    Sep 2010 Join Date
    IsraelLocation
    80Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by Raftaar View Post
    100% eng

    i got 100% english

    but lol it got hacked never mind i hav scripts backup which is eng
    :D

    remaking my site on new host as the host is crap
    How you got hacked?

  5. #425
    Valued Member sananebak is offline
    MemberRank
    Dec 2012 Join Date
    in the HELLLocation
    105Posts

    Re: [Release] Pokemon-Area based browser game

    What's in the database? "voordeel"

  6. #426
    Member Snok is offline
    MemberRank
    Sep 2010 Join Date
    IsraelLocation
    80Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by sananebak View Post
    What's in the database? "voordeel"
    Pokemon's type options

  7. #427
    Valued Member sananebak is offline
    MemberRank
    Dec 2012 Join Date
    in the HELLLocation
    105Posts

    Re: [Release] Pokemon-Area based browser game

    What does it mean? Pokemon types, the advantages of each?

  8. #428
    Member Snok is offline
    MemberRank
    Sep 2010 Join Date
    IsraelLocation
    80Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by sananebak View Post
    What does it mean? Pokemon types, the advantages of each?
    no, it means what type of pokemon it is..
    for example Charizard is Flying \ Fire

  9. #429
    Apprentice ConcealedHeaven is offline
    MemberRank
    May 2013 Join Date
    19Posts

    Re: [Release] Pokemon-Area based browser game

    I have started translating this source database entries and all i will post my developments in the developers section

  10. #430
    Valued Member sananebak is offline
    MemberRank
    Dec 2012 Join Date
    in the HELLLocation
    105Posts

    Re: [Release] Pokemon-Area based browser game

    no i think ,Pokemon types, the advantages of each?type of pokemon, pokemon type superiority. Look carefully. No types of pokemon.

    ustunluk.png

    I want to be sure. What does this database?


    annval = attack
    verdediger = defender
    krachtiger = powerful

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

    Re: [Release] Pokemon-Area based browser game

    snok i have no idea

  12. #432
    Member Snok is offline
    MemberRank
    Sep 2010 Join Date
    IsraelLocation
    80Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by sananebak View Post
    no i think ,Pokemon types, the advantages of each?type of pokemon, pokemon type superiority. Look carefully. No types of pokemon.

    ustunluk.png

    I want to be sure. What does this database?


    annval = attack
    verdediger = defender
    krachtiger = powerful
    here, you got it by your self, i was wrong, i think its how the damage calculating when you battle with x type against y type.

    new admin function - sending suprise + message to all players
    including only premium days, silver and gold, add what you want by your own :)

    PHP Code:
    <?        
    include("includes/security.php");

    //Admin controle
    if($gebruiker['admin'] < 1header('location: index.php?page=home');

    //Send
    if(isset($_POST['send'])){
        
    $bericht   $_POST['tekst'];
        
    $onderwerp $_POST['onderwerp'];
        
    $pdays $_POST['pdays'];
        
    $psilver $_POST['psilver'];
        
    $pgold $_POST['pgold'];
        if(empty(
    $bericht)) {
          echo 
    '<div class="red"><img src="http://forum.ragezone.com/images/icons/red.png"> No text entered.</div>';
        }
        if(empty(
    $onderwerp)) {
          echo 
    '<div class="red"><img src="http://forum.ragezone.com/images/icons/red.png"> No topic entered.</div>';
        }
        elseif(!
    preg_match('/[A-Za-z0-9_]+$/',$onderwerp)) {
          echo 
    '<div class="red"><img src="http://forum.ragezone.com/images/icons/red.png"> The topic may not contain those characters.</div>';
        }
        else{
          
    $speler mysql_query("SELECT `user_id` FROM `gebruikers`");
          
    mysql_query("UPDATE `gebruikers` SET `premiumaccount`=`premiumaccount`+'".$pdays."', `silver`=`silver`+'".$psilver."', `gold`=`gold`+'".$pgold."'");
          while(
    $spelers mysql_fetch_array($speler)){
            
    $datum date('Y-m-d H:i:s');
            
    mysql_query("INSERT INTO `berichten` (`datum`, `ontvanger_id`, `afzender_id`, `bericht`, `onderwerp`, `gelezen`) 
              VALUES ('"
    .$datum."', '".$spelers['user_id']."', '1', '".$bericht."', '".$onderwerp."', 'nee')");
        
          }
          echo 
    '<div class="green"><img src="http://forum.ragezone.com/images/icons/green.png"> Suprise was sent successfully!</div>';
        }
    }
    ?>
    <form method="post">
    <center>
    <img src="http://icons.iconarchive.com/icons/enhancedlabs/the-real-christmas-05/128/Gift-Box-icon.png"><br />
    <h2>Give suprise for everybody!</h2>
    <table width="100" border="0">
        <tr>
            <td id="radio">Click Here</td>
            <td><input type="radio" name="ontvanger" id="radio" value="allemaal" onChange=this.form.submit();></td>
        </tr>
    </table>
    </center>
    </form>
    <?
    //Radio
    if(isset($_POST['ontvanger'])){
      echo 
    '<form method="post">
                  <table width="600" border="0">
                <tr>
                    <td width="110">Message Topic:</td>
                    <td width="490"><input type="text" name="onderwerp" class="text_long" value="Your Topic"></td>
                </tr>
                <tr>
                    <td width="110">Silver:</td>
                    <td width="490"><input type="text" name="psilver" class="text_long" value="0"></td>
                </tr>
                <tr>
                    <td width="110">Gold:</td>
                    <td width="490"><input type="text" name="pgold" class="text_long" value="0"></td>
                </tr>
                <tr>
                    <td width="110">Premium Days:</td>
                    <td width="490"><input type="text" name="pdays" class="text_long" value="0"></td>
                </tr>
                <tr>
                    <td colspan="2"><textarea class="text_area" rows="15"  name="tekst">'
    .$_POST['tekst'].'</textarea></td>
                </tr>
                <tr>
                    <td colspan="2"><input type="hidden" value="'
    .$_POST['ontvanger'].'" name="ontvanger">
                        <input type="submit" value="Send Msg & Suprise" name="send" class="button"></td>
                </tr>
            </table>
              </form>'
    ;
    }
    ?>

  13. #433
    Valued Member sananebak is offline
    MemberRank
    Dec 2012 Join Date
    in the HELLLocation
    105Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by Snok View Post
    here, you got it by your self, i was wrong, i think its how the damage calculating when you battle with x type against y type.

    new admin function - sending suprise + message to all players
    including only premium days, silver and gold, add what you want by your own :)

    PHP Code:
    <?        
    include("includes/security.php");

    //Admin controle
    if($gebruiker['admin'] < 1header('location: index.php?page=home');

    //Send
    if(isset($_POST['send'])){
        
    $bericht   $_POST['tekst'];
        
    $onderwerp $_POST['onderwerp'];
        
    $pdays $_POST['pdays'];
        
    $psilver $_POST['psilver'];
        
    $pgold $_POST['pgold'];
        if(empty(
    $bericht)) {
          echo 
    '<div class="red"><img src="http://forum.ragezone.com/images/icons/red.png"> No text entered.</div>';
        }
        if(empty(
    $onderwerp)) {
          echo 
    '<div class="red"><img src="http://forum.ragezone.com/images/icons/red.png"> No topic entered.</div>';
        }
        elseif(!
    preg_match('/[A-Za-z0-9_]+$/',$onderwerp)) {
          echo 
    '<div class="red"><img src="http://forum.ragezone.com/images/icons/red.png"> The topic may not contain those characters.</div>';
        }
        else{
          
    $speler mysql_query("SELECT `user_id` FROM `gebruikers`");
          
    mysql_query("UPDATE `gebruikers` SET `premiumaccount`=`premiumaccount`+'".$pdays."', `silver`=`silver`+'".$psilver."', `gold`=`gold`+'".$pgold."'");
          while(
    $spelers mysql_fetch_array($speler)){
            
    $datum date('Y-m-d H:i:s');
            
    mysql_query("INSERT INTO `berichten` (`datum`, `ontvanger_id`, `afzender_id`, `bericht`, `onderwerp`, `gelezen`) 
              VALUES ('"
    .$datum."', '".$spelers['user_id']."', '1', '".$bericht."', '".$onderwerp."', 'nee')");
        
          }
          echo 
    '<div class="green"><img src="http://forum.ragezone.com/images/icons/green.png"> Suprise was sent successfully!</div>';
        }
    }
    ?>
    <form method="post">
    <center>
    <img src="http://icons.iconarchive.com/icons/enhancedlabs/the-real-christmas-05/128/Gift-Box-icon.png"><br />
    <h2>Give suprise for everybody!</h2>
    <table width="100" border="0">
        <tr>
            <td id="radio">Click Here</td>
            <td><input type="radio" name="ontvanger" id="radio" value="allemaal" onChange=this.form.submit();></td>
        </tr>
    </table>
    </center>
    </form>
    <?
    //Radio
    if(isset($_POST['ontvanger'])){
      echo 
    '<form method="post">
                  <table width="600" border="0">
                <tr>
                    <td width="110">Message Topic:</td>
                    <td width="490"><input type="text" name="onderwerp" class="text_long" value="Your Topic"></td>
                </tr>
                <tr>
                    <td width="110">Silver:</td>
                    <td width="490"><input type="text" name="psilver" class="text_long" value="0"></td>
                </tr>
                <tr>
                    <td width="110">Gold:</td>
                    <td width="490"><input type="text" name="pgold" class="text_long" value="0"></td>
                </tr>
                <tr>
                    <td width="110">Premium Days:</td>
                    <td width="490"><input type="text" name="pdays" class="text_long" value="0"></td>
                </tr>
                <tr>
                    <td colspan="2"><textarea class="text_area" rows="15"  name="tekst">'
    .$_POST['tekst'].'</textarea></td>
                </tr>
                <tr>
                    <td colspan="2"><input type="hidden" value="'
    .$_POST['ontvanger'].'" name="ontvanger">
                        <input type="submit" value="Send Msg & Suprise" name="send" class="button"></td>
                </tr>
            </table>
              </form>'
    ;
    }
    ?>

    Can you tell me anything on the net for this system? What is the meaning of this database?

    *Edit : this database show pokemons advantages to each other pokemon?
    Last edited by sananebak; 04-06-13 at 08:29 PM.

  14. #434
    Enthusiast akira2081 is offline
    MemberRank
    Sep 2010 Join Date
    41Posts

    Re: [Release] Pokemon-Area based browser game

    A little tip :

    If someone want effects , misses , random damega , only copy the WILD2/Wild-do-attack.php in WILD/ overwrite the existent.

  15. #435
    Member Snok is offline
    MemberRank
    Sep 2010 Join Date
    IsraelLocation
    80Posts

    Re: [Release] Pokemon-Area based browser game

    Quote Originally Posted by sananebak View Post
    Can you tell me anything on the net for this system? What is the meaning of this database?

    *Edit : this database show pokemons advantages to each other pokemon?
    i think is how the pokemon's power calculated in the battle
    fire vs grass - fire is 2x stronger
    ice vs steel - ice is 1.5 stronger

    maybe im wrong
    Quote Originally Posted by akira2081 View Post
    A little tip :

    If someone want effects , misses , random damega , only copy the WILD2/Wild-do-attack.php in WILD/ overwrite the existent.
    thanks but i already knew it :)



Advertisement