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

  1. Jacobs

    AAC PHP issues using Gesior [TFS 1.3] [Gesior]

    Considering what's happening, the most likely reasons are: 1. Your local machine and the server run on different version of PHP (newer versions of PHP are more strict towards various parts of unsafe code) 2. You have a different level of reporting set on your local machine compared to the...
  2. Jacobs

    [PHP/HTML] Basic templates to build your layout

    The intention is good, the execution not so much. To begin with, there's not such thing as "diving by border", border by itself surrounds an element by one or multiple sides. "Table with colspan" - "you can use <td colspan> to set how many rows the title will have in the next horizontal line"...
  3. Jacobs

    MyAAC problem

    You still didn't post the error, you've posted the line where it occurs, tried to use my magic ball to find the issue, try this: if($config['highscores_vocation_box']) { echo '<table border="0" width="100%" cellpadding="4" cellspacing="1"> <tr bgcolor="' . $config['vdarkborder']...
  4. Jacobs

    AAC Problem with Guild Page (ZnoteACC)

    https://github.com/Znote/ZnoteAAC/blob/d74400da573b94cb6e0635a13023f4b84bc18d29/config.php#L23 You're missing the protocol in config - add https:// prefix.
  5. Jacobs

    MyACC how to put image on character samples

    1. If I understand it correctly, then just use "flex: 20%;", if your intention is to have 5 items per row 2. No idea what you're asking, would need to see it myself
  6. Jacobs

    MyACC how to put image on character samples

    It seems like you'll need to do something like this: Replace line 65 - 86: {% if config.character_samples|length > 1 %} <td> <table class="TableContent" width="100%"> <tr class="Odd" valign="top"> <td width="160"><br/><b>Select your vocation:</b></td>...
  7. Jacobs

    Complaint Advertisement forum broken

    I did not say that addons such as AdBlock only work explicitly with CSS and JS, I've pointed out an example for better understanding. Hence why I've also posted the StackOverflow quote which also clearly points out the Google AdSense request URL being considered as ad source:
  8. Jacobs

    Complaint Advertisement forum broken

    The way AdBlock and similar extensions work is that they look for keywords, such as ad advertisement, this includes classes in html, including content as: <div class="ad"> text </div> As it is only but a tool, it is not perfect and thus it might also block content that the user might want...
  9. Jacobs

    Suggestion Advertising Thread Rateing 0/10

    A staff member has absolutely no reason to go and rate anyone's server, they're people with real lives who moderate a community out of their own interest in their own free time. Not sure if I understand that correctly, but that system sounds easily abusable by server owners. A player doesn't...
  10. Jacobs

    Thanatos - Discussion Thread

    Extending the possibilities of an AAC. TFS has it's server status printed to the console, though we're aware that the shell can be also output to a file. Though again, that file is located somewhere on the server, which requires (hopefully) some ssh authentication and the whole process is...
  11. Jacobs

    PHP Mount images

    From a quick look and comparing your code with the one in the link: On line 185 in your gifts.php, replace: $mount_image = BASE_URL . 'images/mounts/' . $mount['mount_id'] . '.gif'; with: $mount_image = BASE_URL . 'images/mounts/' . $mount . '.gif';
  12. Jacobs

    Thanatos - Discussion Thread

    As technology changes, so do our needs. We're visiting websites on our mobile phones much more often than we used to, but OpenTibia servers seem to not be catching up. Visiting websites, checking highscores, forums is rather difficult, as for some reason we've gotten used to the standard of...
  13. Jacobs

    Webdesigner Looking for Web Developer to work on Znote AAC Job

    A web designer and a web developer are very different things. A web designer can create a template, logo, brand using e.g. Photoshop. A web developer can then cut the provided design into html and possibly implement the backend funcionalities behind it to have real data displaying, using...
  14. Jacobs

    AAC Znote acc Forum page

    For forums, remove the protect_page() function from forum.php: https://github.com/Znote/ZnoteAAC/blob/bb60bfbf8355e931d0436ef2382a83380fe8efe1/forum.php#L3 For guilds, edit the default config: $config['require_login']['guilds'] = false;
  15. Jacobs

    [ZNOTE ACC 1.5] TFS_1.0 ONLINE STATUS IN HIGHSCORE

    I could take a look - pm me.
Back
Top