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

Znote Achievements with Task

Schwarzbeere

BraveOnline Developer
Joined
Feb 16, 2017
Messages
68
Reaction score
3
Location
Germany
Hello guys...

I want to displayed my tasks on the Website as achievements.

This is my script with the storages of the tasks:
Code:
local storage = 62003
local monsters = {


   ["Black Sheeps"] = {storage = 5010, mstorage = 19000, amount = 100, exp = 4000, items = {}},
   ["Trolls"] = {storage = 5011, mstorage = 19001, amount = 100, exp = 4000, items = {}},

and this is the znote_config part of the achievements:
Code:
    $config['Ach'] = true;
    $config['achievements'] = array(
        19000 => array(
            'Black Sheeps', //name
            'you killed 100 Black Sheeps', //comment
            'points' => '1', //points
            'img' => 'http://www.tibia-wiki.net/wiki/Plik:Black_Sheep.gif', //img link or folder (example)> 'images/dragon.png'
        ),

I tried it with the storage 5010 and 19000.

How can I fix it, that the fullfilled task ist displayed? :)

Thanks for your help guys!
 
Check your /data/lib/achievements_lib.lua (or any other OT file you have added the achievements in) to check out the storage values you need to use.
 
Back
Top