sit == 0) { $uid = (int)$session->uid; $wid = (int)$village->wid; $now = time(); $cost = 5; // UPDATE atomic $sql = "UPDATE ".TB_PREFIX."users SET gold = gold - $cost, b3 = IF(b3 > $now, b3 + ".PLUS_PRODUCTION.", $now + ".PLUS_PRODUCTION.") WHERE id = $uid AND gold >= $cost"; mysqli_query($database->dblink, $sql); if(mysqli_affected_rows($database->dblink) == 1) { $session->gold -= $cost; $_SESSION['gold'] = $session->gold; $session->b3 = ($session->b3 > $now ? $session->b3 : $now) + PLUS_PRODUCTION; // LOG pentru a2b2 mysqli_query($database->dblink, "INSERT INTO ".TB_PREFIX."gold_fin_log (uid, wid, action, gold, time, details) VALUES ($uid, $wid, 'Use 5 gold for +25% Iron', -$cost, $now, '+25% Production: Iron')" ); if(method_exists($database, 'clearUserCache')) { $database->clearUserCache($uid); } } } header("Location: plus.php?id=3"); exit; ?>