Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

Rekomendowane odpowiedzi

Opublikowano

Witam. Postawiłem serwer Ogame na silniku xnova1.1a pl. wszystko działa fajnie oprócz floty. Gdy chce wysłać flotę lub transport pojawia się błąd w którym pisze "żadnych przecinków itd tylko liczby"

 

Oto screen:

9f89e106f642216cm.jpg

 

a tu jest plik floten 3.php:

<?php

 

/**

* floten3.php

*

* @version 1.0

* @copyright 2008 by Chlorel for XNova

*/

 

define('INSIDE' , true);

define('INSTALL' , false);

 

$xnova_root_path = './';

include($xnova_root_path . 'extension.inc');

include($xnova_root_path . 'common.' . $phpEx);

 

$dpath = (!$user["dpath"]) ? DEFAULT_SKINPATH : $user["dpath"];

 

includeLang('fleet');

 

$CurrentPlanet = doquery("SELECT * FROM {{table}} WHERE `id` = '". $user['current_planet'] ."'", 'planets', true);

$TargetPlanet = doquery("SELECT * FROM {{table}} WHERE `galaxy` = '". $_POST['galaxy'] ."' AND `system` = '". $_POST['system'] ."' AND `planet` = '". $_POST['planet'] ."' AND `planet_type` = '". $_POST['planettype'] ."';", 'planets', true);

$MyDBRec = doquery("SELECT * FROM {{table}} WHERE `id` = '". $user['id']."';", 'users', true);

 

$protection = $game_config['noobprotection'];

$protectiontime = $game_config['noobprotectiontime'];

$protectionmulti = $game_config['noobprotectionmulti'];

if ($protectiontime < 1) {

$protectiontime = 9999999999999999;

}

 

$fleetarray = unserialize(base64_decode(str_rot13($_POST["usedfleet"])));

 

