• 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. raf

    PHP, Fetching highscores, how it works?

    And what's wrong ? If the problem is sorting, just change your query to: $query = "SELECT level FROM `players` ORDER BY level DESC;"; or $query = "SELECT level FROM `players` ORDER BY level ASC;"; --side note Is lastdeath some kind of AAC engine ?
  2. raf

    [CSS] Striped table

    Easy way to dump PHP way of switching background colors for rows in table. That's how we used to do that: <table width="500px"> <thead> <tr bgcolor="'.$config['site']['vdarkborder'].'"> <th>Name</th> <th>Level</th> </tr> </thead> <tbody> <tr bgcolor="'.(is_int($i...
  3. raf

    [G****r AAC] QuestStatus wroted by Averatec optimized by Victor (1.1.2)

    Noob wtf? x2! .table-striped { background-color: #F1E0C6; } .table-striped thead>tr>th { color: #fff; font-weight: bold; background: #212121; } .table-striped tbody tr:nth-of-type(odd) { background-color: #d4c0a1; } <table class="table-striped" width="500px"> <thead>...
  4. raf

    Linux Hosting on own physical servers (?)

    Probably, unless someone pays insane amount of money for insane speed and stable connection. Home hosted servers are bad for online gaming, and big projects. Unless you have backup power generators, so your server can run uninterrupted (UPS). Basicly, there's alot of factors that come with home...
  5. raf

    [Tfs 1.2] Shop system MODAL window

    So basicly, to make it work properly, we need to disable the normal (gesior) sending-item script ?
  6. raf

    Linux Hosting on own physical servers (?)

    Wrong section i'd say, the correct one would be probably discussion. Anyway, everything will work the same as you would use rented server. Connection depends on what OS you'll be using. I prefer linux, it's faster and i'd rather work from command line than do stuff on windows server (which i...
  7. raf

    OpenTibia SharpMapTracker 0.8.1 by Jo3Bingham

    Alright, thank you tho, will maybe try to understand how it works one day :D
  8. raf

    Donation Castle system. Tfs 1.1

    You should do correct intending, so the code would be more readable.
  9. raf

    TalkAction [TFS 1.1-1.2] Guild Outfit Change (!go)

    Line 35 should look like this: player:sendTextMessage(MESSAGE_INFO_DESCR,"You have to wait" .. string.diff(player:getStorageValue(config.exhaustion)-os.time()) .. " before using this command again.")
  10. raf

    OpenTibia SharpMapTracker 0.8.1 by Jo3Bingham

    Is there any known date, when it will be updated for 10.8x ?
  11. raf

    GESIOR - Webshop (old shop system)

    Depends, i'm working 4-5 days a week, and still i'm developing after work. As soon as i finish coding this i will post the code. Also, all the progress i will make, i will post it here. --main post updated Forgot to say, it's working with AJAX, so the page doesn't refresh when you search or...
  12. raf

    GESIOR - Webshop (old shop system)

    i would, but i'm waiting for Znote, he's gonna make a converting working again from Gesior to Znote, until that happens - i'm stuck with gesior (got alot of shit done already). I guess when i move to ZnoteAAC, i will do that for it also. Glad to hear that. Unfortunately the code right now is...
  13. raf

    GESIOR - Webshop (old shop system)

    Hi Otlanders! I've got a poll with a question for you! Would you like to see and get for free webshop for Gesior, that is similar to the offciail tibia webshop? It would look like this (its WIP). Currently, tabs are working also as search box :) It's working with AJAX, so the page doesn't...
  14. raf

    [GESIOR] Forum post author group

    bump
  15. raf

    Solved help me with php top frags

    That's probably why.
  16. raf

    Gesior error step 3

    Or better, from original repo
  17. raf

    Solved help me with php top frags

    Which version of gesior are you using ?
  18. raf

    Lua Making an Online Training System use Offline Time?

    I had that in my head somewhere, cause i remember i found once this, but i forgot so didn't even mention it :P Good you did! This solves almost everything.
  19. raf

    Lua Making an Online Training System use Offline Time?

    That's why i'm not an expert in LUA :D what you say is probably better solution. Anyway, getting data from database and then just substract each minute or even second from the offline training time.
Back
Top