Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
Discord Group Whatsapp Group Facebook Page Instagram Page
itemlist

Sword

List of available items in this category.

icon

ice rapier

A deadly but fragile weapon.

Atk: 100

Def: 1

icon

magic longsword

It's the magic Cyclopmania Sword.

Atk: 55

Def: 40

icon

warlord sword

Strong powers flow in this magic sword.

Atk: 53

Def: 38

icon

the avenger

This holy blade was forged of shattered dreams.

Atk: 50

Def: 38

icon

magic sword

It's the Sword of Valor.

Atk: 48

Def: 35

icon

berserker

Atk: 48

Def: 21

icon

demonrage sword

Atk: 47

Def: 22

icon

the justice seeker

This sword is only granted to a warlord of the Svargrond arena.

Atk: 47

Def: 24

icon

giant sword

This sword has been forged by ancient giants.

Atk: 46

Def: 22

icon

nightmare blade

Atk: 46

Def: 23

icon

mystic blade

This sword is only granted to a scrapper of the Svargrond arena.

Atk: 44

Def: 25

icon

dragon slayer

Atk: 44

Def: 28

icon

mercenary sword

Atk: 43

Def: 27

icon

bloody edge

Atk: 43

Def: 21

icon

relic sword

Atk: 42

Def: 24

icon

blacksteel sword

This sword is only granted to a greenhorn of the Svargrond arena.

Atk: 42

Def: 22

icon

pharaoh sword

Atk: 41

Def: 23

icon

assassin dagger

Atk: 40

Def: 12

icon

haunted blade

Atk: 40

Def: 12

icon

djinn blade

Atk: 38

Def: 22

icon

epee

Atk: 37

Def: 23

icon

bright sword

The blade shimmers in light blue.

Atk: 36

Def: 30

icon

crystal sword

Atk: 35

Def: 26

icon

fire sword

The blade is a magic flame.

Atk: 35

Def: 20

icon

wyvern fang

Atk: 32

Def: 19

icon

two handed sword

Atk: 30

Def: 25

icon

crimson sword

Atk: 28

Def: 20

icon

serpent sword

Atk: 26

Def: 15

icon

broadsword

Atk: 26

Def: 23

icon

spike sword

Atk: 24

Def: 21

icon

templar scytheblade

Atk: 23

Def: 15

icon

scimitar

Atk: 19

Def: 13

icon

crimson sword

Its blade is very notchy

Atk: 18

Def: 10

icon

poison dagger

Element Earth: +2.

Atk: 18

Def: 8

icon

longsword

Atk: 17

Def: 14

icon

katana

Atk: 16

Def: 12

icon

heavy machete

Atk: 16

Def: 10

icon

carlin sword

Atk: 15

Def: 13

icon

sword

Atk: 14

Def: 12

icon

bone sword

Atk: 13

Def: 10

icon

sabre

Atk: 12

Def: 10

icon

machete

Atk: 12

Def: 9

icon

Ron the Ripper's sabre

Atk: 12

Def: 10

icon

short sword

Atk: 11

Def: 11

icon

rapier

Atk: 10

Def: 8

icon

light rapier

It has been used a lot, judging by its jagged blade.

Atk: 10

Def: 8

icon

silver dagger

Atk: 9

Def: 7

icon

dagger

Atk: 8

Def: 6

icon

combat knife

Atk: 8

Def: 6

icon

knife

Atk: 5

Def: 5

portugues espanhol ingles polones

Whoops! There was an error.
TypeError
MyAAC\Plugin\OldWelcomeBox::__construct(): Argument #1 ($db) must be of type OTS_DB_MySQL, DebugBar\DataCollector\PDO\TraceablePDO given, called in /home/www/templates/old-school/index.php on line 269 TypeError thrown with message "MyAAC\Plugin\OldWelcomeBox::__construct(): Argument #1 ($db) must be of type OTS_DB_MySQL, DebugBar\DataCollector\PDO\TraceablePDO given, called in /home/www/templates/old-school/index.php on line 269" Stacktrace: #2 TypeError in /home/www/templates/old-school/OldWelcomeBox.php:8 #1 MyAAC\Plugin\OldWelcomeBox:__construct in /home/www/templates/old-school/index.php:269 #0 require in /home/www/index.php:172
Stack frames (3)
2
TypeError
/templates/old-school/OldWelcomeBox.php8
1
MyAAC\Plugin\OldWelcomeBox __construct
/templates/old-school/index.php269
0
require
/index.php172
/home/www/templates/old-school/OldWelcomeBox.php
<?php

namespace MyAAC\Plugin;

class OldWelcomeBox
{
    private $db;
    public function __construct(\OTS_DB_MySQL $db)
    {
        $this->db = $db;
    }

