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

    [Debian]Installing library to compile OTClient - failed

    It seems the compilation was finished 100% without any fatal errors, so you could try to run the Otclient binary insdide the build directory, don't forget to put the otclient binary in the correct directory and .dat and .spr files of the client version you want to run. About the warnings, I...
  2. S

    [Debian]Installing library to compile OTClient - failed

    That is what you get when you copy some text and accidentally paste it in the terminal, it will interpret each newline as a shell command, that's why you see the command cannot be found. Nothing happened really, just continue with the make command.
  3. S

    [Debian]Installing library to compile OTClient - failed

    Header files aren't shown in the cmake generator log, the errors in your last compile log shows that it included the header files from the wrong directory, so it is most likely that it inclucded the wrong version. Have you tried to compile again? If so please post the build log.
  4. S

    [Debian]Installing library to compile OTClient - failed

    @binny I read in your build log that it tries to use the openssl header files from /usr/include/openssl, but it should look in /usr/local/ssl/include. So I think you need to copy the header files with this command: cp -Rf /home/binny/usr/include/openssl /usr/local/ssl/include
  5. S

    [Debian]Installing library to compile OTClient - failed

    @binny Try this: cmake -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/usr/local/ssl -DOPENSSL_CRYPTO_LIBRARY=/usr/local/ssl/lib/libcrypto.so.1.0.2 -DOPENSSL_LIBRARY=/usr/local/ssl/lib/libssl.so.1.0.2 -DOPENSSL_INCLUDE_DIR=/usr/local/ssl/include -DUSE_STATIC_LIBS=OFF ..
  6. S

    [Debian]Installing library to compile OTClient - failed

    @binny You need to check if the names of the library files in /usr/local/ssl/lib are the same name you use in the cmake command. The file should be called something like /usr/local/ssl/lib/libssl.so.1.0.1. If the name is different then the one in the cmake command you need to change the command...
  7. S

    [Debian]Installing library to compile OTClient - failed

    You need to add 2 periods on the end of the command like this: cmake -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_CRYPTO_LIBRARY=/usr/local/ssl/lib/libcrypto.so -DOPENSSL_LIBRARIES=/usr/local/ssl/lib/libcrypto.so -DOPENSSL_LIBRARY=/usr/local/ssl/lib/libssl.so -DOPENSSL_INCLUDE_DIR=/usr/local/ssl/include ..
  8. S

    [Debian]Installing library to compile OTClient - failed

    You can also just try: cp /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0* /usr/local/ssl/lib Then try to compile. If it shows errors try to rename the build options so that the names correspond with the file names in /usr/local/ssl/lib e.g. libssl.so and libcrypto.so
  9. S

    [Debian]Installing library to compile OTClient - failed

    you need to copy from /home/binny with: cp usr/lib/x86_64-linux-gnu/libcrypto.so /usr/local/ssl/lib and: cp /usr/lib/x86_64-linux-gnu/libssl.so.1.0* /usr/local/ssl/lib
  10. S

    [Debian]Installing library to compile OTClient - failed

    Can you use this command and copy & paste the content of output.txt here? I want to know the location of libraries files to see if they can be found. find / \( -name '*libssl*' -o -name '*libcrypto*' \) > output.txt
  11. S

    [Debian]Installing library to compile OTClient - failed

    @e.e Only problem is that when you downgrade an important package like libssl is that you will have a security threat for other applications on your system that use OpenSSL, thus you are open to vulnerabilities that are fixed in newer versions of the OpenSSL library. That is why I think the...
  12. S

    [Debian]Installing library to compile OTClient - failed

    @binny that's strange I didn't get that error. You can remove the option from the cmake command. cmake -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_CRYPTO_LIBRARY=/usr/local/ssl/lib/libcrypto.so -DOPENSSL_LIBRARIES=/usr/local/ssl/lib/libcrypto.so -DOPENSSL_LIBRARY=/usr/local/ssl/lib/libssl.so...
  13. S

    [Debian]Installing library to compile OTClient - failed

    You don't have libglew-dev installed apt-get install libglew-dev Also it seems libcrypto was found so you can continue with compiling.
  14. S

    [Debian]Installing library to compile OTClient - failed

    Change to the same directory where you extracted the data.tar.xz from step 5, it contains a directory called usr where libcrypto.so is located. You were in the wrong directory. you must create the build directory in the otclient directory and use the cmake command from...
  15. S

    [Debian]Installing library to compile OTClient - failed

    I compiled OTClient (debug version) on Debian Stretch with these steps below: 1. First make sure you have compiled physfs (to fix an error later when compiling) wget https://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2 tar -xjf physfs-2.0.3.tar.bz2 ` cd physfs-2.0.3/ && mkdir build &&...
  16. S

    [Debian]Installing library to compile OTClient - failed

    Can you try to remove and recreate the build directory and then compile again rm -R /home/binny/Documents/otclient/build & mkdir /home/binny/Documents/otclient/build Also can you run the command below, then upload the info.txt to pastebin.com and post the link here? (uname -a;env;dpkg -l;ldd...
  17. S

    [Debian]Installing library to compile OTClient - failed

    You could try: apt-get install libc++-dev libssl-dev
  18. S

    [Tutorial] Adding more tiles to game window - Updated 7/6/2018

    @Flatlander I tried it on TFS 1.3 and it works great. The only thing missing is this: Replace this: //moving down a floor makes us out of sync //east msg.addByte(0x66); GetMapDescription(oldPos.x + 9, oldPos.y - 7, newPos.z, 1, 14, msg); //south msg.addByte(0x67); GetMapDescription(oldPos.x -...
  19. S

    [Debian]Installing library to compile OTClient - failed

    @binny you didn't install libglew-dev that is why you get the error:
  20. S

    HELP, cant get my server online

    You posted in the wrong forum board, this thread must be moved to the support board: Support A couple of questions: What OT server are you using? (e.g. TFS 0.3, 0.4, 1.0, 1.2) What website application are you using (e.g. Gesior or Znote?) What is your router model? Did you configure router...
Back
Top