• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. R

    AAC Show premium days Znote

    Line 13 echo 'Premium Account (' . $user_data['premdays'] . ' day' . ($user_data['premdays'] > 1 ? 's' : '' ) .' left';
  2. R

    You have less than 1 percent to go

    I've taken screenshots of the client And I remember the tooltip being there for a really long time now
  3. R

    Anyone playing Tibia?

    Welp, guess I missed your (including ots). But it makes sense that ots without microtransactions don't survive, something has to pay for the hosting
  4. R

    AAC ignore css in a specific <tr>

    Weird, inline style should override stylesheets. Try table tr:not(.customTable) th, table tr:not(.customTable) td { background: #555555; /*color: #FFF; */ color: skyblue; padding: 7px 4px; text-align: left; } tr:not(.customTable).yellow td { background: rgb(89, 10, 10); padding...
  5. R

    AAC ignore css in a specific <tr>

    Have you inspected the element and made sure that the style is correct?
  6. R

    AAC ignore css in a specific <tr>

    That's because you're change the <tr> tag instead of the <td>
  7. R

    NPC TFS 1.2 Promotion Npc for the second promotion.

    Read the error man, come on. Add "then" at the end of line 27
  8. R

    Anyone playing Tibia?

    They're all talking about Cipsoft's Tibia, not OTS
  9. R

    Modern Acc Simple Question

    Modern AAC? that hasn't been updated for at least 8 years I think. You're better off using MyAAC or Znote's AAC
  10. R

    AAC Znote Shop: How to let players choose the amount of items they will buy?

    I'm guessing he means to be able to choose as a player how much money they want to buy
  11. R

    why cant i see his thread?

    You need OTLand Extra Premium to see the comments
  12. R

    AAC ZnoteACC Blocking 1/1 (acc manager) login on website

    Try this $account = strval($username) === "1" ? false : mysql_select_single("SELECT {$fields} FROM `accounts` WHERE `name`='{$username}' AND `password`='{$password}' LIMIT 1;"); if ($account === false) { jsonError('Wrong username and/or password.'); }
  13. R

    AAC ZnoteACC Blocking 1/1 (acc manager) login on website

    echo "The user: {$username}"; Add that before "if(strval.." and tell me what shows up in the page
  14. R

    AAC ZnoteACC Blocking 1/1 (acc manager) login on website

    try this if(strval($username) === "1"){ jsonError('This account is blocked.'); } $account = mysql_select_single("SELECT {$fields} FROM `accounts` WHERE `name`='{$username}' AND `password`='{$password}' LIMIT 1;"); if ($account === false) { jsonError('Wrong...
  15. R

    AAC ZnoteACC Blocking 1/1 (acc manager) login on website

    I was updating my post, try again
  16. R

    AAC ZnoteACC Blocking 1/1 (acc manager) login on website

    if ($account === false || $username === "1") {
  17. R

    AAC ZnoteACC account manager accounts aren't registered on znote_account

    Probably "getPlayerAccountId(cid)"
  18. R

    AAC ZnoteACC account manager accounts aren't registered on znote_account

    I edited my post, try copying it again.
Back
Top