• 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!

[ZNOTE ACC] BAN LIST 1.5

OTcreator

Active Member
Joined
Feb 14, 2022
Messages
412
Solutions
1
Reaction score
44
Hello.
I need ban list for Znote ACC 1.5.
I have one, but don't have name of banned player - only ban ID... Who can help me?

PHP:
<?php require_once 'engine/init.php'; include 'layout/overall/header.php';

// Fetch ban data and store it as an array[row][columns] = value
$bans = mysql_select_multi("SELECT `id`, `comment` FROM `bans` ORDER BY `id` DESC LIMIT 25");
?>
<table border="0" cellspacing="0">
    <tr class="yellow">
        <td><center>Ban Table</center></td>
    </tr>
    <?php
    foreach ($bans as $ban) {
        ?>
        <tr>
            <td><center><?php echo "Ban id: ".$ban['id']." for ".$ban['comment']; ?></center></td>
        </tr>
        <?php
    }
    ?>
</table>

<?php include 'layout/overall/footer.php'; ?>
 
I have only ban id and ban number (etc. 1- IP, 2 - Account, 3 - Player.

One of idea Ban number to charactername, and connect to table players name.

But i cant do this. (sry bad ENG)
 
Back
Top