• TibiaFace

    Tibiaface | Una comunidad Open Tibia donde encontras : mapas, scripts, Otserver, npc y amigos etc ...

    .
    demo menumenu

    Afiliados



    Votar:

    [Html] Sistema de flag gesior maya 2015

    Compartir:

    Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje (Página 1 de 1.)

    1[Html] Sistema de flag gesior maya 2015 Empty [Html] Sistema de flag gesior maya 2015 Sáb Mar 19, 2016 1:40 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Hola usuarios de tibiaface


    Bueno hace 3 dias un usuario me pidio que si le podia poner las flag a los highscores pues lo vi muy interesante y le coloque a los whoisonline.

    ir a config.php y agregar esta linea:

    Código:
    $config['site']['countries'] = array("-------");

    si nuestra base de datos en la parte account no existe la celda flag tendran que ejecutar esta tabla:

    Código:
    ALTER TABLE accounts ADD flag varchar(255) NOT NULL

    remplzamos nuestro highscores.php por este contenido:

    Código:
    <?PHP
    $list = $_REQUEST['list'];
    $page = $_REQUEST['page'];
    switch($list)
    {
      case "fist":
       $id = 0;
       $list_name = 'Fist Fighting';
       break;
      case "club":
       $id = 1;
       $list_name = 'Club Fighting';
       break;
      case "sword":
       $id = 2;
       $list_name = 'Sword Fighting';
       break;
      case "axe":
       $id = 3;
       $list_name = 'Axe Fighting';
       break;
      case "distance":
       $id = 4;
       $list_name = 'Distance Fighting';
       break;
      case "shield":
       $id = 5;
       $list_name = 'Shielding';
       break;
      case "fishing":
       $id = 6;
       $list_name = 'Fishing';
       break;
    }
    if(!isset($id))
     if($list == "magic")
     $list_name = "Magic Level";
     else
     {
     $list_name = 'Experience';
     $list = 'experience';
     }
    if(count($config['site']['worlds']) > 1)
    {
     $worlds .= '<i>Select world:</i> ';
     foreach($config['site']['worlds'] as $idd => $world_n)
     {
     if($idd == (int) $_GET['world'])
     {
     $world_id = $idd;
     $world_name = $world_n;
     }
     }
    }
     if($idd == (int) $_GET['world'])
     {
     $world_id = $idd;
     $world_name = $world_n;
     }
    if(!isset($world_id))
    {
     $world_id = 0;
     $world_name = $config['server']['serverName'];
    }
    $offset = $page * 100;
    if(isset($id))
     $skills = $SQL->query('SELECT name,online,value,level,vocation,promotion FROM players,player_skills WHERE players.world_id = '.$world_id.' AND players.deleted = 0 AND players.group_id < '.$config['site']['players_group_id_block'].' AND players.id = player_skills.player_id AND player_skills.skillid = '.$id.' ORDER BY value DESC, count DESC LIMIT 101 OFFSET '.$offset);
    elseif($list == "magic")
     $skills = $SQL->query('SELECT name,online,maglevel,level,vocation,promotion FROM players WHERE players.world_id = '.$world_id.' AND players.deleted = 0 AND players.group_id < '.$config['site']['players_group_id_block'].' AND name != "Account Manager" ORDER BY maglevel DESC, manaspent DESC LIMIT 101 OFFSET '.$offset);
    elseif($list == "experience")
     $skills = $SQL->query('SELECT name,online,level,experience,vocation,promotion FROM players WHERE players.world_id = '.$world_id.' AND players.deleted = 0 AND players.group_id < '.$config['site']['players_group_id_block'].' AND name != "Account Manager" ORDER BY level DESC, experience DESC LIMIT 101 OFFSET '.$offset);
    //wyswietlanie wszystkiego
    $main_content .= '<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD><TD><CENTER><H2>Ranking for '.$list_name.' on '.$world_name.'</H2></CENTER><BR>';
     $main_content .= '<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD></TD><TD>
    <FORM ACTION="?subtopic=highscores" METHOD=get><INPUT TYPE=hidden NAME=subtopic VALUE=highscores><INPUT TYPE=hidden NAME=list VALUE=experience>
    <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4><TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>World Selection</B></TD></TR><TR><TD BGCOLOR="'.$config['site']['lightborder'].'">
        <TABLE BORDER=0 CELLPADDING=1><TR><TD>World: </TD><TD><SELECT SIZE="1" NAME="world"><OPTION VALUE="" SELECTED>(choose world)</OPTION>';
     foreach($config['site']['worlds'] as $id => $world_n)
    {
     $main_content .= '<OPTION VALUE="'.$id.'">'.$world_n.'</OPTION>';
    }
     $main_content .= '</SELECT> </TD><TD><INPUT TYPE=image NAME="Submit" ALT="Submit" SRC="'.$layout_name.'/images/buttons/sbutton_submit.gif" BORDER=0 WIDTH=120 HEIGHT=18>
            </TD></TR></TABLE></TABLE></FORM></TABLE><br><br><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%></TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD WIDTH=10% CLASS=whites><B>Country</B></TD><TD WIDTH=10% CLASS=whites><B>Rank</B></TD><TD WIDTH=75% CLASS=whites><B>Name</B></TD><TD WIDTH=15% CLASS=whites><b><center>Level</center></B></TD>';
    if($list == "experience")
     $main_content .= '<TD CLASS=whites><b><center>Points</center></B></TD>';
    $main_content .= '</TR><TR>';
    foreach($skills as $skill)
    {
    $player = $ots->createObject('Player');
    $player->find($skill['name']);
    $account = $player->getAccount();
    $account_db = new OTS_Account();
    $flagg = $account->getCustomField("flag");
     if($number_of_rows < 100)
     {
     if($list == "magic")
     $skill['value'] = $skill['maglevel'];
     if($list == "experience")
     $skill['value'] = $skill['level'];
     if(!is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $number_of_rows++;
     $main_content .= '<tr bgcolor="'.$bgcolor.'"><td><image src="images/flags/'.$flagg.'.png"/></td><td>'.($offset + $number_of_rows).'.</td><td><a href="?subtopic=characters&name='.urlencode($skill['name']).'">'.($skill['online']>0 ? "<font color="green">".$skill['name']."</font>" : "<font color="red">".$skill['name']."</font>").'</a><br><small>'.$skill['level'].' '.$vocation_name[$world_id][$skill['promotion']][$skill['vocation']].'</small></td><td><center>'.$skill['value'].'</center></td>';
     if($list == "experience")
     $main_content .= '<td><center>'.$skill['experience'].'</center></td>';
     $main_content .= '</tr>';
     }
     else
     $show_link_to_next_page = TRUE;
    }
    $main_content .= '</TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%>';
    if($page > 0)
     $main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.$list.'&page='.($page - 1).'" CLASS="size_xxs">Previous Page</A></TD></TR>';
    if($show_link_to_next_page)
     $main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.$list.'&page='.($page + 1).'" CLASS="size_xxs">Next Page</A></TD></TR>';
      $main_content .= '</TABLE></TD><TD WIDTH=5%><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD><TD WIDTH=15% VALIGN=top ALIGN=right><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Choose<br/>a skill</B></TD></TR><TR BGCOLOR="'.$config['site']['lightborder'].'"><TD><A HREF="?subtopic=highscores&list=experience&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/level.png" style="border: none;"></A><BR><A HREF="?subtopic=highscores&list=magic&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/ml.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=shield&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/def.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=distance&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/dist.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=club&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/club.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=sword&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/sword.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=axe&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/axe.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=fist&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/fist.png" style="border: none;"/></A><BR><A HREF="?subtopic=highscores&list=fishing&world='.$world_id.'" CLASS="size_xs"><img src="images/skills/fish.png" style="border: none;"/></A><BR></TABLE></TD><TD><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD></TR></TABLE>';

    ?>

    luego nos vamos y remplzamos whoisonline.php por esto:

    Código:
    <?PHP
    $order = $_REQUEST['order'];
    if($order == 'level')
        $orderby = 'level';
    elseif($order == 'vocation')
        $orderby = 'vocation';
    if(empty($orderby))
        $orderby = 'name';
    $players_online_data = $SQL->query('SELECT * FROM players WHERE online = 1 ORDER BY '.$orderby.'');
    $number_of_players_online = 0;
    foreach($players_online_data as $player) {
            $acc = $SQL->query('SELECT * FROM '.$SQL->tableName('accounts').' WHERE '.$SQL->fieldName('id').' = '.$player['account_id'].'')->fetch();
        $number_of_players_online++;
        if(is_int($number_of_players_online / 2))
            $bgcolor = $config['site']['darkborder'];
        else
            $bgcolor = $config['site']['lightborder'];
        $players_rows .= '<TR BGCOLOR='.$bgcolor.'><TD WIDTH=5%><center><image src="images/flags/'.$acc['flag'].'.gif"></center></TD><TD WIDTH=70%><A HREF="index.php?subtopic=characters&name='.$player['name'].'">'.$player['name'].'</A></TD><TD WIDTH=10%>'.$player['level'].'</TD><TD WIDTH=20%>'.$vocation_name[$player['promotion']][$player['vocation']].'</TD></TR>';
    }
    if($number_of_players_online == 0)
        //server status - server empty
        $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=white><B>Server Status</B></TD></TR><TR BGCOLOR='.$config['site']['darkborder'].'><TD><TABLE BORDER=0 CELLSPACING=1 CELLPADDING=1><TR><TD>Currently no one is playing on '.$config['server']['serverName'].'.</TD></TR></TABLE></TD></TR></TABLE><BR>';
    else
    {
        //server status - someone is online
        $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=white><B>Server Status</B></TD></TR><TR BGCOLOR='.$config['site']['darkborder'].'><TD><TABLE BORDER=0 CELLSPACING=1 CELLPADDING=1><TR><TD>Currently '.$number_of_players_online.' players are online.</TD></TR></TABLE></TD></TR></TABLE><BR>';
        //list of players
        $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD><center><A HREF="index.php?subtopic=whoisonline&order=name" CLASS=white>#</A></center></TD><TD><A HREF="index.php?subtopic=whoisonline&order=name" CLASS=white>Name</A></TD><TD><A HREF="index.php?subtopic=whoisonline&order=level" CLASS=white>Level</A></TD><TD><A HREF="index.php?subtopic=whoisonline&order=vocation" CLASS=white>Vocation</TD></TR>'.$players_rows.'</TABLE>';
        //search bar
        $main_content .= '<BR><FORM ACTION="index.php?subtopic=characters" METHOD=post>  <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4><TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Search Character</B></TD></TR><TR><TD BGCOLOR="'.$config['site']['darkborder'].'"><TABLE BORDER=0 CELLPADDING=1><TR><TD>Name:</TD><TD><INPUT NAME="name" VALUE=""SIZE=29 MAXLENGTH=29></TD><TD><INPUT TYPE=image NAME="Submit" SRC="'.$layout_name.'/images/buttons/sbutton_submit.gif" BORDER=0 WIDTH=120 HEIGHT=18></TD></TR></TABLE></TD></TR></TABLE></FORM>';
    }
    ?>

    luego nos vamos y remplzamos createaccount.php po esto


    Código:
    <?PHP
    //CREATE ACCOUNT FORM PAGE
    if($action == "")
    {
        $main_content .= '<script type="text/javascript">

    var accountHttp;

    //sprawdza czy dane konto istnieje czy nie
    function checkAccount()
    {
        if(document.getElementById("account_name").value=="")
        {
            document.getElementById("acc_name_check").innerHTML = \'<b><font color="red">Please enter account name.</font></b>\';
            return;
        }
        accountHttp=GetXmlHttpObject();
        if (accountHttp==null)
        {
            return;
        }
        var account = document.getElementById("account_name").value;
        var url="ajax/check_account.php?account=" + account + "&uid="+Math.random();
        accountHttp.onreadystatechange=AccountStateChanged;
        accountHttp.open("GET",url,true);
        accountHttp.send(null);
    }

    function AccountStateChanged()
    {
        if (accountHttp.readyState==4)
        {
            document.getElementById("acc_name_check").innerHTML=accountHttp.responseText;
        }
    }

    var emailHttp;

    //sprawdza czy dane konto istnieje czy nie
    function checkEmail()
    {
        if(document.getElementById("email").value=="")
        {
            document.getElementById("email_check").innerHTML = \'<b><font color="red">Please enter e-mail.</font></b>\';
            return;
        }
        emailHttp=GetXmlHttpObject();
        if (emailHttp==null)
        {
            return;
        }
        var email = document.getElementById("email").value;
        var url="ajax/check_email.php?email=" + email + "&uid="+Math.random();
        emailHttp.onreadystatechange=EmailStateChanged;
        emailHttp.open("GET",url,true);
        emailHttp.send(null);
    }

    function EmailStateChanged()
    {
        if (emailHttp.readyState==4)
        {
            document.getElementById("email_check").innerHTML=emailHttp.responseText;
        }
    }

        function validate_required(field,alerttxt)
        {
        with (field)
        {
        if (value==null||value==""||value==" ")
          {alert(alerttxt);return false;}
        else {return true}
        }
        }

        function validate_email(field,alerttxt)
        {
        with (field)
        {
        apos=value.indexOf("@");
        dotpos=value.lastIndexOf(".");
        if (apos<1||dotpos-apos<2)
          {alert(alerttxt);return false;}
        else {return true;}
        }
        }

        function validate_form(thisform)
        {
        with (thisform)
        {
        if (validate_required(account_name,"Please enter name of new account!")==false)
          {account_name.focus();return false;}
        if (validate_required(email,"Please enter your e-mail!")==false)
          {email.focus();return false;}
        if (validate_email(email,"Invalid e-mail format!")==false)
          {email.focus();return false;}
        if (verifpass==1) {
        if (validate_required(passor,"Please enter password!")==false)
          {passor.focus();return false;}
        if (validate_required(passor2,"Please repeat password!")==false)
          {passor2.focus();return false;}
        if (passor2.value!=passor.value)
          {alert(\'Repeated password is not equal to password!\');return false;}
        }
        if (verifya==1) {
        if (validate_required(verify,"Please enter verification code!")==false)
          {verify.focus();return false;}
        }
        if(rules.checked==false)
          {alert(\'To create account you must accept server rules!\');return false;}
        }
        }
        </script>';
        $main_content .= 'To play on '.$config['server']['serverName'].' you need an account.
                            All you have to do to create your new account is to enter your email address, password to new account, verification code from picture and to agree to the terms presented below.
                            If you have done so, your account number, password and e-mail address will be shown on the following page and your account and password will be sent
                            to your email address along with further instructions.<BR><BR>
                            <FORM ACTION="index.php?subtopic=createaccount&action=saveaccount" onsubmit="return validate_form(this)" METHOD=post>
                            <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
                            <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Create a '.$config['server']['serverName'].' Account</B></TD></TR>
                            <TR><TD BGCOLOR="'.$config['site']['darkborder'].'"><TABLE BORDER=0 CELLSPACING=8 CELLPADDING=0>
                              <TR><TD>
                                <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0>';
        $main_content .= '<TR><TD width="150" valign="top"><B>Account name: </B></TD><TD colspan="2"><INPUT id="account_name" NAME="reg_name" onkeyup="checkAccount();" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Please enter your new account name)</font></TD></TR>
                          <TR><TD width="150"><b>Name status:</b></TD><TD colspan="2"><b><div id="acc_name_check">Please enter your e-mail.</div></b></TD></TR>
                        <TR><TD width="150" valign="top"><B>Email address: </B></TD><TD colspan="2"><INPUT id="email" NAME="reg_email" onkeyup="checkEmail();" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Your email address is required to recovery a '.$config['server']['serverName'].' account)</font></TD></TR>
                          <TR><TD width="150"><b>Email status:</b></TD><TD colspan="2"><b><div id="email_check">Please enter your e-mail.</div></b></TD></TR>';
                          $main_content .= '<TR><TD width="150"><b>Select Country:</b></TD><TD colspan="2"><b><SELECT NAME=country>';
                            foreach($config['site']['countries'] as $name)
                                {
                                    $main_content .= '<option value="ES">ESPAÑA</option>
            <option value="AU">Australia</option>
            <option value="AT">Austria</option>
            <option value="AR">Argentina</option>
            <option value="BE">Belgium</option>
            <option value="BR">Brasil</option>
            <option value="BO">Bolivia</option>
            <option value="BA">Bosnia and Herzegovina</option>
            <option value="BG">Bulgaria</option>
            <option value="CA">Canada</option>
            <option value="CO">Colombia</option>
            <option value="CR">Costa Rica</option>
            <option value="CL">Chile</option>
            <option value="CZ">Czech Republic</option>
            <option value="DK">Denmark</option>
            <option value="EC">Ecuador</option>
            <option value="EE">Estonia</option>
            <option value="EG">Egypt</option>
            <option value="FI">Finland</option>    
            <option value="FR">France</option>
            <option value="DE">Germany</option>
            <option value="IL">Israel</option>
            <option value="IT">Italy</option>
            <option value="IE">Ireland</option>
            <option value="LT">Lithuania</option>
            <option value="MX">Mexico</option>
            <option value="MA">Marruecos</option>
            <option value="ML">Netherlands</option>
            <option value="PY">Paraguay</option>
            <option value="PE">Peru</option>
            <option value="PT">Portugal</option>
            <option value="PL">Poland</option>
            <option value="PR">Puerto Rico</option>
            <option value="DO">Republica Dominicana</option>
            <option value="RO">Romania</option>
            <option value="RU">Russia</option>
            <option value="SN">Senegal</option>
            <option value="SE">Sweden</option>
            <option value="SI">Slovakia</option>
            <option value="TR">Turkey</option>
            <option value="US">United States</option>
            <option value="UY">Uruguay</option>
            <option value="UA">Ukraine</option>    
            <option value="VE">Venezuela</option>';
                                }
                            $main_content .= '</SELECT></b></TD></TR>';
        if(!$config['site']['create_account_verify_mail'])
        $main_content .= '<script type="text/javascript">var verifpass=1;</script>
                            <TR><TD width="150" valign="top"><B>Password: </B></TD><TD colspan="2"><INPUT TYPE="password" id="passor" NAME="reg_password" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Here write your password to new account on '.$config['server']['serverName'].')</font></TD></TR>
                          <TR><TD width="150" valign="top"><B>Repeat password: </B></TD><TD colspan="2"><INPUT TYPE="password" id="passor2" NAME="reg_password2" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Repeat your password)</font></TD></TR>';
        else
            $main_content .= '<script type="text/javascript">var verifpass=0;</script>';
        if($config['site']['verify_code'])
            $main_content .= '<script type="text/javascript">var verifya=1;</script><TR><TD width="150"><B>Code: </B></TD><TD colspan="2"><img src="imgverification/imagebuilder.php" border="0" alt="Image Verification is missing, please contact the administrator"></TD></TR>
                              <TR><TD width="150" valign="top"><B>Verification Code: </B></TD><TD colspan="2"><INPUT id="verify" NAME="reg_code" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Here write verification code from picture)</font></TD></TR>';
        else
            $main_content .= '<script type="text/javascript">var verifya=0;</script>';
        $main_content .= '</TABLE>
                          </TD></TR>
                          <TR><TD>
                            <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0><TR><TD>
                               Please review the following terms and state your agreement below.
                            </TD></TR>
                            <TR><TD>
                              <B>'.$config['server']['serverName'].' Rules</B><BR>
                              <TEXTAREA ROWS="16" WRAP="physical" COLS="80" READONLY="true">';
        //load server rules from file
        include("tibiarules.php");
        $main_content .= '</TEXTAREA>
                            </TD></TR></TABLE>
                          </TD></TR>
                          <TR><TD>
                            <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0>
                            <TR><TD>
                              <INPUT TYPE="checkbox" NAME="rules" id="rules" value="true" /><label for="rules"><u> I agree to the '.$config['server']['serverName'].' Rules.</u></lable><BR>
                            </TD></TR>
                            <TR><TD>
                              If you fully agree to these terms, click on the "I Agree" button in order to create a '.$config['server']['serverName'].' account.<BR>
                              If you do not agree to these terms or do not want to create a '.$config['server']['serverName'].' account, please click on the "Cancel" button.
                            </TD></TR></TABLE>
                          </TD></TR>
                        </TABLE></TD></TR>
                        </TABLE>
                        <BR>
                        <TABLE BORDER=0 WIDTH=100%>
                          <TR><TD ALIGN=center>
                            <IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=120 HEIGHT=1 BORDER=0><BR>
                          </TD><TD ALIGN=center VALIGN=top>
                            <INPUT TYPE=image NAME="I Agree" SRC="'.$layout_name.'/images/buttons/sbutton_iagree.gif" BORDER=0 WIDTH=120 HEIGHT=18>
                            </FORM>
                          </TD><TD ALIGN=center>
                            <FORM  ACTION="index.php?subtopic=latestnews" METHOD=post>
                            <INPUT TYPE=image NAME="Cancel" SRC="'.$layout_name.'/images/buttons/sbutton_cancel.gif" BORDER=0 WIDTH=120 HEIGHT=18>
                            </FORM>
                          </TD><TD ALIGN=center>
                            <IMG SRC="/images/general/blank.gif" WIDTH=120 HEIGHT=1 BORDER=0><BR>
                          </TD></TR>
                        </TABLE>
                        </TD>
                        <TD><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD>
                        </TR>
                        </TABLE>';
    }
    //CREATE ACCOUNT PAGE (save account in database)
    if($action == "saveaccount") {
        $reg_country = trim($_POST['country']);
        $reg_name = strtoupper(trim($_POST['reg_name']));
        $reg_email = trim($_POST['reg_email']);
        $reg_password = trim($_POST['reg_password']);
        $reg_code = trim($_POST['reg_code']);
        //FIRST check
        //check e-mail
        if(empty($reg_name))
            $reg_form_errors[] = "Please enter account name.";
        elseif(!check_account_name($reg_name))
            $reg_form_errors[] = "Invalid account name format. Use only A-Z and numbers 0-9.";
        if(empty($reg_email))
            $reg_form_errors[] = "Please enter your email address.";
        else
        {
            if(!check_mail($reg_email))
                $reg_form_errors[] = "E-mail address is not correct.";
        }
        if($config['site']['verify_code'])
        {
            //check verification code
            $string = strtoupper($_SESSION['string']);
            $userstring = strtoupper($reg_code);
            session_destroy();
            if(empty($string))
                $reg_form_errors[] = "Information about verification code in session is empty.";
            else
            {
                if(empty($userstring))
                    $reg_form_errors[] = "Please enter verification code.";
                else
                {
                    if($string != $userstring)
                        $reg_form_errors[] = "Verification code is incorrect.";
                }
            }
        }
        //check password
        if(empty($reg_password) && !$config['site']['create_account_verify_mail'])
            $reg_form_errors[] = "Please enter password to your new account.";
        elseif(!$config['site']['create_account_verify_mail'])
        {
            if(!check_password($reg_password))
                $reg_form_errors[] = "Password contains illegal chars (a-z, A-Z and 0-9 only!) or lenght.";
        }
        //SECOND check
        //check e-mail address in database
        if(empty($reg_form_errors))
        {
            if($config['site']['one_email'])
            {
                $test_email_account = $ots->createObject('Account');
                //load account with this e-mail
                $test_email_account->findByEmail($reg_email);
                if($test_email_account->isLoaded())
                    $reg_form_errors[] = "Account with this e-mail address already exist in database.";
            }
            $account_db = new OTS_Account();
            $account_db->find($reg_name);
            if($account_db->isLoaded())
                $reg_form_errors[] = 'Account with this name already exist.';
        }
        // ----------creates account-------------(save in database)
        if(empty($reg_form_errors))
        {
            //create object 'account' and generate new acc. number
            if($config['site']['create_account_verify_mail'])
            {
                $reg_password = '';
                for ($i = 1; $i <= 6; $i++)
                    $reg_password .= mt_rand(0,9);
            }
            $reg_account = $ots->createObject('Account');
            $number = $reg_account->create(0, 9999999, $reg_name);
            // saves account information in database
            $reg_account->setPassword(password_ency($reg_password));
            $reg_account->setEMail($reg_email);
            $reg_account->unblock();
            $reg_account->setCustomField("flag", $reg_country);
            $reg_account->save();
            if($config['site']['newaccount_premdays'])
            {
                $reg_account->setCustomField("premdays", $config['site']['newaccount_premdays']);
                $reg_account->setCustomField("lastday", time());
            }
            //show information about registration
            if($config['site']['send_emails'] && $config['site']['create_account_verify_mail'])
            {
                $mailBody = '<html>
                <body>
                <h3>Your account number and password!</h3>
                <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.$config['server']['serverName'].'</b></a> with this e-mail.</p>
                <p>Account name: <b>'.$reg_name.'</b></p>
                <p>Password: <b>'.trim($reg_password).'</b></p>
                <br />
                <p>After login you can:</p>
                <li>Create new characters
                <li>Change your current password
                <li>Change your current e-mail
                </body>
                </html>';
                require("phpmailer/class.phpmailer.php");
                $mail = new PHPMailer();
                if ($config['site']['smtp_enabled'] == "yes")
                {
                    $mail->IsSMTP();
                    $mail->Host = $config['site']['smtp_host'];
                    $mail->Port = (int)$config['site']['smtp_port'];
                    $mail->SMTPAuth = ($config['site']['smtp_auth'] ? true : false);
                    $mail->Username = $config['site']['smtp_user'];
                    $mail->Password = $config['site']['smtp_pass'];
                }
                else
                    $mail->IsMail();
                $mail->IsHTML(true);
                $mail->From = $config['site']['mail_address'];
                $mail->AddAddress($reg_email);
                $mail->Subject = $config['server']['serverName']." - Registration";
                $mail->Body = $mailBody;
                if($mail->Send())
                {
                    $main_content .= 'Your account has been created. Check your e-mail. See you in Tibia!<BR><BR>';
                    $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
                    <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
                    <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
                      <TABLE BORDER=0 CELLPADDING=1><TR><TD>
                        <BR>Your account name is <b>'.$reg_name.'</b>.
                        <BR><b><i>You will receive e-mail (<b>'.$reg_email.'</b>) with your password.</b></i><br>';
                    $main_content .= 'You will need the account name and your password to play on '.$config['server']['serverName'].'.
                        Please keep your account name and password in a safe place and
                        never give your account name or password to anybody.<BR><BR>';
                    $main_content .= '<br /><small>These informations were send on email address <b>'.$reg_email.'</b>. Please check your inbox/spam folder.';
                }
                else
                {
                    $main_content .= '<br /><small>An error occorred while sending email! Account not created. Try again.</small>';
                    $reg_account->delete();
                }
            }
            else
            {
                $main_content .= 'Your account has been created. Now you can login and create your first character. See you in Tibia!<BR><BR>';
                $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
                <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
                <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
                  <TABLE BORDER=0 CELLPADDING=1><TR><TD>
                    <BR>Your account name is <b>'.$reg_name.'</b><br>You will need the account name and your password to play on '.$config['server']['serverName'].'.
                    Please keep your account name and password in a safe place and
                    never give your account name or password to anybody.<BR><BR>';
                if($config['site']['send_emails'] && $config['site']['send_register_email'])
                {
                    $mailBody = '<html>
                    <body>
                    <h3>Your account number and password!</h3>
                    <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.$config['server']['serverName'].'</b></a> with this e-mail.</p>
                    <p>Account name: <b>'.$reg_name.'</b></p>
                    <p>Password: <b>'.trim($reg_password).'</b></p>
                    <br />
                    <p>After login you can:</p>
                    <li>Create new characters
                    <li>Change your current password
                    <li>Change your current e-mail
                    </body>
                    </html>';
                    require("phpmailer/class.phpmailer.php");
                    $mail = new PHPMailer();
                    if ($config['site']['smtp_enabled'] == "yes")
                    {
                        $mail->IsSMTP();
                        $mail->Host = $config['site']['smtp_host'];
                        $mail->Port = (int)$config['site']['smtp_port'];
                        $mail->SMTPAuth = ($config['site']['smtp_auth'] ? true : false);
                        $mail->Username = $config['site']['smtp_user'];
                        $mail->Password = $config['site']['smtp_pass'];
                    }
                    else
                        $mail->IsMail();
                    $mail->IsHTML(true);
                    $mail->From = $config['site']['mail_address'];
                    $mail->AddAddress($reg_email);
                    $mail->Subject = $config['server']['serverName']." - Registration";
                    $mail->Body = $mailBody;
                    if($mail->Send())
                        $main_content .= '<br /><small>These informations were send on email address <b>'.$reg_email.'</b>.';
                    else
                        $main_content .= '<br /><small>An error occorred while sending email (<b>'.$reg_email.'</b>)!</small>';
                }
            }
            $main_content .= '</TD></TR></TABLE></TD></TR></TABLE><BR><BR>';
        }
        else
        {
            //SHOW ERRORs if data from form is wrong
            $main_content .= '<div class="SmallBox" >  <div class="MessageContainer" >    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="ErrorMessage" >      <div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif);" /></div><b>The Following Errors Have Occurred:</b><br/>';
            foreach($reg_form_errors as $show_msg)
            {
                        $main_content .= '<li>'.$show_msg;
            }
            $main_content .= '</div>    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>  </div></div><br/>
            <BR>
            <CENTER>
            <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><FORM ACTION=index.php?subtopic=createaccount METHOD=post><TR><TD>
            <INPUT TYPE=hidden NAME=email VALUE="">

            <INPUT TYPE=image NAME="Back" ALT="Back" SRC="'.$layout_name.'/images/buttons/sbutton_back.gif" BORDER=0 WIDTH=120 HEIGHT=18>
            </TD></TR></FORM></TABLE>
            </CENTER>';
        }
    }
    ?>


    listo

    creditos: maya


    se van ala carpeta htdocs/images y descomprimen esto ahi

    [Tienes que estar registrado y conectado para ver este vínculo]



    [Html] Sistema de flag gesior maya 2015 YNU5B25
    5 participantes
    http://www.tibiaface.com

    Krapula

    Krapula
    Miembro
    Miembro
    ese usuario creo q soy yo Very Happy

    pero lo pedi para Znote

    [Tienes que estar registrado y conectado para ver este vínculo]

    5 participantes
    https://www.facebook.com

    Simon Marin

    Simon Marin
    Miembro
    Miembro
    Para que sirve este sistema?

    5 participantes

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Simon Marin escribió:Para que sirve este sistema?

    para que al momento de de crear la cuenta se elijas el pais



    [Html] Sistema de flag gesior maya 2015 YNU5B25
    5 participantes
    http://www.tibiaface.com

    5[Html] Sistema de flag gesior maya 2015 Empty Re: [Html] Sistema de flag gesior maya 2015 Miér Ago 23, 2017 8:44 pm

    cimmeria

    cimmeria
    Miembro
    Miembro
    para 2012 sera posible?

    5 participantes
    http://sayayinz.ddns.net

    6[Html] Sistema de flag gesior maya 2015 Empty Re: [Html] Sistema de flag gesior maya 2015 Miér Ago 23, 2017 9:27 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    cimmeria escribió:para 2012 sera posible?

    si es posible l mismo tutorial sirve



    [Html] Sistema de flag gesior maya 2015 YNU5B25
    5 participantes
    http://www.tibiaface.com

    7[Html] Sistema de flag gesior maya 2015 Empty Re: [Html] Sistema de flag gesior maya 2015 Miér Jun 30, 2021 1:43 am

    Morfar

    Morfar
    Miembro
    Miembro
    Excelente gracias! es posible crear el outfitter en el team.php para gesior antiguo para que se vea mas formal el staff en la web xD? gracias!!!

    5 participantes

    8[Html] Sistema de flag gesior maya 2015 Empty Re: [Html] Sistema de flag gesior maya 2015 Miér Jun 30, 2021 8:20 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Morfar escribió:Excelente gracias! es posible crear el outfitter en el team.php para gesior antiguo para que se vea mas formal el staff en la web xD? gracias!!!

    nos explica con una imagen para entender



    [Html] Sistema de flag gesior maya 2015 YNU5B25
    5 participantes
    http://www.tibiaface.com

    9[Html] Sistema de flag gesior maya 2015 Empty Re: [Html] Sistema de flag gesior maya 2015 Miér Jun 30, 2021 2:20 pm

    Morfar

    Morfar
    Miembro
    Miembro
    Asi como en esta web de este ot bro, intente hacerlo pero no se porque me aparece solo el outfit blanco del citizen y en highscores y en whoisonline.php si pude.

    [Html] Sistema de flag gesior maya 2015 Outfit10

    5 participantes

    Contenido patrocinado


    5 participantes

    Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje (Página 1 de 1.)

    Permisos de este foro:
    No puedes responder a temas en este foro.

     

    BienvenidosTibiaFace es una comunidad de Open Tibia. Para participar debes estar registrado (click para Regístrate).