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
npcswiki

Rashid

You see Rashid.


Location
(unknown)

Notes
This NPC has no notes.

Sell

ItemPrice
abyss hammer20,000 gp
amber staff8,000 gp
ancient amulet200 gp
assassin dagger20,000 gp
composite hornbow25,000 gp
bandana150 gp
beastslayer axe1,500 gp
berserker40,000 gp
blacksteel sword6,000 gp
blessed sceptre40,000 gp
bone shield80 gp
beholder helmet7,500 gp
brutetamer's staff1,500 gp
castle shield5,000 gp
chaos mace9,000 gp
cranial basher30,000 gp
jade hammer25,000 gp
crocodile boots1,000 gp
crystal mace12,000 gp
crystal necklace400 gp
crystal ring250 gp
crystal sword600 gp
daramian mace110 gp
daramian waraxe1,000 gp
dark shield400 gp
death ring1,000 gp
demon shield30,000 gp
demonbone amulet32,000 gp
demonrage sword36,000 gp
devil helmet1,000 gp
diamond sceptre3,000 gp
divine plate55,000 gp
djinn blade15,000 gp
doll200 gp
dragon scale mail40,000 gp
dragon slayer15,000 gp
dragonbone staff3,000 gp
dreaded cleaver10,000 gp
dwarven armor30,000 gp
flower dress1,000 gp
elvish bow2,000 gp
emerald bangle800 gp
epee8,000 gp
fur boots2,000 gp
furry club1,000 gp
gold ring8,000 gp
golden armor20,000 gp
lavos armor16,000 gp
golden legs30,000 gp
guardian halberd11,000 gp
hammer of wrath30,000 gp
headchopper6,000 gp
heavy mace50,000 gp
heavy machete90 gp
paladin armor15,000 gp
heroic axe30,000 gp
Hibiscus Dress3,000 gp
krimhorn helmet200 gp
leopard armor1,000 gp
light shovel300 gp
lunar staff5,000 gp
magic plate armor90,000 gp
mammoth fur cape6,000 gp
mammoth fur shorts850 gp
mammoth whopper300 gp
mastermind shield50,000 gp
medusa shield9,000 gp
mercenary sword12,000 gp
mystic blade30,000 gp
naginata2,000 gp
relic sword25,000 gp
nightmare blade35,000 gp
noble axe10,000 gp
norse shield1,500 gp
orcish maul6,000 gp
pharaoh sword23,000 gp
pirate boots3,000 gp
pirate hat1,000 gp
pirate knee breeches200 gp
pirate shirt500 gp
pirate voodoo doll500 gp
platinum amulet2,500 gp
ragnir helmet400 gp
skullcracker armor18,000 gp
ring of the sky30,000 gp
royal axe40,000 gp
ruby necklace2,000 gp
ruthless axe45,000 gp
sapphire hammer7,000 gp
sacred tree amulet3,000 gp
scarab amulet200 gp
swamplair armor16,000 gp
scarab shield2,000 gp
silver brooch150 gp
silver dagger500 gp
skull helmet40,000 gp
spiked squelcher5,000 gp
steel boots30,000 gp
taurus mace500 gp
tempest shield35,000 gp
the justice seeker40,000 gp
tortoise shield150 gp
vile axe30,000 gp
voodoo doll400 gp
war axe12,000 gp
war horn8,000 gp
wyvern fang1,500 gp

Buy

This NPC does not buy anything.


← Back to NPC list
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
name
"Rashid"
subtopic
"npcswiki"
empty
empty
Key Value
PHPSESSID
"itbt39k8blvhqdvvqs0r57r4h6"
Key Value
myaac_csrf_token
"ab2b4e0cf156f4a4ef6b432c151a68ea18236fac"
myaac_last_visit
1754342571
myaac_last_uri
"/?name=Rashid&subtopic=npcswiki"
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_CF_RAY
"96a11cceeb89abbb-YYZ"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_COOKIE
"PHPSESSID=itbt39k8blvhqdvvqs0r57r4h6"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
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
"/?name=Rashid&subtopic=npcswiki"
SCRIPT_NAME
"/index.php"
CONTENT_LENGTH
""
CONTENT_TYPE
""
REQUEST_METHOD
"GET"
QUERY_STRING
"name=Rashid&subtopic=npcswiki"
SCRIPT_FILENAME
"/home/www/index.php"
PATH_INFO
""
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1754342571.3562
REQUEST_TIME
1754342571
empty
0. Whoops\Handler\PrettyPageHandler