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 queuetask {
var $playerId = null;
var $villageId = null;
var $toPlayerId = null;
var $toVillageId = null;
var $taskType = null;
var $threads = null;
var $executionTime = null;
var $procParams = null;
var $buildingId = null;
var $tag = null;
function queuetask($taskType, $playerId, $executionTime) {
$this->threads = 1;
$this->taskType = $taskType;
$this->playerId = $playerId;
$this->executionTime = $executionTime;
}
function iscancelabletask($taskType) {
switch ($taskType) {
case QS_ACCOUNT_DELETE: {
}
case QS_BUILD_CREATEUPGRADE: {
}
case QS_BUILD_DROP: {
}
case QS_WAR_REINFORCE: {
}
case QS_WAR_ATTACK: {
}
case QS_WAR_ATTACK_PLUNDER: {
}
case QS_WAR_ATTACK_SPY: {
}
case QS_LEAVEOASIS: {
return TRUE;
}
}
return FALSE;
}
function getmaxcanceltimeout($taskType) {
switch ($taskType) {
case QS_ACCOUNT_DELETE: {
return 86400;
}
case QS_WAR_REINFORCE: {
}
case QS_WAR_ATTACK: {
}
case QS_WAR_ATTACK_PLUNDER: {
}
case QS_WAR_ATTACK_SPY: {
return 90;
}
}
return 0 - 1;
}
}
class reporthelper {
function getreportresulttext($result) {
switch ($result) {
case 1: {
}
}
return '';
}
function getreportactiontext($cat) {
switch ($cat) {
case 1: {
}
}
return ' يمون ';
}
}
class player {
var $playerId = null;
var $isAgent = null;
.......
...
Please Log in or Create an account to join the conversation.