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

Website (Help)

Robbiet6

New Member
Joined
Feb 22, 2009
Messages
83
Reaction score
1
Can somebody give me a rough idea why my Donater list items are not showing anymore please.

The image of how the item looks is no longer their
 
If you could show us an example of the code, it might be easier to solve it.
 
Im not sure what sorta part of the script you wanted to see but heres a small section..

////////////
/// SHOP ///
////////////
// If useDB is set to true, player can shop in-game as well using Znote LUA shop system plugin.
$config['shop'] = array(
'enabled' => true,
'useDB' => false, // Fetch offers from database, or the below config array
);

// If useDB is false, this array list will be used for shop offers.
$config['shop_offers'] = array(
// offer 2
2 => array(
'type' => 2160,
'itemid' => 2160,
'count' => 10,
'describtion' => "10 Crystal coins.",
'points' => 20,

I would usualy put the item id in and it would show the item..
 
I think it should be like this, I haven't really tested Znote AAC yet so I might be wrong. But why aren't you using type ID 1, that is for items? :p

PHP:
        1 => array(
            'type' => 1,
            'itemid' => 2160,
            'count' => 10,
            'describtion' => "10 Crystal soins.",
            'points' => 20,
        ),
 
Back
Top