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

    TFS 1.2 - New potions

    items.xml <item id="26029" article="a" name="ultimate mana potion"> <attribute key="weight" value="310" /> <attribute key="description" value="This potion can only be consumed by sorcerer and druid of level 130 or higher." /> </item> <item id="26030" article="a" name="ultimate spirit...
  2. HeberPcL

    Convert to new tfs

    Hey brow, Try: function onLogin(player) local levelStart = 130 if player:getLevel() < levelStart then player:addExperience(getExperienceForLevel(levelStart) - player:getExperience()) end return true end
  3. HeberPcL

    Solved TFS 1.3 max speed 750?

    I think this kind of configuration could be in the config. What do you think, @Mark ?
  4. HeberPcL

    Open 2 Worlds With World Transfer!

    This is true, I believe it is not very difficult to update. But I could not tell you exactly how to do it.
  5. HeberPcL

    Compiling Error Lib

    I use 14.04 and work fine. ;)
  6. HeberPcL

    Compiling Error Lib

    Download: http://nightly.mtasa.com/files/x64/libmysqlclient.so.16 And move to /usr/lib/x86_64-linux-gnu/
  7. HeberPcL

    Compiling Error Lib

    Move libmysqlclient.so.16 to /usr/lib/x86_64-linux-gnu/
  8. HeberPcL

    Compiling Error Lib

    32 or 64 bits ?
  9. HeberPcL

    Compiling Error Lib

    Print output command: ls -l /usr/lib/mysql | grep libmysqlclient.so And try reinstall sudo apt-get remove libmysqlclient-dev mysql-client --purge sudo apt-get install libmysqlclient-dev mysql-client
  10. HeberPcL

    War Server 8.60 Desert War 0.6

    INFECTED!!
  11. HeberPcL

    Open 2 Worlds With World Transfer!

    Use the-forgotten-login-server-10-8-supported for multi-world. And a simple PHP script to make the world change.
  12. HeberPcL

    Compiling Error Lib

    Try: apt-get install libmysqlclient-dev Or: apt-get install mysql-client Or: cd /usr/local/mysql/lib rm -f libmysqlclient.so.16 #in case you've already tried the above linking method wget http://files.directadmin.com/services/debian_6.0/libmysqlclient.so.16 chmod 755...
  13. HeberPcL

    How to install boost_iostreams

    @Mark update Compiling Pages. https://github.com/otland/forgottenserver/wiki/Compiling-on-Ubuntu ;)
  14. HeberPcL

    How to install boost_iostreams

    Hey, OTlanders... In commit #1984 @djarek refactored the loaded map file and now boost_iostreams is required. Below is the compilation error and the lib for installation. Error: -- Found Lua: /usr/lib/x86_64-linux-gnu/liblua5.2.so;/usr/lib/x86_64-linux-gnu/libm.so CMake Error at...
  15. HeberPcL

    Help to fix Referral system 1.1 to 0.4

    I can solve for a few dollars. ;)
  16. HeberPcL

    HELP PLEASE CONVERT TO TFS 1.2

    Post full code using tag /[code/] YOUR Code HERE [/code]
  17. HeberPcL

    Function Performance Optimization

    Not work Return only "rank not found" Working and was very elegant. :D WoW!! Recursion is beautiful! :eek:
  18. HeberPcL

    Function Performance Optimization

    Sorry, the stages need to be flexible.
  19. HeberPcL

    Function Performance Optimization

    But the stages are not always 5 on 5. Edit the config example.
Back
Top