Over the past few months, we have received a lot of requests concerning the revision of our prices.
It’s now done on the batch file prices, with prices reduced by -60% on all our offers !
This offer will remain for life, even on our future services in preparation for file decompilation : PHP 8.0, 8.1, and more.
The Team DeZender
Please Log in or Create an account to join the conversation.
<?php
/**
*
* @ This file is created by deZender.Net
* @ deZender (PHP5 Decoder for ionCube Encoder)
*
* @ Version : 1.1.1.0
* @ Author : DeZender
* @ Release on : 2011.01.04
* @ Official site : http://DeZender.Net
*
*/
class gpage {
var $packageIndex = -1;
var $plusTable = null;
function gpage() {
securegamepage::securegamepage( );
$this->viewFile = 'plus.phtml';
$this->contentCssClass = 'plus';
$this->plusTable = $this->gameMetadata['plusTable'];
}
function load() {
securegamepage::load( );
$this->selectedTabIndex = ( ( ( ( isset( $_GET['t'] ) && is_numeric( $_GET['t'] ) ) && 0 <= intval( $_GET['t'] ) ) && intval( $_GET['t'] ) <= 2 ) ? intval( $_GET['t'] ) : 0 );
if ($this->selectedTabIndex == 0) {
$this->packageIndex = ( ( ( ( isset( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) && 0 < intval( $_GET['id'] ) ) && intval( $_GET['id'] ) <= sizeof( $this->appConfig['plus']['packages'] ) ) ? intval( $_GET['id'] ) - 1 : 0 - 1 );
return null;
}
if ($this->selectedTabIndex == 2) {
if (( ( ( isset( $_GET['a'] ) && isset( $_GET['k'] ) ) && $_GET['k'] == $this->data['update_key'] ) && $this->plusTable[intval( $_GET['a'] )]['cost'] <= $this->data['gold_num'] )) {
switch (intval( $_GET['a'] )) {
case 0: {
}
case 1: {
}
case 2: {
}
case 3: {
}
case 4: {
$taskType = constant( 'QS_PLUS' . ( intval( $_GET['a'] ) + 1 ) );
$newTask = new QueueTask( $taskType, $this->player->playerId, $this->plusTable[intval( $_GET['a'] )]['time'] * 86400 );
$newTask->villageId = ( 0 < intval( $_GET['a'] ) ? $this->data['selected_village_id'] : '' );
$newTask->tag = $this->plusTable[intval( $_GET['a'] )]['cost'];
$this->queueModel->addTask( $newTask );
break;
}
case 5: {
$this->queueModel->finishTasks( $this->player->playerId, $this->plusTable[intval( $_GET['a'] )]['cost'] );
}
}
}
}
}
function prerender() {
securegamepage::prerender( );
if (0 < $this->selectedTabIndex) {
$this->villagesLinkPostfix .= '&t=' . $this->selectedTabIndex;
}
}
function getremainingplustime($action) {
$time = 0;
$tasks = $this->queueModel->tasksInQueue;
if (isset( $tasks[constant( 'QS_PLUS' . ( $action + 1 ) )] )) {
$time = $tasks[constant( 'QS_PLUS' . ( $action + 1 ) )][0]['remainingSeconds'];
}
return ( 0 < $time ? 'باقي <span id="timer1">' . webhelper::secondstostring( $time ) . ' ساعة' : '' );
}
......................
.....
Please Log in or Create an account to join the conversation.