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

Recent content by Manots

  1. M

    [Mod] Random Item Stats

    It is possible to make ID/Serial to every new item like: Serial: @14DA23? How can I change code if I have added Loot Channel in my OT? If I have this mode on, loot in Loot Channel is different from my loot monster.
  2. M

    AAC ZNOTE whoisonline problem

    Have you set corret $config['site_url'] = "yourwebsiteurl"; in config.php?
  3. M

    [Znote ACC] - Forum - Threads count

    Hello! I'm working on a forum right now and I want to place there numbers of threads and posts. I'm stuck in this place: $thr = array(); $th = mysql_select_multi("SELECT DISTINCT `forum_id` FROM `znote_forum_threads`;"); foreach ($th as $t){...
  4. M

    Znote ACC - Correct vocation name in Character Profile

    If someone was looking for a solution to online list. Change: $extra = isPromoted($value['id']) == 1 ? 4 : 0; To: $extra = isPromoted($value['vocation']) == 1 ? 4 : 0; then you don't need a database query :) Edit: Solution to myaccount: Change: $extra = isPromoted($value['id']) == 1 ...
Back
Top