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

  1. F

    otland be like...

    Yeah... that's how the internet works. Old threads tend to have broken links.
  2. F

    Lua addEvent/stopEvent remove item

    Logic looks ok from a brief glance. It might not like using Position as a key. Try this(untested): local scheduledEvents = {} local function removeVortex(pos, key) local vortex = Tile(pos):getItemById(26394) or Tile(pos):getItemById(26395) or Tile(pos):getItemById(26396) if vortex then...
  3. F

    TFS 1.X+ How to show animated text when removing an object from a corpse

    You can just do the same type of thing inside the ec.onDropLoot(monster, corpse) callback on line 96 of the autoloot script. Something like (untested): function ec.onDropLoot(monster, corpse) if not corpse:getType():isContainer() then return end local corpseOwner =...
  4. F

    TFS 1.X+ Force monster spawn on occupied tile

    You need to check src/luascript.cpp and search for the "createMonster" method in the game class. Make sure it has extended and force as parameter options. Like it does here: (https://github.com/otland/forgottenserver/blob/master/src/luascript.cpp#L5004) If the options do exist, try and pass...
  5. F

    [RME] Adding custom sprites working, but can't add to container

    Double check the new item has the "pickupable" flag in item editor.
  6. F

    Solved Auto-detect country when accessing register.php

    What exactly isn't working? Your threads are very confusing. Once again, best thing to do is to log the response. After: success: function(response) { Add: console.log(response)
  7. F

    Solved Old account does not have flags in highscores or character profile.php

    Just follow the code from where it's being displayed in the HTML to which table it's being picked up from. I always thought it was znote_accounts that they were stored.
  8. F

    Solved [Znoteacc] Checking is everything is correctly before submitting the form while create account.

    It's because you put the check_username and check_email scripts in layout/subs/, therefore to include the init.php, you had to traverse back to the root directory first (adding ../../ before engine/init.php). If you kept them in the root directory it would have worked. Not sure why you had to...
  9. F

    Solved [Znoteacc] Checking is everything is correctly before submitting the form while create account.

    Looks like a PHP error, which it's trying to deserialize JSON, therefore throwing an error. You need to log the response before its deserialized. After this line: .then(response => { add: console.log('Response:', response);
  10. F

    Solved [Znoteacc] Checking is everything is correctly before submitting the form while create account.

    When the error happens, right click anywhere on the page, click Inspect, then click console on the top (There are various ways to get to the same place). Post anything that is logged in the console here.
  11. F

    Solved [Znoteacc] Checking is everything is correctly before submitting the form while create account.

    fetch('check_username.php?username=' + encodeURIComponent(username)) ... fetch('check_email.php?email=' + encodeURIComponent(email)) Your php files do not match what are being called... Rename them to check_username.php and check_email.php or change the URL paths in the code...
  12. F

    RevScripts Destroy an item id outside of area? + Kill monsters inside radius?

    (Note: The solution below will work best with an enclosed arena, with only one way in or out such as a teleport, otherwise it can get messy...) You can assign events to a player when they enter the arena, and unregister them when they leave (death or logout will ofc remove them by default). The...
  13. F

    Suggestion less emphasis to closed threads

    By the looks of the screenshots, I assume he wants more emphasis on sticky threads for the dark theme. His "after" screenshot shows sticky threads with a much darker background.
  14. F

    will pay for someone to build whole server

    Both options are variable. Some developers request payment per job, some request per hour.... It's impossible to say. Showing a video saying "I want this" isn't good enough. Does the map exist? Or will you want someone to create the map? What client features/modules do you want? What server...
  15. F

    will pay for someone to build whole server

    Be prepared to pay a LOT of money if you want a decent bug-free codebase. Otherwise you can pay someone less money to throw together a bunch of scripts they find from various forums/distros, but expect bugs etc. Either way: Development = Time Time = Money
Back
Top