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

(HELP) Znote aac shop

In config.php find these lines and edit / copy if you want more offers.
Code:
// If useDB is false, this array list will be used for shop offers.
   $config['shop_offers'] = array(
     // offer 1
     1 => array(
       'type' => 1, // 1 = item id offers, 2 = premium days [itemid ignored], 3 = sex change[itemid & count ignored], 4+ = custom.
       'itemid' => 2160, // item to get in-game
       'count' => 5, //if type is 2, this represents premium days
       'describtion' => "Crystal coin.", // Describtion shown on website
       'points' => 100, // How many points this offer costs
     ),

     // offer 2
     2 => array(
       'type' => 1,
       'itemid' => 2392,
       'count' => 1,
       'describtion' => "Fire sword.",
       'points' => 10,
     ),

     // offer 3
     3 => array(
       'type' => 2,
       'itemid' => 12466, // Item to display on page
       'count' => 7,
       'describtion' => "Premium membership.",
       'points' => 25,
     ),

     // offer 4
     4 => array(
       'type' => 3,
       'itemid' => 12666,
       'count' => 3,
       'describtion' => "Change character gender.",
       'points' => 10,
     ),
     5 => array(
       'type' => 3,
       'itemid' => 12666,
       'count' => 0,
       'describtion' => "Change character gender.",
       'points' => 20,
     ),
     5 => array(
       'type' => 4,
       'itemid' => 12666,
       'count' => 1,
       'describtion' => "Change character name.",
       'points' => 20,
     ),
   );
 
Back
Top