• 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. Gesior.pl

    AAC Web connection + tfs

    Assuming that both are servers with public IPs (2 VPSes/2 dedics): 1. On computer with TFS make database (MySQL/MariaDB) listens on all IPs (IP 0.0.0.0 in config) ex. for MariaDB replace bind-address = 127.0.0.1 to bind-address = 0.0.0.0 in /etc/mysql/mariadb.conf.d/50-server.cnf and restart...
  2. Gesior.pl

    Lua delay time before teleport (onKill)

    I lowercased it outside onKill script to execute it once, not every 'onKill': -- script monsterName = monsterName:lower() (...) This will execute every kill: if target:type():name():lower() == monsterName:lower() then My code processes config of script on server startup - when .lua files are...
  3. Gesior.pl

    TFS 1.X+ Achievements

    TFS 0.4 mod to 1.x events translation: local quests = {4631, 4660, 4622, 4605, 4608, 4640, 4682, 4661, 4662, 4663, 4659, 4639, 4620, 4619, 4985, 4986, 300, 301, 302, 303, 305, 306, 9103} -- wszystkie storage questow local addons = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18...
  4. Gesior.pl

    Orts2 github removed

    IDK, but whole account is deleted. Luckily it's git and we can restore all repos, if there is anyone who has them on their PC or 'forked' them on github.
  5. Gesior.pl

    Lua delay time before teleport (onKill)

    onKill event has only 2 parameters: function onKill(creature, target) not 7: function onKill(creature, target, lastHit, player, item, fromPosition, toPosition) so part using fromPosition is wrong, it won't do anything. Anyway, it's not a problem, because this script (onKill) will execute only...
  6. Gesior.pl

    TFS 1.X+ TFS LETTER OTCV8 ERoRR

    Thread author sent me packets.log from bugged client 7.72, it's: ProtocolGame parse message exception (18 bytes, 0 unread, last opcode is 0x00 (0), prev opcode is 0x96 (150), proto: 772): InputMessage eof reached 10 00 0e 00 96 02 00 00 00 b1 0d 00 38 00 00 00 00 00 I noticed that there is...
  7. Gesior.pl

    TFS 1.X+ playerxplayer walkthrough on player.cpp

    You got to remove that part: Player* thisPlayer = const_cast<Player*>(this); if ((OTSYS_TIME() - lastWalkthroughAttempt) > 2000) { thisPlayer->setLastWalkthroughAttempt(OTSYS_TIME()); return false; } if (creature->getPosition() !=...
  8. Gesior.pl

    otcv8 json error 1fc0

    I got 2 ideas: 1. remove ?> at end of PHP files 2. make sure that all PHP files are encoded with Unix/Linux line endings (LF character), not Windows line endings (CRLF - 2 characters) If they do not help, then we got to get result of Virtual box information. Execute: curl -X POST -H...
  9. Gesior.pl

    OTClient ProtocolGame parse

    First error in protocol often breaks client<->server communication and all next errors are just result of first packet that showed some error. Fixing protocol errors may take minutes, days or weeks. You never know, if you are close to solution, until you find it. If you had some working...
  10. Gesior.pl

    Reward chest

    item:getContainer() is "canary" engine function, but it does not exist on TFS. Container(uid) does the same on TFS. In your case replace: local container = bag:getContainer() with: local container = Container(bag.uid) Anyway, this part of code is not needed at all: local container =...
  11. Gesior.pl

    OTClient MSB3073 Error while compiling otclient mehah

    In otclient.txt it says: CMake Error at scripts/cmake/vcpkg_execute_build_process.cmake:134 (message): Command failed: "D:/BiG WoRks/MSVC/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/nmake.exe" /NOLOGO /G /U /F makefile install_dev install_modules INSTALL_PDBS=OFF Working Directory...
  12. Gesior.pl

    OTClient MSB3073 Error while compiling otclient mehah

    vcpkg for OTC should be newest clone of vcpkg git checked out at master branch. VS2022 will pick right commit and install it for OTC into vcpkg_installed subdirectory of OTC. If you followed this step of Mehah VS vcpkg tutorial: Execute the following command in Powershell with Administrator...
  13. Gesior.pl

    OTClient MSB3073 Error while compiling otclient mehah

    It's outdated tutorial. Use official: Compiling on Windows (Visual Studio Solution) (https://github.com/mehah/otclient/wiki/Compiling-on-Windows-(Visual-Studio-Solution)) You don't run vcpkg install boost.... anymore. VS2022 will run it with vcpkg version required by Mehah, when you try to...
  14. Gesior.pl

    Compiling someone will compile the latest tfs for me. under Ubuntu?

    What engine is it? Some TFS 1.2 that cannot detect LuaJIT 2.1 and new Lua? 1736110830 I did some updates on Ubuntu 22, but it looks like newest TFS requires Ubuntu 24.04. You will have to install Ubuntu 24 and: apt install cmake build-essential ninja-build libcrypto++-dev libfmt-dev...
  15. Gesior.pl

    Compiling someone will compile the latest tfs for me. under Ubuntu?

    IDK what TFS it is, but it says you don't have Lua/LuaJIT installed in Linux, so maybe this will fix it (Ubuntu 24.04): apt install liblua5.4-dev libluajit-5.1-dev If it shows some error you can reduce Lua to 5.3: apt install liblua5.3-dev libluajit-5.1-dev or just ignore it: apt install...
  16. Gesior.pl

    Compiling someone will compile the latest tfs for me. under Ubuntu?

    Does it crash when you compile it? Or when you run it? 1. What system? Linux? Windows? 2. Home PC? Server? 3. What CPU/RAM specification?
  17. Gesior.pl

    Compiling TFS 1.5 NEKIRO

    Replace src/lockfree.h with (TFS 1.6 code with added #include <boost/lockfree/stack.hpp>): https://paste.ots.me/564158/text To compile on Ubuntu 24.04, you got to install: apt install cmake build-essential ninja-build libcrypto++-dev libfmt-dev liblua5.4-dev libluajit-5.1-dev libmysqlclient-dev...
  18. Gesior.pl

    SQL Database Player Condition: "BLOB - 43"

    What OTS engine is it? What happens on server save? Database backup? Some other script that may affect conditions column? Are there problems with relogs without server restart?
  19. Gesior.pl

    FAILED: src/CMakeFiles/canary_lib.dir/Unity/unity_4_cxx.cxx.o

    What Linux version? What instruction of compilation do you use? EDIT: I ran this docker on newest canary (docker build --progress=plain -f docker/Dockerfile.x86 . in main Canary folder): https://github.com/opentibiabr/canary/blob/main/docker/Dockerfile.x86 and it compiled server without error...
  20. Gesior.pl

    compiling problem

    What engine are you compiling? It looks like GitHub - Open-Games-Community/Hellgrave-RPG-v6.0: Hellgrave RPG v6.0 (https://github.com/Open-Games-Community/Hellgrave-RPG-v6.0) You won't compile that engine - at least without a lot of work - because author did not prepare any working compilation...
Back
Top