if (!is_array($fleetarray)) {

message ("<font color=\"red\"><b>". $lang['fl_fleet_err'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

// On verifie s'il y a assez de vaisseaux sur la planete !

foreach ($fleetarray as $Ship => $Count) {

if ($Count > $CurrentPlanet[$resource[$Ship]]) {

message ("<font color=\"red\"><b>". $lang['fl_fleet_err'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

}

 

$error = 0;

$galaxy = intval($_POST['galaxy']);

$system = intval($_POST['system']);

$planet = intval($_POST['planet']);

$planettype = intval($_POST['planettype']);

$fleetmission = $_POST['mission'];

$_POST['resource1'] = round($_POST['resource1']);

$_POST['resource2'] = round($_POST['resource2']);

$_POST['resource3'] = round($_POST['resource3']);

 

if ($planettype != 1 && $planettype != 2 && $planettype != 3) {

message ("<font color=\"red\"><b>". $lang['fl_fleet_err_pl'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

if ($fleetmission == 8) {

$YourPlanet = false;

$UsedPlanet = false;

$select = doquery("SELECT * FROM {{table}} WHERE galaxy = '". $galaxy ."' AND system = '". $system ."' AND planet = '". $planet ."'", "planets");

} else {

$YourPlanet = false;

$UsedPlanet = false;

$select = doquery("SELECT * FROM {{table}} WHERE galaxy = '". $galaxy ."' AND system = '". $system ."' AND planet = '". $planet ."' AND planet_type = '". $planettype ."'", "planets");

}

 

if ($_POST['ship210'] >= 1) {

if ($fleetmission == 6) {

if ($_POST['ship202'] >= 1 ||

$_POST['ship203'] >= 1 ||

$_POST['ship204'] >= 1 ||

$_POST['ship205'] >= 1 ||

$_POST['ship206'] >= 1 ||

$_POST['ship207'] >= 1 ||

$_POST['ship211'] >= 1 ||

$_POST['ship213'] >= 1 ||

$_POST['ship214'] >= 1 ||

$_POST['ship215'] >= 1 ||

$_POST['ship216'] >= 1 ||

$_POST['ship217'] >= 1 ||

$_POST['ship218'] >= 1 ||

$_POST['ship219'] >= 1 ) {

 

message("Przepraszamy ale proby wysylania floty z misja szpieguj z inna flota niz sondy szpiegowskie moga zakonczyc sie utrata calosci lecacej floty","Blokada");

}

}

}

 

if ($CurrentPlanet['galaxy'] == $galaxy &&

$CurrentPlanet['system'] == $system &&

$CurrentPlanet['planet'] == $planet &&

$CurrentPlanet['planet_type'] == $planettype) {

message ("<font color=\"red\"><b>". $lang['fl_ownpl_err'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

// Test d'existance de l'enregistrement dans la gaalxie !

if ($_POST['mission'] != 15) {

if (mysql_num_rows($select) < 1 && $fleetmission != 7) {

message ("<font color=\"red\"><b>". $lang['fl_unknow_target'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

} elseif ($fleetmission == 9 && mysql_num_rows($select) < 1) {

message ("<font color=\"red\"><b>". $lang['fl_used_target'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

} else {

$EnvoiMaxExpedition = $_POST['maxepedition'];

$Expedition = $_POST['curepedition'];

 

if ($EnvoiMaxExpedition == 0 ) {

message ("<font color=\"red\"><b>". $lang['fl_expe_notech'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

} elseif ($Expedition >= $EnvoiMaxExpedition ) {

message ("<font color=\"red\"><b>". $lang['fl_expe_max'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

}

 

$select = mysql_fetch_array($select);

 

if ($select['id_owner'] == $user['id']) {

$YourPlanet = true;

$UsedPlanet = true;

} elseif (!empty($select['id_owner'])) {

$YourPlanet = false;

$UsedPlanet = true;

} else {

$YourPlanet = false;

$UsedPlanet = false;

}

 

// Determinons les type de missions possibles par rapport a la planete cible

if ($fleetmission == 15) {

// Gestion des Exp�ditions

$missiontype = array(15 => $lang['type_mission'][15]);

} else {

if ($_POST['planettype'] == "2") {

if ($_POST['ship209'] >= 1) {

$missiontype = array(8 => $lang['type_mission'][8]);

} else {

$missiontype = array();

}

} elseif ($_POST['planettype'] == "1" || $_POST['planettype'] == "3") {

if ($_POST['ship208'] >= 1 && !$UsedPlanet) {

$missiontype = array(7 => $lang['type_mission'][7]);

} elseif ($_POST['ship210'] >= 1 && !$YourPlanet) {

$missiontype = array(6 => $lang['type_mission'][6]);

}

 

if ($_POST['ship202'] >= 1 ||

$_POST['ship203'] >= 1 ||

$_POST['ship204'] >= 1 ||

$_POST['ship205'] >= 1 ||

$_POST['ship206'] >= 1 ||

$_POST['ship207'] >= 1 ||

$_POST['ship210'] >= 1 ||

$_POST['ship211'] >= 1 ||

$_POST['ship213'] >= 1 ||

$_POST['ship214'] >= 1 ||

$_POST['ship215'] >= 1 ||

$_POST['ship216'] >= 1 ||

$_POST['ship217'] >= 1 ||

$_POST['ship218'] >= 1 ||

$_POST['ship219'] >= 1 ||

$_POST['ship220'] >= 1 ||

$_POST['ship230'] >= 1 ) {

if (!$YourPlanet) {

$missiontype[1] = $lang['type_mission'][1];

}

$missiontype[3] = $lang['type_mission'][3];

}

 

if ( ($_POST['ship202'] >= 1 ||

$_POST['ship203'] ) &&

!$YourPlanet &&

$UsedPlanet) {

$missiontype[5] = $lang['type_mission'][5];

}

 

} elseif ($_POST['ship209'] >= 1 || $_POST['ship208']) {

$missiontype[3] = $lang['type_mission'][3];

}

if ($YourPlanet)

$missiontype[4] = $lang['type_mission'][4];

 

if ( $_POST['planettype'] == 3 &&

($_POST['ship214'] ||

$_POST['ship213']) &&

!$YourPlanet &&

$UsedPlanet) {

$missiontype[2] = $lang['type_mission'][2];

}

if ( $_POST['planettype'] == 3 &&

$_POST['ship214'] >= 1 &&

!$YourPlanet &&

$UsedPlanet) {

$missiontype[9] = $lang['type_mission'][9];

}

}

 

if (empty($missiontype[$fleetmission])) {

message ("<font color=\"red\"><b>". $lang['fl_bad_mission'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

CheckPlanetUsedFields($CurrentPlanet);

 

if ($TargetPlanet['id_owner'] == '') {

$HeDBRec = $MyDBRec;

} elseif ($TargetPlanet['id_owner'] != '') {

$HeDBRec = doquery("SELECT * FROM {{table}} WHERE `id` = '". $TargetPlanet['id_owner'] ."';", 'users', true);

}

 

$UserPoints = doquery("SELECT * FROM {{table}} WHERE `stat_type` = '1' AND `stat_code` = '1' AND `id_owner` = '". $MyDBRec['id'] ."';", 'statpoints', true);

$User2Points = doquery("SELECT * FROM {{table}} WHERE `stat_type` = '1' AND `stat_code` = '1' AND `id_owner` = '". $HeDBRec['id'] ."';", 'statpoints', true);

 

$MyGameLevel = $UserPoints['total_points'];

$HeGameLevel = $User2Points['total_points'];

$VacationMode = $HeDBRec['urlaubs_modus'];

 

if ($MyGameLevel > ($HeGameLevel * $protectionmulti) AND

$TargetPlanet['id_owner'] != '' AND

$_POST['mission'] == 1 AND

$protection == 1 AND

$HeGameLevel < ($protectiontime * 1000)) {

message("<font color=\"lime\"><b>".$lang['fl_noob_mess_n']."</b></font>", $lang['fl_noob_title'], "fleet." . $phpEx, 2);

}

 

if ($MyGameLevel > ($HeGameLevel * $protectionmulti) AND

$TargetPlanet['id_owner'] != '' AND

$_POST['mission'] == 5 AND

$protection == 1 AND

$HeGameLevel < ($protectiontime * 1000)) {

message("<font color=\"lime\"><b>".$lang['fl_noob_mess_n']."</b></font>", $lang['fl_noob_title'], "fleet." . $phpEx, 2);

}

 

if ($MyGameLevel > ($HeGameLevel * $protectionmulti) AND

$TargetPlanet['id_owner'] != '' AND

$_POST['mission'] == 6 AND

$protection == 1 AND

$HeGameLevel < ($protectiontime * 1000)) {

message("<font color=\"lime\"><b>".$lang['fl_noob_mess_n']."</b></font>", $lang['fl_noob_title'], "fleet." . $phpEx, 2);

}

 

if (($MyGameLevel * $protectionmulti) < $HeGameLevel AND

$TargetPlanet['id_owner'] != '' AND

$_POST['mission'] == 1 AND

$protection == 1 AND

$MyGameLevel < ($protectiontime * 1000)) {

message("<font color=\"lime\"><b>".$lang['fl_noob_mess_n']."</b></font>", $lang['fl_noob_title'], "fleet." . $phpEx, 2);

}

 

if (($MyGameLevel * $protectionmulti) < $HeGameLevel AND

$TargetPlanet['id_owner'] != '' AND

$_POST['mission'] == 5 AND

$protection == 1 AND

$MyGameLevel < ($protectiontime * 1000)) {

message("<font color=\"lime\"><b>".$lang['fl_noob_mess_n']."</b></font>", $lang['fl_noob_title'], "fleet." . $phpEx, 2);

}

 

if (($MyGameLevel * $protectionmulti) < $HeGameLevel AND

$TargetPlanet['id_owner'] != '' AND

$_POST['mission'] == 6 AND

$protection == 1 AND

$MyGameLevel < ($protectiontime * 1000)) {

message("<font color=\"lime\"><b>".$lang['fl_noob_mess_n']."</b></font>", $lang['fl_noob_title'], "fleet." . $phpEx, 2);

}

 

if ($VacationMode AND $_POST['mission'] != 8) {

message("<font color=\"lime\"><b>".$lang['fl_vacation_pla']."</b></font>", $lang['fl_vacation_ttl'], "fleet." . $phpEx, 2);

}

 

if ($MyDBRec['ally_id'] == $HeDBRec['ally_id'] && $MyDBRec['ally_id'] <> 0 && $HeDBRec['ally_id'] <> 0) {

if ($_POST['mission'] == 1) {

message("Nie mozna atakowac czlonkow wlasnego sojuszu");

die();

}

}

 

if($HeDBRec['bana'] == 1) {

message('Ta osoba posiada bana! Nie możesz jej atakować!','Błąd');

}

if($HeDBRec['urlaubs_modus'] == 1) {

message('Ta osoba jest na urlopie! Nie możesz jej atakować!','Błąd');

}

 

if(!is_numeric($_POST['resource1'])){

message('zadnych przecinków itp tylko cyfry','ERROR','fleet.php','2');

}

if(!is_numeric($_POST['resource2'])){

message('zadnych przecinków itp tylko cyfry','ERROR','fleet.php','2');

}

if(!is_numeric($_POST['resource3'])){

message('zadnych przecinków itp tylko cyfry','ERROR','fleet.php','2');

}

if(!ctype_digit($_POST['resource1'])){

message('zadnych przecinków itp tylko cyfry','ERROR','fleet.php','2');

}

if(!ctype_digit($_POST['resource2'])){

message('zadnych przecinków itp tylko cyfry','ERROR','fleet.php','2');

}

if(!ctype_digit($_POST['resource3'])){

message('zadnych przecinków itp tylko cyfry','ERROR','fleet.php','2');

}

 

$FlyingFleets = mysql_fetch_assoc(doquery("SELECT COUNT(fleet_id) as Number FROM {{table}} WHERE `fleet_owner`='{$user['id']}'", 'fleets'));

$ActualFleets = $FlyingFleets["Number"];

if (($user[$resource[108]] + 1) <= $ActualFleets) {

message("Dostępny slot nr", "Erreur", "fleet." . $phpEx, 1);

}

 

if ($_POST['resource1'] + $_POST['resource2'] + $_POST['resource3'] < 1 AND $_POST['mission'] == 3) {

message("<font color=\"lime\"><b>".$lang['fl_noenoughtgoods']."</b></font>", $lang['type_mission'][3], "fleet." . $phpEx, 1);

}

if ($_POST['mission'] != 15) {

if ($TargetPlanet['id_owner'] == '' AND $_POST['mission'] < 7) {

message ("<font color=\"red\"><b>". $lang['fl_bad_planet01'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

if ($TargetPlanet['id_owner'] != '' AND $_POST['mission'] == 7) {

message ("<font color=\"red\"><b>". $lang['fl_bad_planet02'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

if ($HeDBRec['ally_id'] != $MyDBRec['ally_id'] AND $_POST['mission'] == 4) {

message ("<font color=\"red\"><b>". $lang['fl_dont_stay_here'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

if ($TargetPlanet['ally_deposit'] < 1 AND $HeDBRec != $MyDBRec AND $_POST['mission'] == 5) {

message ("<font color=\"red\"><b>". $lang['fl_no_allydeposit'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

if (($TargetPlanet["id_owner"] == $CurrentPlanet["id_owner"]) AND ($_POST["mission"] == 1)) {

message ("<font color=\"red\"><b>". $lang['fl_no_self_attack'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

if (($TargetPlanet["id_owner"] == $CurrentPlanet["id_owner"]) AND ($_POST["mission"] == 6)) {

message ("<font color=\"red\"><b>". $lang['fl_no_self_spy'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

if (($TargetPlanet["id_owner"] != $CurrentPlanet["id_owner"]) AND ($_POST["mission"] == 4)) {

message ("<font color=\"red\"><b>". $lang['fl_only_stay_at_home'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

}

 

$missiontype = array(

1 => $lang['type_mission'][1],

2 => $lang['type_mission'][2],

3 => $lang['type_mission'][3],

4 => $lang['type_mission'][4],

5 => $lang['type_mission'][5],

6 => $lang['type_mission'][6],

7 => $lang['type_mission'][7],

8 => $lang['type_mission'][8],

9 => $lang['type_mission'][9],

15 => $lang['type_mission'][15],

);

 

$speed_possible = array(10, 9, 8, 7, 6, 5, 4, 3, 2, 1);

 

$AllFleetSpeed = GetFleetMaxSpeed ($fleetarray, 0, $user);

$GenFleetSpeed = $_POST['speed'];

$SpeedFactor = $_POST['speedfactor'];

$MaxFleetSpeed = min($AllFleetSpeed);

 

if (!in_array($GenFleetSpeed, $speed_possible)) {

message ("<font color=\"red\"><b>". $lang['fl_cheat_speed'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

$CurrentPlanet = doquery("SELECT * FROM {{table}} WHERE `id` = '".$user['current_planet']."';", 'planets', true);

 

if ($MaxFleetSpeed != $_POST['speedallsmin']) {

message ("<font color=\"red\"><b>". $lang['fl_cheat_speed'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

if (!$_POST['planettype']) {

message ("<font color=\"red\"><b>". $lang['fl_no_planet_type'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

// Test de coherance de la destination (voir si elle se trouve dans les limites de l'univers connu

$error = 0;

$errorlist = "";

if (!$_POST['galaxy'] || !is_numeric($_POST['galaxy']) || $_POST['galaxy'] > 9 || $_POST['galaxy'] < 1) {

$error++;

$errorlist .= $lang['fl_limit_galaxy'];

}

if (!$_POST['system'] || !is_numeric($_POST['system']) || $_POST['system'] > 499 || $_POST['system'] < 1) {

$error++;

$errorlist .= $lang['fl_limit_system'];

}

if (!$_POST['planet'] || !is_numeric($_POST['planet']) || $_POST['planet'] > 16 || $_POST['planet'] < 1) {

$error++;

$errorlist .= $lang['fl_limit_planet'];

}

 

if ($error > 0) {

message ("<font color=\"red\"><ul>" . $errorlist . "</ul></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

// La flotte part bien de la planete courrante ??

if ($_POST['thisgalaxy'] != $CurrentPlanet['galaxy'] |

$_POST['thissystem'] != $CurrentPlanet['system'] |

$_POST['thisplanet'] != $CurrentPlanet['planet'] |

$_POST['thisplanettype'] != $CurrentPlanet['planet_type']) {

message ("<font color=\"red\"><b>". $lang['fl_cheat_origine'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

if (!isset($fleetarray)) {

message ("<font color=\"red\"><b>". $lang['fl_no_fleetarray'] ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

$distance = GetTargetDistance ( $_POST['thisgalaxy'], $_POST['galaxy'], $_POST['thissystem'], $_POST['system'], $_POST['thisplanet'], $_POST['planet'] );

$duration = GetMissionDuration ( $GenFleetSpeed, $MaxFleetSpeed, $distance, $SpeedFactor );

$consumption = GetFleetConsumption ( $fleetarray, $SpeedFactor, $duration, $distance, $MaxFleetSpeed, $user );

 

$fleet['start_time'] = $duration + time();

if ($_POST['mission'] == 15) {

$StayDuration = $_POST['expeditiontime'] * 3600;

$StayTime = $fleet['start_time'] + $_POST['expeditiontime'] * 3600;

} elseif ($_POST['mission'] == 5) {

$StayDuration = $_POST['holdingtime'] * 3600;

$StayTime = $fleet['start_time'] + $_POST['holdingtime'] * 3600;

} else {

$StayDuration = 0;

$StayTime = 0;

}

$fleet['end_time'] = $StayDuration + (2 * $duration) + time();

$FleetStorage = 0;

$FleetShipCount = 0;

$fleet_array = "";

$FleetSubQRY = "";

 

foreach ($fleetarray as $Ship => $Count) {

$FleetStorage += $pricelist[$Ship]["capacity"] * $Count;

$FleetShipCount += $Count;

$fleet_array .= $Ship .",". $Count .";";

$FleetSubQRY .= "`".$resource[$Ship] . "` = `" . $resource[$Ship] . "` - " . $Count . " , ";

}

 

$FleetStorage -= $consumption;

$StorageNeeded = 0;

if ($_POST['resource1'] < 1) {

$TransMetal = 0;

} else {

$TransMetal = $_POST['resource1'];

$StorageNeeded += $TransMetal;

}

if ($_POST['resource2'] < 1) {

$TransCrystal = 0;

} else {

$TransCrystal = $_POST['resource2'];

$StorageNeeded += $TransCrystal;

}

if ($_POST['resource3'] < 1) {

$TransDeuterium = 0;

} else {

$TransDeuterium = $_POST['resource3'];

$StorageNeeded += $TransDeuterium;

}

 

$StockMetal = $CurrentPlanet['metal'];

$StockCrystal = $CurrentPlanet['crystal'];

$StockDeuterium = $CurrentPlanet['deuterium'];

$StockDeuterium -= $consumption;

 

$StockOk = false;

if ($StockMetal >= $TransMetal) {

if ($StockCrystal >= $TransCrystal) {

if ($StockDeuterium >= $TransDeuterium) {

$StockOk = true;

}

}

}

if ( !$StockOk ) {

message ("<font color=\"red\"><b>". $lang['fl_noressources'] . pretty_number($consumption) ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

if ( $StorageNeeded > $FleetStorage) {

message ("<font color=\"red\"><b>". $lang['fl_nostoragespa'] . pretty_number($StorageNeeded - $FleetStorage) ."</b></font>", $lang['fl_error'], "fleet." . $phpEx, 2);

}

 

if ($TargetPlanet['id_level'] > $user['authlevel']) {

$Allowed = true;

switch ($_POST['mission']){

case 1:

case 2:

case 6:

case 9:

$Allowed = false;

break;

case 3:

case 4:

case 5:

case 7:

case 8:

case 15:

break;

default:

}

if ($Allowed == false) {

message ("<font color=\"red\"><b>". $lang['fl_adm_attak'] ."</b></font>", $lang['fl_warning'], "fleet." . $phpEx, 2);

}

}

 

// ecriture de l'enregistrement de flotte (a partir de l�, y a quelque chose qui vole et c'est toujours sur la planete d'origine)

$QryInsertFleet = "INSERT INTO {{table}} SET ";

$QryInsertFleet .= "`fleet_owner` = '". $user['id'] ."', ";

$QryInsertFleet .= "`fleet_mission` = '". $_POST['mission'] ."', ";

$QryInsertFleet .= "`fleet_amount` = '". $FleetShipCount ."', ";

$QryInsertFleet .= "`fleet_array` = '". $fleet_array ."', ";

$QryInsertFleet .= "`fleet_start_time` = '". $fleet['start_time'] ."', ";

$QryInsertFleet .= "`fleet_start_galaxy` = '". intval($_POST['thisgalaxy']) ."', ";

$QryInsertFleet .= "`fleet_start_system` = '". intval($_POST['thissystem']) ."', ";

$QryInsertFleet .= "`fleet_start_planet` = '". intval($_POST['thisplanet']) ."', ";

$QryInsertFleet .= "`fleet_start_type` = '". intval($_POST['thisplanettype']) ."', ";

$QryInsertFleet .= "`fleet_end_time` = '". $fleet['end_time'] ."', ";

$QryInsertFleet .= "`fleet_end_stay` = '". $StayTime ."', ";

$QryInsertFleet .= "`fleet_end_galaxy` = '". intval($_POST['galaxy']) ."', ";

$QryInsertFleet .= "`fleet_end_system` = '". intval($_POST['system']) ."', ";

$QryInsertFleet .= "`fleet_end_planet` = '". intval($_POST['planet']) ."', ";

$QryInsertFleet .= "`fleet_end_type` = '". intval($_POST['planettype']) ."', ";

$QryInsertFleet .= "`fleet_resource_metal` = '". $TransMetal ."', ";

$QryInsertFleet .= "`fleet_resource_crystal` = '". $TransCrystal ."', ";

$QryInsertFleet .= "`fleet_resource_deuterium` = '". $TransDeuterium ."', ";

$QryInsertFleet .= "`fleet_target_owner` = '". $TargetPlanet['id_owner'] ."', ";

$QryInsertFleet .= "`start_time` = '". time() ."';";

doquery( $QryInsertFleet, 'fleets');

 

 

$CurrentPlanet["metal"] = $CurrentPlanet["metal"] - $TransMetal;

$CurrentPlanet["crystal"] = $CurrentPlanet["crystal"] - $TransCrystal;

$CurrentPlanet["deuterium"] = $CurrentPlanet["deuterium"] - $TransDeuterium;

$CurrentPlanet["deuterium"] = $CurrentPlanet["deuterium"] - $consumption;

 

$QryUpdatePlanet = "UPDATE {{table}} SET ";

$QryUpdatePlanet .= $FleetSubQRY;

$QryUpdatePlanet .= "`metal` = '". $CurrentPlanet["metal"] ."', ";

$QryUpdatePlanet .= "`crystal` = '". $CurrentPlanet["crystal"] ."', ";

$QryUpdatePlanet .= "`deuterium` = '". $CurrentPlanet["deuterium"] ."' ";

$QryUpdatePlanet .= "WHERE ";

$QryUpdatePlanet .= "`id` = '". $CurrentPlanet['id'] ."'";

 

// Mise a jours de l'enregistrement de la planete de depart (a partir de là, y a quelque chose qui vole et ce n'est plus sur la planete de depart)

doquery("LOCK TABLE {{table}} WRITE", 'planets');

doquery ($QryUpdatePlanet, "planets");

doquery("UNLOCK TABLES", '');

// doquery("FLUSH TABLES", '');

 

// Un peu de blabla pour l'utilisateur, affichage d'un joli tableau de la flotte expedi�e

$page = "<br><div><center>";

$page .= "<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"519\">";

$page .= "<tr height=\"20\">";

$page .= "<td class=\"c\" colspan=\"2\"><span class=\"success\">". $lang['fl_fleet_send'] ."</span></td>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_mission'] ."</th>";

$page .= "<th>". $missiontype[$_POST['mission']] ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_dist'] ."</th>";

$page .= "<th>". pretty_number($distance) ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_speed'] ."</th>";

$page .= "<th>". pretty_number($_POST['speedallsmin']) ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_deute_need'] ."</th>";

$page .= "<th>". pretty_number($consumption) ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_from'] ."</th>";

$page .= "<th>". $_POST['thisgalaxy'] .":". $_POST['thissystem']. ":". $_POST['thisplanet'] ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_dest'] ."</th>";

$page .= "<th>". $_POST['galaxy'] .":". $_POST['system'] .":". $_POST['planet'] ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_time_go'] ."</th>";

$page .= "<th>". date("M D d H:i:s", $fleet['start_time']) ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['fl_time_back'] ."</th>";

$page .= "<th>". date("M D d H:i:s", $fleet['end_time']) ."</th>";

$page .= "</tr><tr height=\"20\">";

$page .= "<td class=\"c\" colspan=\"2\">". $lang['fl_title'] ."</td>";

 

foreach ($fleetarray as $Ship => $Count) {

$page .= "</tr><tr height=\"20\">";

$page .= "<th>". $lang['tech'][$Ship] ."</th>";

$page .= "<th>". pretty_number($Count) ."</th>";

}

$page .= "</tr></table></div></center>";

 

// Provisoire

sleep (1);

 

$planetrow = doquery ("SELECT * FROM {{table}} WHERE `id` = '". $CurrentPlanet['id'] ."';", 'planets', true);

 

display($page, $lang['fl_title']);

 

// Updated by Chlorel. 16 Jan 2008 (String extraction, bug corrections, code uniformisation

// Updated by -= MoF =- for Deutsches Ugamela Forum

// 06.12.2007 - 08:39

// Open Source

// © by MoF

 

?>

 

Ktoś wie jak rozwiązać ten problem?

Kocham mpcforum.pl!!!

18706.png

Jeśli chcesz dodać odpowiedź, zaloguj się lub zarejestruj nowe konto

Jedynie zarejestrowani użytkownicy mogą komentować zawartość tej strony.

Zarejestruj nowe konto

Załóż nowe konto. To bardzo proste!

Zarejestruj się

Zaloguj się

Zaloguj się poniżej.

Zaloguj się
×
×
  • Dodaj nową pozycję...