• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Luan Luciano

    [TFS 1.5 Downgrade Nekiro] Problem in killing summons for task count

    At first I thought it could be an error in the getMaster() function, but I saw that there was no problem with it. After several tests, I realized that, for example, when attacking an Orshaball with summoned demons, and killing them all at the same time, maybe the orsha dies first and the demons...
  2. Luan Luciano

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    Thanks kongra and gesior. It's sad to see that such interesting things are not merged... About OTS Statistics, is it good to use it in a reproduction environment, would it affect the progress of the server in any way?
  3. Luan Luciano

    Problem differentiating ORIGIN between WEAPON and SPELL

    Perfect, thank you!
  4. Luan Luciano

    [LINUX] Installing NGINX on Ubuntu 22.04

    Hello, this tutorial is a part of the main topic: "Full infrastructure tutorial to start a TF 1.x server on Ubuntu 22.04" ... It is part of the 1st installation of the LEMP stack on Ubuntu 22.04: NGINX. STEP 1 - HOW TO INSTALL THE NGINX WEB SERVER To show web pages to your site visitors, we...
  5. Luan Luciano

    [LINUX] Complete Infrastructure Tutorial to Start a TFS 1.x Server on Ubuntu 22.04

    TOPIC UNDER CONSTRUCTION This tutorial will consist of several step-by-step (topics) on how to set up all the infrastructure to bring a TFS 1.x server online on Linux Ubuntu 22.04. STARTING THE LINUX MACHINE It is important that every time you log into your UBUNTU machine you update the...
  6. Luan Luciano

    Problem differentiating ORIGIN between WEAPON and SPELL

    I'm creating a life leech system, but I want it to be done only by attacks with enchanted weapons ... onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) I edited a new wand by the weapons file... but its 'origin' damage is ORIGIN_SPELL, just...
  7. Luan Luciano

    [TFS 1.5 NEKIRO] Problem with "reload scripts"

    The problem also happen in onTimer functions...
  8. Luan Luciano

    [TFS 1.5 NEKIRO] Problem with sudden skill advancement

    There is no script in my service that has any function to increase skills... just the default
  9. Luan Luciano

    [TFS 1.5 NEKIRO] Problem with sudden skill advancement

    Hello friends, I'm using TFS 1.5 nekiro on a server with an average of 80 players online, and I noticed that sometimes some players gain skill suddenly, passing others who are in first. I started to follow the rank of sword, club, ax .. etc, and I realized that sometimes some players, even if...
  10. Luan Luciano

    [TFS 1.5 NEKIRO] Problem with "reload scripts"

    Hello friends, I'm using TFS 1.5 nekiro on an online server and I had problems using the "reload scripts" command, an example of a problem is stopping all globalevents ... Has anyone else gone through this? Is there a solution?
  11. Luan Luciano

    Linux OTS Restarter

    @Gesior.pl ?
  12. Luan Luciano

    Is it ok to use website and server on separate machines?

    Thanks for answering @oen432 The mysql client I use is mariaDB ... I've never heard of HeidiSQL, what's better than the clients we know like mysql and mariaDB?
  13. Luan Luciano

    Is it ok to use website and server on separate machines?

    Thanks for the answer @Stellow I'm learning to use PHP's APC User Cache (APCu) to work with cache on the website. Do you mean open port 3306 on the server machine's firewall only to the website machine's IP? For example .. sudo ufw allow from 123.123.123.123 to any port 3306 I don't know how...
  14. Luan Luciano

    Is it ok to use website and server on separate machines?

    Thanks for the answers ... Let's move forward... WEBSITE: a VPS (ubuntu 22.04) only with HTTPS input and MYSQL output to access the database that is together with the server on another machine. Installed only NGINX and PHP (and its extension for mysql). Using znote AAC exploring cache issue...
  15. Luan Luciano

    Is it ok to use website and server on separate machines?

    Is it ok to use website and server on separate machines? Do you have advantages? Disadvantages?
  16. Luan Luciano

    Linux OTS Restarter

    Hi Gesior My server generated this crashlog: 2022-07-30_15-57_e409ef81.bin How do I interpret it? e409ef81?
  17. Luan Luciano

    Linux OTS Restarter

    Great code, thanks for posting. Just an observation ... Make sure you quote the patterns you provide to find, otherwise the shell may expand them if there are matching files in the current dir. find /some/dir -name *.jpg # bad find /some/dir -name "*.jpg" # good See UsingFind - Greg's Wiki...
  18. Luan Luciano

    Poll: Why you choose Znote AAC over MyAAC?

    my answer is the same as this.
  19. Luan Luciano

    Problem registering more than one EventCallback onTargetCombat

    thanks for the help, everything worked very well.
  20. Luan Luciano

    Problem registering more than one EventCallback onTargetCombat

    Hello, I tried to register more than one onTargetCombat EventCallback in revscript, but it only registers one. I read here on the forum about putting an integer in the register function to declare priorities, but it didn't work either. Example 1: 1 - ec:register(-1) 2 - ec:register(-1) 3 -...
Back
Top