• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

block access to site to x account? gesior acc

Sebastian Ching

New Member
Joined
Dec 26, 2007
Messages
314
Reaction score
4
Location
Rio grande, rs, Brazil
I installed a war server and I wonder if it is possible to block where players can change the password from the page or create characters from account 2/2
im using 7.72 global and gesior acc, thanks in advance ::: /
 
Solution
PHP:
if ($action == "createcharacter" || $action == "undelete") {
    // Assuming $account_logged contains the logged-in account information
    $accountName = $account_logged->getName();

    // Check if the account name is "1" or "2"
    if ($accountName === "1" || $accountName === "2") {
        // Disable account features
        $main_content .= "Account features are disabled for this account.";
    } else {
        // Account name is not "1" or "2", continue with the action
        // Your existing code for creating or undeleting characters goes here
    }
}
PHP:
if ($action == "createcharacter" || $action == "undelete") {
    // Assuming $account_logged contains the logged-in account information
    $accountName = $account_logged->getName();

    // Check if the account name is "1" or "2"
    if ($accountName === "1" || $accountName === "2") {
        // Disable account features
        $main_content .= "Account features are disabled for this account.";
    } else {
        // Account name is not "1" or "2", continue with the action
        // Your existing code for creating or undeleting characters goes here
    }
}
 
Solution
Back
Top