• 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

    OTClient Move my otc to otcv8

    If You manage to do so. Please can You write what parts of gameplay work better in OTCv8? I'm curious.
  2. hellboy

    Mehah Otclient - Account login or password is not correct.

    Maybe try use in host part: www.gunzodus.net I thought it would only accept IPv4 and FQDN. I never saw url in this field
  3. hellboy

    Ile kosztują usługi mapperów?

    Dobrze. Panowie i Panie. Możecie obyć się bez wycieczek osobistych? Podobno większość osób tutaj ma około 30~ lat... A widzę, że spora część nadal zachowuje się tak, jakby ich wiek podzielić przez trzy.
  4. hellboy

    Pomoc z Open Tibia Server

    Właściwie, jeśli chcesz logować się na roota lokalnie, to używanie socketa bez hasłą wystarczy. A do użycia przez stronę, albo serwer TFS lepiej użyć użytkownika, który ma niższe uprawnienia.
  5. hellboy

    OVH UBUNTU 20.04 OPEN PORTS

    To check if You have some process already using that port run: sudo netstat -tulpn And paste output here inside code snippet. Propably You run one server and try to run another on same port. Thats why You see this error.
  6. hellboy

    Linux How to secure a Linux server

    Anyway fail2ban will not block custom ssh port on firewall if You don't modify /etc/fail2ban/jail.d/ssh-full.conf It should work fine: [ssh] enabled = true port = 22,22077 filter = sshd logpath = /var/log/auth.log maxretry = 2 # 30 days bantime = 2592000
  7. hellboy

    Linux How to secure a Linux server

    Hello. I think a litle bit more restricted ufw rules should be better. sudo ufw allow 80/tcp sudo ufw allow 443/tcp sudo ufw allow 22077/tcp sudo ufw allow 7171/tcp sudo ufw allow 7172/tcp sudo ufw limit 2077/tcp comment 'SSH port rate limit' And I don't think that it's a good idea to allow...
  8. hellboy

    Ile kosztują usługi mapperów?

    Zastanawiam się, czy ten temat nie łamie tego punktu w regulaminie: Nie wolno pisać tematów o charakterze zarobkowym czyt. "kupię / sprzedam / zapłacę za pomoc" bądź pochodne. Jeśli chcesz coś sprzedać bądź kupić zapraszam na strony do tego odpowiednie takie jak Allegro.pl czy Ebay.com. Ale...
  9. hellboy

    TFS 1.X+ Get position light level

    Hello it's possible to get light level per selected position on server side? Including: getWorldLight() floor level item light sources (torch, firefield, etc) creatures light source (player with "utevo lux" spell, etc)
  10. hellboy

    TFS 1.X+ Spell Damage Direction Issue

    #EDIT It took me to long to respond :D local combatNorth = Combat() combatNorth:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) combatNorth:setArea(createCombatArea(AREA_BEAM5_NORTH)) local combatEast = Combat() combatEast:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE)...
  11. hellboy

    TFS 1.X+ Spell Damage Direction Issue

    Based on this post You can try: local combatNorth = Combat() combatNorth:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE) combatNorth:setArea(createCombatArea(AREA_BEAM5_NORTH)) local combatEast = Combat() combatEast:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE)...
  12. hellboy

    Compare map files

    For the record. It took me only 6 years to get it :D https://otland.net/threads/compare-map-files.283658/#post-2722506
  13. hellboy

    Compare map files

    For the record (and future me). Use this library for nodejs to change OTBM to JSON. https://github.com/Inconcessus/OTBM2JSON Script looks similar to: const fs = require('fs'); const otbm2json = require("./otbm2json.js"); // read map as JSON data = otbm2json.read("./my_map.otbm"); // save map...
  14. hellboy

    TFS 1.X+ Spell Damage Direction Issue

    Create 4 combat objects (or 2). Use one depending on direction. Not tested. You should also add nil check for creature. As always when You use addEvent. local combatNorth = Combat() combatNorth:setParameter(COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE)...
  15. hellboy

    Errors while battle with monsters

    Try compile OTC with this fix: https://otland.net/threads/solved-otclient-lua-exception-attempt-to-index-local-spell-a-nil-value.284728/#post-2722382
  16. hellboy

    [SOLVED] OTClient Lua Exception: attempt to index local 'spell' (a nil value)

    Add in modules/game_actionbar/game_actionbar.lua after line 930: if not spell then return true end
  17. hellboy

    The Forgotten Server 1.4

    Anyway. I can post it here if You don't mind. It's based on changes in master branch. https://github.com/otland/forgottenserver/commit/eb5f5d68a85eb5f8e5ade23153d699e93d4287a3 Using Dockerfile from master don't work with TFS 1.4.2 well. Master drop boost-filesystem and 1.4.2 still use it...
  18. hellboy

    InsanityOT | Development & Discussion Thread 2023

    Ok. I'll wait for more advertise posts with more detailed descriptions and screens. Or I'll try to play for a moment. OTS will use CIP Tibia, OTClient, custom redone OTClient? I ask as Linux user.
  19. hellboy

    InsanityOT | Development & Discussion Thread 2023

    @DestinationSer Can You describe those gameplay parts? World dungeon system & map dungeon system Necromancer Pet system
  20. hellboy

    The Forgotten Server 1.4

    How I can add TFS 1.4.2 fix? I should make pull request targeting this branch? Fix is simple, change one or two lines in Dockerfile to compile it in new alpine linux (old alpine linux compilation don't work anymore).
Back
Top