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

How can I change this? php help

Open ip/phpmyadmin and find ,Shop offer or something like that what you have myacc?znote?gesior?
Manager I think it is... I could modify the other thing now, I only have to do the shop thing :/ it's the only thing I'm missing, the only thing I want to do is remove those items from the shop nothing more
 
Manager I think it is... I could modify the other thing now, I only have to do the shop thing :/ it's the only thing I'm missing, the only thing I want to do is remove those items from the shop nothing more
He asked what type of web system you are using?

There are 3 likely places it will be in:
1 - Database: which you need to access phpmyadmin (or use some other db management tool), find the table and remove the rows.
2 - Config.php: It may be stored in a config array
3 - Hardcoded in the shop PHP file itself.
 
Last edited by a moderator:
He asked what type of web system you are using?

There are 3 likely places it will be in:
1 - Database: which you need to access phpmyadmin (or use some other db management tool), find the table and remove the rows.
2 - Config.php: It may be stored in a config array
3 - Hardcoded in the shop PHP file itself.
In database in phpadmin, I have searched related to shop tables and I didn't find anything, I put znote just in case, but in z_shop there is nothing related to the items that are posted on the page, I think this website is managed and I don't know where is modified, never use gesior.. the shop is gesior type.
in config.php there is, this configuration of items, but it has nothing to do with the web shop:
PHP:
$config['shop_offers'] = array(
        1 => array(
            'type' => 1,
            'itemid' => 3043, // item to get in-game
            'count' => 5, // Stack number (5x itemid)
            'description' => "5x Crystal coin", // Description shown on website
            'points' => 100, // How many points this offer costs
        ),
        2 => array(
            'type' => 1,
            'itemid' => 2392,
            'count' => 1,
            'description' => "Fire sword",
            'points' => 10,
        ),
        3 => array(
            'type' => 2,
            'itemid' => 12466, // Item to display on page
            'count' => 15, // Days of premium account
            'description' => "Premium",
            'points' => 20,
        ),
        4 => array(
            'type' => 3,
            'itemid' => 12666, // Item to display on page
            'count' => 5,
            'description' => "Change Character Gender",
            'points' => 10,
        ),
        5 => array(
            'type' => 3,
            'itemid' => 12666, // Item to display on page
            'count' => 0, // 0 = unlimited
            'description' => "Change Character Gender",
            'points' => 25,
        ),
        6 => array(
            'type' => 4,
            'itemid' => 12666, // Item to display on page
            'count' => 1,
            'description' => "Change Character Name",
            'points' => 20,
        ),
        7 => array(
            'type' => 5,
            'itemid' => [132, 140], // Outfit ID
            'count' => 3, // Addon 0 = none, 1 = first, 2 = second, 3 = both
            'description' => "Noble outfit with both addons",
            'points' => 20,
        ),
        8 => array(
            'type' => 6,
            'itemid' => 32, // Mount ID
            'count' => 1,
            'description' => "Gnarlhound mount",
            'points' => 20,
        ),
        9 => array(
            'type' => 6,
            'itemid' => 17,
            'count' => 1,
            'description' => "War horse",
            'points' => 20,
        ),
    );
 
Back
Top