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

    $25 reward. Looking for suggestions on a server name

    https://www.fantasynamegenerators.com
  2. Sun

    [OTX2-8.60] Player 300+ WALK in Ubuntu LINUX

    Did you check to make sure it's not your fps settings on the client? If that's not it then you should just change distro altogether. otx2 is madly outdated and has never been a favored over other options
  3. Sun

    Tfs 1.2 On level up gives full hp/mana

    I'd comment out or remove that line otland/forgottenserver (https://github.com/otland/forgottenserver/blob/master/src/player.cpp#L1645) and do it with lua
  4. Sun

    TFS 0.X Set exhaust for NPC

    Simplest would be to make your npc with global storage. When the message is broadcasted set the storage by doSetStorage(35355, os.time() + exhaust time in seconds) Then you can just do a storage check before the player is allowed to pay for their broad-casted message if getStorage(35355) >...
  5. Sun

    Tfs 1.2 On level up gives full hp/mana

    player:addHealth(player:getMaxHealth()) player:addMana(player:getMaxMana())
  6. Sun

    Is any tutorial how to edit acc maker layout?

    Layouts are mostly html & css so if you google "html & css tutorial" any of the results should be what you're looking for. html code can be written in .html .php & other files (most commonly in .html & .php), in this case the html for your layout will be in layout.php Also some border colors in...
  7. Sun

    Compiling newest TFS (cmake error)

    apt-get install libpugixml-dev if you have more issues try to redo the steps on the wiki https://github.com/otland/forgottenserver/wiki/Compiling-on-Ubuntu
  8. Sun

    OTClient Module site

    g_platform.openUrl("google.com")
  9. Sun

    Compiling newest TFS (cmake error)

    That's confusing. This: Is triggered by if(APPLE AND COMPILER_KNOWS_STDLIB) add_compile_options(-stdlib=libc++) endif() Which would mean that your OS is recognized as APPLE. But maybe I'm wrong, someone with more knowledge in this area might know.
  10. Sun

    Compiling newest TFS (cmake error)

    Are you trying to compile on mac? see if this is of any help https://stackoverflow.com/questions/19774778/when-is-it-necessary-to-use-use-the-flag-stdlib-libstdc https://github.com/otland/forgottenserver/blob/bcb86eac0655c58b8dc9a35c652f8953a0edd033/cmake/FindCXX11.cmake#L17
  11. Sun

    Linux ./theforgottenserver: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory

    https://github.com/Fir3element/3777 that's the most popular 0.4 for 8.6 compiling instructions at the bottom. Again, for debian 9+ change libmysqlclient-dev for libmariadbclient-dev
  12. Sun

    TFS 1.X+ "doCreatureExecuteTalkAction" tfs 1.2+?

    Make a new function in libs (look at how functions are made in creature libs) & call that function by creature:yourFunction()
  13. Sun

    Final thread for fixing OTClient dashing animation issue for TFS 1.3

    Idle animations are a completely different issue that has to do with .dat groups. It looks like you're using the half fix posted by ninja? I suspect that could be causing the problems you experience. Try without it. I don't have any problems with diagonal movement or mounts, but I'm also not...
  14. Sun

    Final thread for fixing OTClient dashing animation issue for TFS 1.3

    Been gone from OTs for a while, I'm back with a near complete fix to the horrible OTC walking. At least with the new speed law, so... 9.81+ https://github.com/otland/otclient/pull/27
  15. Sun

    [Solved] Gesior AAC issue while creating characted

    try sudo /usr/sbin/mysqld --thread-stack=256k then restart mysql sudo service mysql restart
  16. Sun

    OtLand XenForo 2 and forum changes

    It looks alright, but I do think the default xenforo2 theme is an aesthetic downgrade to the previous. I hope to see a dark theme soon because light themes get harsh on the eyes when browsing for extended periods of time if possible I suggest getting these 2 Xenforo Styles - Dimension -...
  17. Sun

    TFS 1.2 receive random item from box

    gift:getName() won't work because gift is just itemid. It should be ItemType(gift):getName() player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You got ".. (count ~= nil and count .. ' ' or '') .. ItemType(gift):getName())
  18. Sun

    [Tutorial] Generate RSA keys

    After recent changes to tfs 1.3 by @Lordfire the rsa private key is now loaded from PEM file & it might be a bit confusing for some to generate custom rsa This tutorial requires openssl to be installed on your system. Debian & Ubuntu have it pre-installed. First generate your private key...
  19. Sun

    Solved save skulls from removing

    did you have that issue before or did it only appear after making that edit? It shouldn't affect frags
  20. Sun

    Solved save skulls from removing

    Solved - Skullsystem Skull Dissapears
Back
Top