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

AAC myaac-0.8.16 How do I add a new list?

Madusa

Active Member
Joined
Sep 8, 2022
Messages
141
Reaction score
44
Location
Egypt
How do I add a new in the side menu, such as “Info”, which contains sub-items such as “Reset Info” and “Task Info”.
like communicy/forum/shop/library/account
For example, I want to create a menu called System Info and enter it by creating Task Info/Reset Info
To write some information into it
myaac-0.8.16
Thanks in advance
u6u6.png
 
Open templates/tibiacom/config.php

And edit this:

Code:
$config['menu_categories'] = array(
MENU_CATEGORY_NEWS => array('id' => 'news', 'name' => 'Latest News'),
MENU_CATEGORY_ACCOUNT => array('id' => 'account', 'name' => 'Account'),
MENU_CATEGORY_COMMUNITY => array('id' => 'community', 'name' => 'Community'),
MENU_CATEGORY_FORUM => array('id' => 'forum', 'name' => 'Forum'),
MENU_CATEGORY_LIBRARY => array('id' => 'library', 'name' => 'Library'),
MENU_CATEGORY_SHOP => array('id' => 'shops', 'name' => 'Shop')
);

You can add your category here.

Code:
7 => array('id' => 'info', 'name' => 'Info'),

Except that you will need to put images:

templates/tibiacom/images/menu/

icon-info.gif
label-info.gif
 
Back
Top