    public function getTotal()
    {
        $total = [];
        $query = $this->db->query('SELECT count(*) as `how_much` FROM `accounts`;')->fetch(\PDO::FETCH_ASSOC);
        $total['accounts'] = $query['how_much'];

        $total['bannedAccounts'] = $this->getBannedPlayers();

        $query = $this->db->query('SELECT count(1) as `how_much` FROM `players`;')->fetch(\PDO::FETCH_ASSOC);
        $total['players'] = $query['how_much'];

        $query = $this->db->query('SELECT count(1) as `how_much` FROM `guilds`;')->fetch(\PDO::FETCH_ASSOC);
        $total['guilds'] = $query['how_much'];

        $query = $this->db->query('SELECT count(1) as `how_much` FROM `houses`;')->fetch(\PDO::FETCH_ASSOC);
        $total['houses'] = $query['how_much'];

        $query = $this->db->query('SELECT count(1) as `how_much` FROM `houses` WHERE `owner` = 0;')->fetch(\PDO::FETCH_ASSOC);
        $total['freeHouses'] = $query['how_much'];

        $query = $this->db->query('SELECT count(1) as `how_much` FROM `houses` WHERE `owner` != 0;')->fetch(\PDO::FETCH_ASSOC);
        $total['rentedHouses'] = $query['how_much'];

        if (tableExist('players_online')) {
            $query = $this->db->query('SELECT count(1) as `how_much` FROM `players_online`')->fetch(\PDO::FETCH_ASSOC);
            $total['online'] = $query['how_much'];
        }
        else if (fieldExist('online', 'players')) {
Arguments
  1. "MyAAC\Plugin\OldWelcomeBox::__construct(): Argument #1 ($db) must be of type OTS_DB_MySQL, DebugBar\DataCollector\PDO\TraceablePDO given, called in /home/www/templates/old-school/index.php on line 269"
    
/home/www/templates/old-school/index.php
                                        <img src="<?= $template_path; ?>/slides/38.png">
                            
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <br>
            <div class="border_bottom"></div>
        </div>
        <div class="right_box">
            <div class="corner_lt"></div><div class="corner_rt"></div><div class="corner_lb"></div><div class="corner_rb"></div>
            <div class="title"><img src="<?= $template_path; ?>/images/info.png"><span style="background-image: url(<?= $template_path; ?>/widget_texts/serverinfo.png);"></span></div>
            <div class="content">
                <div class="rise-up-content">
                    <table class="sinfotable" cellspacing="0">
                        <?php
                            use MyAAC\Plugin\OldWelcomeBox;
                            require __DIR__ . '/OldWelcomeBox.php';
                            $oldWelcomeBox = new OldWelcomeBox($db);
                            $total = $oldWelcomeBox->getTotalCached();
                        ?>
                        <tr>
                            <td>
                                <b>Status:</b></td><td> <img style="vertical-align:middle;" src="<?= $template_path; ?>/images/on.png" alt="<?= ($status['online'] ? 'Online' : 'Offline'); ?>">
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <b>Antibot: </b>
                            </td>
                            <td><img style="vertical-align:middle;" src="<?= $template_path; ?>/images/on.png" alt="<?= ($status['online'] ? 'Online' : 'Offline'); ?>">
                                <script>
// Set the date we're counting down to
var countDownDate = new Date("Jan 5, 2030 23:00:00").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

  // Get today's date and time
/home/www/index.php
    }
}
 
if(setting('core.views_counter'))
    require_once SYSTEM . 'counter.php';
 
if(setting('core.visitors_counter')) {
    $visitors = new Visitors(setting('core.visitors_counter_ttl'));
}
 
/**
 * @var OTS_Account $account_logged
 */
if ($logged && admin()) {
    $content .= $twig->render('admin-bar.html.twig', [
        'username' => USE_ACCOUNT_NAME ? $account_logged->getName() : $account_logged->getId()
    ]);
}
$title_full =  (isset($title) ? $title . ' - ' : '') . $config['lua']['serverName'];
require $template_path . '/' . $template_index;
 
echo base64_decode('PCEtLSBQb3dlcmVkIGJ5IE15QUFDIDo6IGh0dHBzOi8vd3d3Lm15LWFhYy5vcmcvIC0tPg==') . PHP_EOL;
if(superAdmin()) {
    echo '<!-- Generated in: ' . round(microtime(true) - START_TIME, 4) . 'ms -->';
    
/**    echo PHP_EOL . '<!-- Queries done: ' . $db->queries() . ' -->';
    */
 
if (method_exists($db, 'queries')) {
    echo PHP_EOL . '<!-- Queries done: ' . $db->queries() . ' -->';
}
    
    
    if(function_exists('memory_get_peak_usage')) {
        echo PHP_EOL . '<!-- Peak memory usage: ' . convert_bytes(memory_get_peak_usage(true)) . ' -->';
    }
}
 
$hooks->trigger(HOOK_FINISH);
 
Arguments
  1. "/home/www/templates/old-school/index.php"
    

Environment & details:

Key Value
category
"sword"
subtopic
"itemlist"
empty
empty
empty
Key Value
myaac_csrf_token
"516390070bd1bd8a1aa06daba85b5b2c57fe41e6"
myaac_last_visit
1754342704
myaac_last_uri
"/?category=sword&subtopic=itemlist"
Key Value
USER
"www-data"
HOME
"/var/www"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_CONNECTING_IP
"216.73.216.0"
HTTP_CDN_LOOP
"cloudflare; loops=1"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_FOR
"216.73.216.0"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_ACCEPT
"*/*"
HTTP_CF_RAY
"96a1200fa8ca36ce-YYZ"
HTTP_HOST
"pristineworld.online"
REDIRECT_STATUS
"200"
SERVER_NAME
"_"
SERVER_PORT
"80"
SERVER_ADDR
"5.161.103.118"
REMOTE_USER
""
REMOTE_PORT
""
REMOTE_ADDR
"216.73.216.0"
SERVER_SOFTWARE
"nginx/1.18.0"
GATEWAY_INTERFACE
"CGI/1.1"
REQUEST_SCHEME
"http"
SERVER_PROTOCOL
"HTTP/1.1"
DOCUMENT_ROOT
"/home/www"
DOCUMENT_URI
"/index.php"
REQUEST_URI
"/?category=sword&subtopic=itemlist"
SCRIPT_NAME
"/index.php"
CONTENT_LENGTH
""
CONTENT_TYPE
""
REQUEST_METHOD
"GET"
QUERY_STRING
"category=sword&subtopic=itemlist"
SCRIPT_FILENAME
"/home/www/index.php"
PATH_INFO
""
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1754342704.6727
REQUEST_TIME
1754342704
empty
0. Whoops\Handler\PrettyPageHandler