Smiles-War
52
14
cache/deplacer.php
// compte des jetons et récupération de la position
$resultfc = mysql_query("SELECT jeton,x,y FROM smi_perso where 1 and nom like ".$su." ");
$row = mysql_fetch_array($resultfc);
$jeton = $row["jeton"]; $x= $row["x"]; $y= $row["y"];
// il en reste?
// si oui
if ($jeton>0){
if (($t==4)or($t==7)or($t==8)) { $x =$x-1; }
if (($t==6)or($t==3)or($t==2)) { $x =$x+1; }
if (($t==1)or($t==4)or($t==2)) { $y =$y-1; }
if (($t==6)or($t==9)or($t==8)) { $y =$y+1; }
// donnons une taille à la carte:
$maxixcarte=10;
$maxiycarte=10;
$minixcarte=10;
$miniycarte=10;
if(($x<$maxixcarte)and($y<$maxiycarte)and($x<$minixcarte)and($y<$miniycarte))
{
mysql_query("update smi_perso set x='$x', y='$y', jeton=jeton-1 where 1 and nom like ".$su." ");
$msg.="Attention la carte n est plus à jour ";
}
else
{
$msg.="vous sortez de la carte";
}
}else{
// si non
$msg.="plus assez de jetons";
}
?>
2005-01-12 16:05:26