mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
29 lines
1.6 KiB
Smarty
29 lines
1.6 KiB
Smarty
<?php
|
|
////////////// made by alq0rsan, improved by evader /////////////////////////
|
|
if($session->access != BANNED && $session->gold >= 5){
|
|
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
|
|
$golds = mysqli_fetch_array($MyGold);
|
|
if($session->sit == 0) {
|
|
if (mysqli_num_rows($MyGold)) {
|
|
if($golds['gold'] >= 5) {
|
|
if($golds['b3'] < time()) {
|
|
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set b3 = '".(time()+PLUS_PRODUCTION)."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
|
|
} else {
|
|
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set b3 = '".($golds['b3']+PLUS_PRODUCTION)."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
|
|
}
|
|
$done1 = "+25% Production: Iron";
|
|
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set gold = ".($session->gold-5)." where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
|
|
mysqli_query($GLOBALS['link'],"INSERT INTO ".TB_PREFIX."gold_fin_log (wid,log) VALUES ('".$village->wid."', '+25% Production: Iron')") or die(mysqli_error($database->dblink));
|
|
} else {
|
|
$done1 = "You need more gold";
|
|
}
|
|
} else {
|
|
$done1 = "Failed iron attempt";
|
|
mysqli_query($GLOBALS['link'],"INSERT INTO ".TB_PREFIX."gold_fin_log (wid,log) VALUES ('".$village->wid."', 'Failed +25% Production: Iron')") or die(mysqli_error($database->dblink));
|
|
}
|
|
}
|
|
header("Location: plus.php?id=3");
|
|
} else {
|
|
header("Location: banned.php");
|
|
}
|
|
?> |