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

Search results

  1. Chris

    Paypal Issues

    I'll help you solve it, send me your TeamViewer ID & password through a private message.
  2. Chris

    [Netherlands] (lowrate) Faloria REAL 7.4 RPG/PVP OVER 7 MONTHS ONLINE

    As well-put by @Redleaf, most of you act like complete children. Any one with at least a tad of common sense would realise that no product is perfect, nonetheless a hobby project. Even less so at the launch of it. Faloria is no state-of-the-art game studio, it is mainly developed by one person...
  3. Chris

    Faloria 7.4 development thread

    A little preview as far as the website goes. Whenever you hover over one of the packages, a list appears to the side of it with all of the included products. Disclaimer! None of these offers are in any way related to Faloria, they are merely examples.
  4. Chris

    Creature Looktypes

    Unfortunately, I do not possess these files any longer.
  5. Chris

    [Netherlands] Faloria 7.4 [BETA IS OVER, THANK YOU FOR PARTICIPATING]

    Disclaimer! You will not actually be charged anything, despite the "cool prices". You will however have the possibility of winning certain prizes! Love you Amoaz <3
  6. Chris

    [Netherlands] Faloria 7.4 [BETA IS OVER, THANK YOU FOR PARTICIPATING]

    The Faloria Beta is now LIVE! You can now visit faloria.eu and register for our open-beta! On the website you can now also find all the information you, as a beta tester, will need to know! Short summery of changes (during beta) Increased experience (30x static) Unlimited runes/ammunition...
  7. Chris

    Faloria 7.4 development thread

    #yolo
  8. Chris

    [Gesior] it's not valid TFS config.lua file

    I don't have a copy of Gesior's AAC on my computer anymore, and it's been quite a while since I last dealt with it, but it might because of A) not being able to properly render the file path or B) Your config.lua is missing X important properties. I'd be more than happy to help you out through...
  9. Chris

    Windows error site

    I do, but I tend to keep it for private use only, sorry. Feel free to send me a PM whenever you have any issues though, and I'll do my best to assist you, whether it be through a TeamViewer session or through PMs.
  10. Chris

    Windows error site

    My bad, execute it through your phpMyAdmin installation. There should be a text area where you can enter SQL statements.
  11. Chris

    Windows error site

    Your database schema does not contain the column vip_time in the accounts table. ALTER TABLE accounts ADD vip_time INT(11) DEFAULT 0;
  12. Chris

    Windows error site

    I'm going to assume that you're using Gesior's AAC, and in that case, I would recommend to simply turn off notices, otherwise you'll give up before you even begin. Even though it is preferred to solve these notices, they tend not to cause any negative impact on the site itself. Preferrably...
  13. Chris

    Faloria 7.4 development thread

    It's been fun contributing to this server these past couple of weeks, and the server has definitely improved for the better.
  14. Chris

    Guild Level War Site

    You're most welcome. Looking good!
  15. Chris

    SQL - Top 5 power guilds, ascending order ?

    <?php $topGuilds = $SQL->query('SELECT g.name AS guild, ROUND(AVG(p.level)) AS average FROM guilds AS g LEFT JOIN guild_membership AS gm ON gm.guild_id = g.id LEFT JOIN players AS p ON p.id = gm.player_id GROUP BY g.id ORDER BY average DESC LIMIT 5;')->fetchAll(); foreach ($topGuilds as...
  16. Chris

    SQL - Top 5 power guilds, ascending order ?

    SELECT g.name AS guild, ROUND(AVG(p.level)) AS average FROM guilds AS g LEFT JOIN guild_membership AS gm ON gm.guild_id = g.id LEFT JOIN players AS p ON p.id = gm.player_id GROUP BY g.id ORDER BY average DESC LIMIT 5;
  17. Chris

    Items Into points Lever

    If you count from the ground up, what iteration is your item on? i.e. do you have anything below the item itself? a counter perhaps? If so, try raising the stackpos to 2, or if you have two items below it, set it to 3, and so on, so forth.
  18. Chris

    Items Into points Lever

    Even though the position might be correct, are you certain the stackpos is?
  19. Chris

    [SQL] How to get 2x value (from different storage) and divide it?

    $xxx = (empty($pld['key2value']) ? $pld['key1value'] : round($pld['value'], 2));
Back
Top