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

    It's possible to filter support threads using solved/unsolved value?

    Thanks. I see we can filter only by solved prefix? Unsolved is not supported?
  2. hellboy

    It's possible to filter support threads using solved/unsolved value?

    It's possible to filter support threads using solved/unsolved value?
  3. hellboy

    OTS Guide - open source documentation and guide for newcomers

    How to make wiki page pull request? Few days ago I tried to do some custom monster logic purely in lua. After that I want to update wiki with my findings (it's for me in the future). I will do it for: https://github.com/otland/forgottenserver/wiki/Constants And...
  4. hellboy

    [TFS 1.x] List of missing TFS features from Cipbia

    Here one person tried do it. https://otland.net/threads/move-monster-to-spawn-pos-when-no-target.245767/#post-2390758 Here is also function in OTX to walk to position in monster userdata (meta table?). https://github.com/mattyx14/otxserver/commit/9b528f0f2a361b812fd30188871f6648ca064a4f I...
  5. hellboy

    [Discussion] TFS direction (to do list/new milestones)

    @Lessaire @Leo32 Maybe use docker-compose? With preconfigured map, accounts, database for testing purposes?
  6. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    FYI As I said, I try to give back feedback to forgottenserver github :) https://github.com/otland/forgottenserver/issues/2947#issue-602687256 One more time, thanks! :)
  7. hellboy

    [TFS 1.x] List of missing TFS features from Cipbia

    @Evil Puncker Reward system for bosses, this code could be base for implementation? https://otland.net/threads/reward-chest-boss-reward-tfs-1-2.238554/ Just asking.
  8. hellboy

    Need help setting up a server from scratch [Arch Linux | Newbie]

    You should move this thread to Support section in my opinion. Here is good starting point for compiling in Arch (I don't tested it). https://github.com/otland/forgottenserver/wiki/Compiling-on-Arch-Linux Good luck :)
  9. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    One more time I read one of your previous posts. And now compile as it should. Probably last time I missed something (I don't know what to be honest and how). I'll show working bash script in githuba of forgottenserver and ask if it's good enough to make pull request to wiki. 1586809417 Thanks...
  10. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    Hello. I installed Centos 8 minimal on VM. I also installed some packages missing from Your list on my installation. There is still same effect. In first test I ignored packages version and some propably unused packages (samba, http, ftp, etc) How I got missing packages list? cat...
  11. hellboy

    Opening Ports

    In Ubuntu (propably in Debian also) sudo ufw allow 7171 sudo ufw allow 7172 sudo ufw allow 80/tcp In Centos, RHEL firewall-cmd --permanent --zone=public --add-port=7171 firewall-cmd --permanent --zone=public --add-port=7172 firewall-cmd --permanent --zone=public --add-port=80/tcp About...
  12. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    Hello I reinstalled centos 8 on laptop (just in case of messing up something in packages). I used OS ISO: CentOS-8.1.1911-x86_64-dvd1.iso 1. I have same repolist as VM. 2. Script end with same result. I installed additional make package. (I reported first post because I want to update it also...
  13. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    Strange. I'll check this tomorrow. I installed centos 8 on old laptop. What repositories you have enabled in virtual machine? I tommorow reinstall OS and try again.
  14. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    Thanks. Anyway CF problem was in nginx/apache2 configuration or CF configuration? I'm just curious :)
  15. hellboy

    Action TFS 1.X Water, Lava, Swamp fishing + bowlable monsters

    I'm not sure how it should work. Try test if target is a monster before line 55. If target isn't a monster then return false.
  16. hellboy

    Action TFS 1.X Water, Lava, Swamp fishing + bowlable monsters

    Try this (not tested) function addPlayerCatch(playerId, name, amount) db.query("INSERT INTO `fishing_catchs` (`player_id`, `name`, `amount`) VALUES ("..playerId..", \""..name.."\", 1) ON DUPLICATE KEY UPDATE `amount` = `amount` + "..amount..";") end
  17. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    Refresh
  18. hellboy

    Action TFS 1.X Water, Lava, Swamp fishing + bowlable monsters

    Propably it should be inside function addPlayerCatch: db.query("UPDATE `fishing_catchs` SET `amount` = amount + "..amount.." WHERE `player_id` = "..playerId.." and `name` = `"..name.."`;")
  19. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    Hello. Nope it doesn't compile. I'm not sure if I removed correctly param -stdlib=libc++ I commented out lines: 9 and 15, 16, 17, 18. https://github.com/otland/forgottenserver/blob/bcb86eac0655c58b8dc9a35c652f8953a0edd033/cmake/FindCXX11.cmake#L9 I also tried to find lib pthread lib files #...
  20. hellboy

    Compiling Compiling TFS 1.3 on CentOS 8

    👍 When it'll be fixed I should make pull request to forgottenserver wiki here: https://github.com/otland/forgottenserver/wiki/Compiling-on-CentOS It's a little bit outdated now :D Back in 2016 there was Centos 6 and Centos 7 supported 8 Feb 2016...
Back
Top