mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
1d677e8718
Add notice and winner refactor
51 lines
2.2 KiB
PHP
51 lines
2.2 KiB
PHP
<?php
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Project: TravianZ ##
|
|
## Filename celebration.php ##
|
|
## Developed by: Dzoki ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
|
|
## URLs: http://travian.shadowss.ro ##
|
|
## Source code: https://github.com/Shadowss/TravianZ ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
use App\Utils\AccessLogger;
|
|
|
|
include_once("GameEngine/Village.php");
|
|
AccessLogger::logRequest();
|
|
|
|
if(isset($_GET['newdid'])){
|
|
$_SESSION['wid'] = $_GET['newdid'];
|
|
header("Location: ".$_SERVER['PHP_SELF']);
|
|
exit;
|
|
}
|
|
if($village->resarray['f'.$_GET['id'].'t'] == 24 and $village->currentcel == 0){
|
|
if(!empty($_GET['type']) && $_GET['type'] == 1){
|
|
if(6400 <= $village->awood && 6650 <= $village->aclay && 5940 <= $village->airon && 1340 <= $village->acrop){
|
|
$endtime = ($sc[$village->resarray['f'.$_GET['id']]]/ SPEED) + time();
|
|
$wood = 6400;
|
|
$clay = 6650;
|
|
$iron = 5940;
|
|
$crop = 1340;
|
|
$database->modifyResource($village->resarray['vref'],$wood,$clay,$iron,$crop,$mode);
|
|
$database->addCel($village->resarray['vref'],$endtime,$_GET['type']);
|
|
}
|
|
}
|
|
elseif(!empty($_GET['type']) && $_GET['type'] == 2){
|
|
if(29700 <= $village->awood && 33250 <= $village->aclay && 32000 <= $village->airon && 6700 <= $village->acrop){
|
|
$endtime = ($gc[$village->resarray['f'.$_GET['id']]]/ SPEED) + time();
|
|
$wood= 29700;
|
|
$clay= 33250;
|
|
$iron= 32000;
|
|
$crop= 6700;
|
|
$database->modifyResource($village->resarray['vref'],$wood,$clay,$iron,$crop,$mode);
|
|
$database->addCel($village->resarray['vref'],$endtime,$_GET['type']);
|
|
}
|
|
}
|
|
}
|
|
header("Location: build.php?id=".$_GET['id']);
|
|
exit; |