Просмотр файла game/talant.php

Размер файла: 6.48Kb
<?php

include'inc/conf.php';
session_start();
$sql = mysql_query("SELECT * FROM `users` WHERE `id` = '".$_SESSION['id']."' ");
$row = mysql_fetch_array($sql);

$pass = htmlspecialchars(stripslashes($_SESSION['pass']));
$id = htmlspecialchars(stripslashes($_SESSION['id']));
if ($id == $row['id'] and md5($pass)==$row['pass']){

$go=trim(htmlspecialchars(stripslashes($_GET['go'])));
if(empty($_GET)){

$title='Таланты';
include'inc/up.php';
echo'

<div class="under"><table><tbody><tr><td style="width:1%;vertical-align:top;">
<img class="ico" src="img/talent/krit.png" border="0"/>
</td><td style="vertical-align:top;">
<a href="talant.php?go=krit">Критический удар</a>
<br/><small>Шанс: <font color="#8c3636">'.$row['krit'].'%</font></span>
</td></tr></tbody></table></div>
<div class="under"><table><tbody><tr><td style="width:1%;vertical-align:top;">
<img class="ico" src="img/talent/predok.png" border="0"/>
</td><td style="vertical-align:top;">
<a href="talant.php?go=exp">Опыт предков</a>
<br/><small>Получаемы опыт: <font color="#8c3636">+'.$row['predok'].'%</font></span>
</td></tr></tbody></table></div>
<div class="under"><table><tbody><tr><td style="width:1%;vertical-align:top;">
<img class="ico" src="img/talent/power.png" border="0"/>
</td><td style="vertical-align:top;">
<a href="talant.php?go=power">Храброе сердце</a>
<br/><small>Сила атаки: <font color="#8c3636">+'.$row['serdce'].'%</font></span>
</td></tr></tbody></table>

</div>

';




echo'<div class="rek">Таланты - увеличивают ваши навыки, такие как Критический удар, Получаемый опыта, Силу атаки </div>';



}elseif($go=='krit'){

$title='Критический удар';
include'inc/up.php';
if($row['krit']<=5){
$status='Обычный';
}
if($row['krit']>=6 and $row['krit'] <=12){
$status='Легегдарный';
}
if($row['krit']>=13){
$status='Пиратский';
}
echo'<div class="under">
<img class="ico" src="img/talent/krit.png"><strong>Критический удар</strong><br/>
<font color="#dbb400">'.$status.'</font></div><div class="under">
Шанс нанести Критический удар: <font color="#368c39">'.$row['krit'].'%</font>
</div>
';

echo'<div class="under">';

if($row['talant']>=1 and $row['krit']<=20){

echo'<img src="img/pics/dir.png" alt=""><a href="talant.php?go=up_krit">Улучшить навык за 1 <img class="ico" src="img/pics/skil.png" alt="Т"></a>';


}else{
echo'Чтобы улучшить талант необхолимы <font color="#8c3636">очки талантов</font>. С каждым новым уровнем Вы получаете 2 очка.';

}


echo'</div>';

echo'<div class="under">Вы имеете <strong>'.$row['talant'].'</strong> очков.</div>';
}
elseif($go=='up_krit'){
if($row['talant']>=1 and $row['krit']<=20){
$talant=$row['talant']-1;
$krit=$row['krit']+1;
$sql=mysql_query("UPDATE `users` SET `talant`='".$talant."', `krit`='".$krit."'");

if($sql){
header("Location: talant.php?go=krit&ok=ok"); exit;
}else{
header("Location: talant.php?go=krit&ok=err"); exit;

}


}



}
////////////////////////////////////////////
/////////////////////////////////////////////


elseif($go=='exp'){

$title='Опыт предков';
include'inc/up.php';
if($row['predok']<=5){
$status='Обычный';
}
if($row['predok']>=6 and $row['predok'] <=12){
$status='Легегдарный';
}
if($row['predok']>=13){
$status='Пиратский';
}
echo'<div class="under">
<img class="ico" src="img/talent/predok.png"><strong>Опыт Предков</strong><br/>
<font color="#dbb400">'.$status.'</font></div><div class="under">
Получаемый опыт увеличевается на: <font color="#368c39">'.$row['predok'].'%</font>
</div>
';

echo'<div class="under">';

if($row['talant']>=1 and $row['predok']<=20){

echo'<img src="img/pics/dir.png" alt=""><a href="talant.php?go=up_exp">Улучшить навык за 1 <img class="ico" src="img/pics/skil.png" alt="Т"></a>';


}else{
echo'Чтобы улучшить талант необхолимы <font color="#8c3636">очки талантов</font>. С каждым новым уровнем Вы получаете 2 очка.';

}


echo'</div>';

echo'<div class="under">Вы имеете <strong>'.$row['talant'].'</strong> очков.</div>';
}
elseif($go=='up_exp'){
if($row['talant']>=1 and $row['predok']<=20){
$talant=$row['talant']-1;
$krit=$row['predok']+1;
$sql=mysql_query("UPDATE `users` SET `talant`='".$talant."', `predok`='".$krit."'");

if($sql){
header("Location: talant.php?go=exp&ok=ok"); exit;
}else{
header("Location: talant.php?go=exp&ok=err"); exit;

}


}



}


////////////////////////////////////////////
/////////////////////////////////////////////


elseif($go=='power'){

$title='Храброе сердце';
include'inc/up.php';
if($row['serdce']<=5){
$status='Обычный';
}
if($row['serdce']>=6 and $row['serdce'] <=12){
$status='Легегдарный';
}
if($row['serdce']>=13){
$status='Пиратский';
}
echo'<div class="under">
<img class="ico" src="img/talent/power.png"><strong>Храброе сердце</strong><br/>
<font color="#dbb400">'.$status.'</font></div><div class="under">
Ваша сила атаки увеличивается на: <font color="#368c39">'.$row['serdce'].'%</font>
</div>
';

echo'<div class="under">';

if($row['talant']>=1 and $row['serdce']<=20){

echo'<img src="img/pics/dir.png" alt=""><a href="talant.php?go=up_power">Улучшить навык за 1 <img class="ico" src="img/pics/skil.png" alt="Т"></a>';


}else{
echo'Чтобы улучшить талант необхолимы <font color="#8c3636">очки талантов</font>. С каждым новым уровнем Вы получаете 2 очка.';

}


echo'</div>';

echo'<div class="under">Вы имеете <strong>'.$row['talant'].'</strong> очков.</div>';
}
elseif($go=='up_power'){
if($row['talant']>=1 and $row['serdce']<=20){
$talant=$row['talant']-1;
$krit=$row['serdce']+1;
$sql=mysql_query("UPDATE `users` SET `talant`='".$talant."', `serdce`='".$krit."'");

if($sql){
header("Location: talant.php?go=power&ok=ok"); exit;
}else{
header("Location: talant.php?go=power&ok=err"); exit;

}


}



}




}
include'inc/foot.php';


?>